diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md index 4fccb7fd460d..9ad47baa79f2 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md @@ -2,6 +2,9 @@ ## 1.0.0-beta.3 (Unreleased) +### New Features +- Added support for AAD authentication in `MetricsAdvisorClient` and `MetricsAdvisorAdministrationClient`. + ### Key Bug Fixes - Fixed a bug in which setting `WebNotificationHook.CertificatePassword` would actually set the property `Username` instead. - Fixed a bug in which an `ArgumentNullException` was thrown when getting a `DataFeed` from the service as a Viewer. diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs index 05b047ddedf2..f75951db6a04 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs @@ -169,6 +169,8 @@ public partial class MetricsAdvisorClient protected MetricsAdvisorClient() { } public MetricsAdvisorClient(System.Uri endpoint, Azure.AI.MetricsAdvisor.MetricsAdvisorKeyCredential credential) { } public MetricsAdvisorClient(System.Uri endpoint, Azure.AI.MetricsAdvisor.MetricsAdvisorKeyCredential credential, Azure.AI.MetricsAdvisor.MetricsAdvisorClientsOptions options) { } + public MetricsAdvisorClient(System.Uri endpoint, Azure.Core.TokenCredential credential) { } + public MetricsAdvisorClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.AI.MetricsAdvisor.MetricsAdvisorClientsOptions options) { } public virtual Azure.Response AddFeedback(Azure.AI.MetricsAdvisor.Models.MetricFeedback feedback, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> AddFeedbackAsync(Azure.AI.MetricsAdvisor.Models.MetricFeedback feedback, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable GetAlerts(string alertConfigurationId, Azure.AI.MetricsAdvisor.GetAlertsOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -225,6 +227,8 @@ public partial class MetricsAdvisorAdministrationClient protected MetricsAdvisorAdministrationClient() { } public MetricsAdvisorAdministrationClient(System.Uri endpoint, Azure.AI.MetricsAdvisor.MetricsAdvisorKeyCredential credential) { } public MetricsAdvisorAdministrationClient(System.Uri endpoint, Azure.AI.MetricsAdvisor.MetricsAdvisorKeyCredential credential, Azure.AI.MetricsAdvisor.MetricsAdvisorClientsOptions options) { } + public MetricsAdvisorAdministrationClient(System.Uri endpoint, Azure.Core.TokenCredential credential) { } + public MetricsAdvisorAdministrationClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.AI.MetricsAdvisor.MetricsAdvisorClientsOptions options) { } public virtual Azure.Response CreateAlertConfiguration(Azure.AI.MetricsAdvisor.Models.AnomalyAlertConfiguration alertConfiguration, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateAlertConfigurationAsync(Azure.AI.MetricsAdvisor.Models.AnomalyAlertConfiguration alertConfiguration, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response CreateDataFeed(Azure.AI.MetricsAdvisor.Models.DataFeed dataFeed, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorAdministrationClient.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorAdministrationClient.cs index 53adde239d37..58826d1569fc 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorAdministrationClient.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorAdministrationClient.cs @@ -53,6 +53,37 @@ public MetricsAdvisorAdministrationClient(Uri endpoint, MetricsAdvisorKeyCredent _serviceRestClient = new AzureCognitiveServiceMetricsAdvisorRestAPIOpenAPIV2RestClient(_clientDiagnostics, pipeline, endpoint.AbsoluteUri); } + /// + /// Initializes a new instance of the class. + /// + /// The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service. + /// A credential used to authenticate to the Azure Service. + /// or is null. + public MetricsAdvisorAdministrationClient(Uri endpoint, TokenCredential credential) + : this(endpoint, credential, null) + { + } + + /// + /// Initializes a new instance of the class. + /// + /// The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service. + /// A credential used to authenticate to the Azure Service. + /// A set of options to apply when configuring the client. + /// or is null. + public MetricsAdvisorAdministrationClient(Uri endpoint, TokenCredential credential, MetricsAdvisorClientsOptions options) + { + Argument.AssertNotNull(endpoint, nameof(endpoint)); + Argument.AssertNotNull(credential, nameof(credential)); + + options ??= new MetricsAdvisorClientsOptions(); + + _clientDiagnostics = new ClientDiagnostics(options); + HttpPipeline pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, Constants.DefaultCognitiveScope)); + + _serviceRestClient = new AzureCognitiveServiceMetricsAdvisorRestAPIOpenAPIV2RestClient(_clientDiagnostics, pipeline, endpoint.AbsoluteUri); + } + /// /// Initializes a new instance of the class. This constructor /// is intended to be used for mocking only. diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorClient.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorClient.cs index 291c76fa9026..1993adbb35aa 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorClient.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorClient.cs @@ -55,6 +55,37 @@ public MetricsAdvisorClient(Uri endpoint, MetricsAdvisorKeyCredential credential _serviceRestClient = new AzureCognitiveServiceMetricsAdvisorRestAPIOpenAPIV2RestClient(_clientDiagnostics, pipeline, endpoint.AbsoluteUri); } + /// + /// Initializes a new instance of the class. + /// + /// The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service. + /// A credential used to authenticate to the Azure Service. + /// or is null. + public MetricsAdvisorClient(Uri endpoint, TokenCredential credential) + : this(endpoint, credential, null) + { + } + + /// + /// Initializes a new instance of the class. + /// + /// The endpoint to use for connecting to the Form Recognizer Azure Cognitive Service. + /// A credential used to authenticate to the Azure Service. + /// A set of options to apply when configuring the client. + /// or is null. + public MetricsAdvisorClient(Uri endpoint, TokenCredential credential, MetricsAdvisorClientsOptions options) + { + Argument.AssertNotNull(endpoint, nameof(endpoint)); + Argument.AssertNotNull(credential, nameof(credential)); + + options ??= new MetricsAdvisorClientsOptions(); + + _clientDiagnostics = new ClientDiagnostics(options); + HttpPipeline pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, Constants.DefaultCognitiveScope)); + + _serviceRestClient = new AzureCognitiveServiceMetricsAdvisorRestAPIOpenAPIV2RestClient(_clientDiagnostics, pipeline, endpoint.AbsoluteUri); + } + /// /// Initializes a new instance of the class. This constructor /// is intended to be used for mocking only. diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyAlertConfigurationLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyAlertConfigurationLiveTests.cs index c9667ef932ce..14148e3fe181 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyAlertConfigurationLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyAlertConfigurationLiveTests.cs @@ -19,9 +19,11 @@ public AnomalyAlertConfigurationLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task CreateAndGetAlertConfigurationWithWholeSeriesScope() + [TestCase(true)] + [TestCase(false)] + public async Task CreateAndGetAlertConfigurationWithWholeSeriesScope(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var scope = MetricAnomalyAlertScope.GetScopeForWholeSeries(); var metricAlertConfig = new MetricAnomalyAlertConfiguration(DetectionConfigurationId, scope); @@ -331,9 +333,11 @@ public async Task CreateAndGetAlertConfigurationWithMultipleMetricConfigurations } [RecordedTest] - public async Task UpdateAlertConfigurationWithMinimumSetupAndGetInstance() + [TestCase(true)] + [TestCase(false)] + public async Task UpdateAlertConfigurationWithMinimumSetupAndGetInstance(bool useTokenCrendential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCrendential); // Configure the Metric Anomaly Alert Configurations to be used. @@ -831,9 +835,11 @@ public async Task UpdateAlertConfigurationWithEveryMemberAndNewInstance() } [RecordedTest] - public async Task GetAlertConfigurations() + [TestCase(true)] + [TestCase(false)] + public async Task GetAlertConfigurations(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var configCount = 0; @@ -881,9 +887,11 @@ public async Task GetAlertConfigurations() } [RecordedTest] - public async Task DeleteAlertConfiguration() + [TestCase(true)] + [TestCase(false)] + public async Task DeleteAlertConfiguration(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string configName = Recording.GenerateAlphaNumericId("config"); var scope = MetricAnomalyAlertScope.GetScopeForWholeSeries(); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyDetectionConfigurationLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyDetectionConfigurationLiveTests.cs index f1d16746d689..e7ea57ab977d 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyDetectionConfigurationLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/AnomalyDetectionConfigurationLiveTests.cs @@ -19,9 +19,11 @@ public AnomalyDetectionConfigurationLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task CreateAndGetDetectionConfigurationWithHardCondition() + [TestCase(true)] + [TestCase(false)] + public async Task CreateAndGetDetectionConfigurationWithHardCondition(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string configName = Recording.GenerateAlphaNumericId("config"); var description = "This hook was created to test the .NET client."; @@ -317,11 +319,13 @@ public async Task CreateAndGetDetectionConfigurationWithSeriesConditions() } [RecordedTest] - public async Task UpdateDetectionConfigurationWithMinimumSetupAndGetInstance() + [TestCase(true)] + [TestCase(false)] + public async Task UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(bool useTokenCredential) { // Set required parameters of the configuration to be created. - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string configName = Recording.GenerateAlphaNumericId("config"); @@ -844,9 +848,11 @@ public async Task UpdateDetectionConfigurationWithEveryMemberAndNewInstance() } [RecordedTest] - public async Task GetDetectonConfigurations() + [TestCase(true)] + [TestCase(false)] + public async Task GetDetectonConfigurations(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var configCount = 0; @@ -883,9 +889,11 @@ public async Task GetDetectonConfigurations() } [RecordedTest] - public async Task DeleteDetectionConfiguration() + [TestCase(true)] + [TestCase(false)] + public async Task DeleteDetectionConfiguration(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string configName = Recording.GenerateAlphaNumericId("config"); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedIngestionLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedIngestionLiveTests.cs index 480a052adf3a..c3d46e4af5dc 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedIngestionLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedIngestionLiveTests.cs @@ -17,9 +17,11 @@ public DataFeedIngestionLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task GetDataFeedIngestionProgress() + [TestCase(true)] + [TestCase(false)] + public async Task GetDataFeedIngestionProgress(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); DataFeedIngestionProgress progress = await adminClient.GetDataFeedIngestionProgressAsync(DataFeedId); @@ -31,9 +33,11 @@ public async Task GetDataFeedIngestionProgress() } [RecordedTest] - public async Task RefreshDataIngestion() + [TestCase(true)] + [TestCase(false)] + public async Task RefreshDataIngestion(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var startTime = DateTimeOffset.Parse("2020-09-01T00:00:00Z"); var endTime = DateTimeOffset.Parse("2020-09-02T00:00:00Z"); @@ -44,9 +48,11 @@ public async Task RefreshDataIngestion() } [RecordedTest] - public async Task GetDataFeedIngestionStatuses() + [TestCase(true)] + [TestCase(false)] + public async Task GetDataFeedIngestionStatuses(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var options = new GetDataFeedIngestionStatusesOptions(SamplingStartTime, SamplingEndTime); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedLiveTests.cs index fa3ff6909f50..83c2e35798da 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/DataFeedLiveTests.cs @@ -43,9 +43,11 @@ public DataFeedLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var dataFeedName = Recording.GenerateAlphaNumericId("dataFeed"); var dataSource = new AzureApplicationInsightsDataFeedSource(DataSourceAppId, DataSourceKey, DataSourceCloud, DataSourceQuery); @@ -675,9 +677,11 @@ public async Task UpdateAzureApplicationInsightsDataFeedWithEveryMemberAndNewIns } [RecordedTest] - public async Task UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance() + [TestCase(true)] + [TestCase(false)] + public async Task UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var dataFeedName = Recording.GenerateAlphaNumericId("dataFeed"); var dataSource = new AzureBlobDataFeedSource(DataSourceConnectionString, DataSourceContainer, DataSourceTemplate); @@ -1953,10 +1957,12 @@ public async Task UpdateSqlServerDataFeedWithEveryMemberAndNewInstance() } [RecordedTest] + [TestCase(true)] + [TestCase(false)] [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/18004")] - public async Task GetDataFeeds() + public async Task GetDataFeeds(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var dataFeedCount = 0; @@ -2044,9 +2050,11 @@ public async Task GetDataFeeds() } [RecordedTest] - public async Task DeleteDataFeed() + [TestCase(true)] + [TestCase(false)] + public async Task DeleteDataFeed(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); var dataFeedName = Recording.GenerateAlphaNumericId("dataFeed"); var dataSource = new SqlServerDataFeedSource("connectionStr", "query"); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/MetricsAdvisorAdministrationClientTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/MetricsAdvisorAdministrationClientTests.cs index e7e7b52cfa4d..ca614536a91f 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/MetricsAdvisorAdministrationClientTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/MetricsAdvisorAdministrationClientTests.cs @@ -3,7 +3,9 @@ using System; using Azure.AI.MetricsAdvisor.Administration; +using Azure.Core; using Azure.Core.TestFramework; +using Azure.Identity; using NUnit.Framework; namespace Azure.AI.MetricsAdvisor.Tests @@ -18,13 +20,18 @@ public MetricsAdvisorAdministrationClientTests(bool isAsync) : base(isAsync) public void ConstructorValidatesArguments() { var endpoint = new Uri("http://notreal.azure.com"); - var credential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var keyCredential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var tokenCredential = new DefaultAzureCredential(); var options = new MetricsAdvisorClientsOptions(); - Assert.That(() => new MetricsAdvisorAdministrationClient(null, credential), Throws.InstanceOf()); - Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, null), Throws.InstanceOf()); - Assert.That(() => new MetricsAdvisorAdministrationClient(null, credential, options), Throws.InstanceOf()); - Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, null, options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(null, keyCredential), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, default(MetricsAdvisorKeyCredential)), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(null, keyCredential, options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, default(MetricsAdvisorKeyCredential), options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(null, tokenCredential), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, default(TokenCredential)), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(null, tokenCredential, options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, default(TokenCredential), options), Throws.InstanceOf()); } [Test] @@ -32,8 +39,10 @@ public void ConstructorAllowsNullOptions() { var endpoint = new Uri("http://notreal.azure.com"); var credential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var tokenCredential = new DefaultAzureCredential(); Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, credential, null), Throws.Nothing); + Assert.That(() => new MetricsAdvisorAdministrationClient(endpoint, tokenCredential, null), Throws.Nothing); } } } diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/NotificationHookLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/NotificationHookLiveTests.cs index c8db2708c5c3..49fe76957ec4 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/NotificationHookLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorAdministrationClient/NotificationHookLiveTests.cs @@ -18,9 +18,11 @@ public NotificationHookLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task CreateAndGetEmailNotificationHookWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task CreateAndGetEmailNotificationHookWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string hookName = Recording.GenerateAlphaNumericId("hook"); var emailsToAlert = new List() { "fake1@email.com", "fake2@email.com" }; @@ -155,11 +157,13 @@ public async Task CreateAndGetWebNotificationHookWithOptionalMembers() } [RecordedTest] - public async Task UpdateEmailNotificationHookWithMinimumSetupAndGetInstance() + [TestCase(true)] + [TestCase(false)] + public async Task UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(bool useTokenCredential) { // Create a hook. - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string hookName = Recording.GenerateAlphaNumericId("hook"); var emailsToAlert = new List() { "fake1@email.com", "fake2@email.com" }; @@ -496,10 +500,12 @@ public async Task UpdateWebNotificationHookWithEveryMemberAndNewInstance() } [RecordedTest] + [TestCase(true)] + [TestCase(false)] [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/18004")] - public async Task GetHooksWithMinimumSetup() + public async Task GetHooksWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string hookName = Recording.GenerateAlphaNumericId("hook"); var hookToCreate = new WebNotificationHook(hookName, "http://contoso.com"); @@ -602,9 +608,11 @@ public async Task GetHooksWithOptionalNameFilter() } [RecordedTest] - public async Task DeleteNotificationHook() + [TestCase(true)] + [TestCase(false)] + public async Task DeleteNotificationHook(bool useTokenCredential) { - MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(); + MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential); string hookName = Recording.GenerateAlphaNumericId("hook"); var hookToCreate = new WebNotificationHook(hookName, "http://contoso.com"); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AlertTriggeringLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AlertTriggeringLiveTests.cs index 887e81f48cdd..582573309e5e 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AlertTriggeringLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AlertTriggeringLiveTests.cs @@ -63,9 +63,38 @@ public async Task GetAlerts(string timeModeName) } [RecordedTest] - public async Task GetAnomalies() + public async Task GetAlertsWithTokenCredential() { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential: true); + + var options = new GetAlertsOptions(SamplingStartTime, SamplingEndTime, AlertQueryTimeMode.AnomalyTime); + + var alertCount = 0; + + await foreach (AnomalyAlert alert in client.GetAlertsAsync(AlertConfigurationId, options)) + { + Assert.That(alert, Is.Not.Null); + Assert.That(alert.Id, Is.Not.Null.And.Not.Empty); + Assert.That(alert.Timestamp, Is.Not.EqualTo(default(DateTimeOffset))); + Assert.That(alert.CreatedTime, Is.Not.EqualTo(default(DateTimeOffset))); + Assert.That(alert.ModifiedTime, Is.Not.EqualTo(default(DateTimeOffset))); + Assert.That(alert.Timestamp, Is.InRange(SamplingStartTime, SamplingEndTime)); + + if (++alertCount >= MaximumSamplesCount) + { + break; + } + } + + Assert.That(alertCount, Is.GreaterThan(0)); + } + + [RecordedTest] + [TestCase(true)] + [TestCase(false)] + public async Task GetAnomalies(bool useTokenCredential) + { + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var anomalyCount = 0; @@ -92,9 +121,11 @@ public async Task GetAnomalies() } [RecordedTest] - public async Task GetIncidents() + [TestCase(true)] + [TestCase(false)] + public async Task GetIncidents(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var incidentCount = 0; diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AnomalyDetectionLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AnomalyDetectionLiveTests.cs index 51a76b4b590b..594b04095622 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AnomalyDetectionLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/AnomalyDetectionLiveTests.cs @@ -18,9 +18,11 @@ public AnomalyDetectionLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task GetAnomaliesWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task GetAnomaliesWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var options = new GetAnomaliesForDetectionConfigurationOptions(SamplingStartTime, SamplingEndTime); @@ -102,9 +104,11 @@ public async Task GetAnomaliesWithOptionalFilter() } [RecordedTest] - public async Task GetIncidentsWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task GetIncidentsWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var options = new GetIncidentsForDetectionConfigurationOptions(SamplingStartTime, SamplingEndTime); @@ -183,9 +187,11 @@ public async Task GetIncidentsWithOptionalDimensionFilter() } [RecordedTest] - public async Task GetIncidentRootCauses() + [TestCase(true)] + [TestCase(false)] + public async Task GetIncidentRootCauses(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var rootCauseCount = 0; @@ -286,11 +292,13 @@ public async Task GetIncidentRootCausesForIncidentFromAlert() /// configuration and that the responses with null and default values can be parsed by the client. /// [RecordedTest] - public async Task GetValuesOfDimensionWithAnomaliesWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task GetValuesOfDimensionWithAnomaliesWithMinimumSetup(bool useTokenCredential) { const string dimensionName = "city"; - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var options = new GetValuesOfDimensionWithAnomaliesOptions(SamplingStartTime, SamplingEndTime); @@ -339,9 +347,11 @@ public async Task GetValuesOfDimensionWithAnomaliesWithOptionalDimensionFilter() } [RecordedTest] - public async Task GetMetricEnrichedSeriesData() + [TestCase(true)] + [TestCase(false)] + public async Task GetMetricEnrichedSeriesData(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var seriesKey1 = new DimensionKey(); seriesKey1.AddDimensionColumn("city", "Delhi"); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricFeedbackLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricFeedbackLiveTests.cs index 1dff53bb37f1..600e95b77b40 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricFeedbackLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricFeedbackLiveTests.cs @@ -21,9 +21,11 @@ public MetricFeedbackLiveTests(bool isAsync) : base(isAsync) private DateTimeOffset CreatedFeedbackEndTime => DateTimeOffset.Parse("2020-09-29T00:00:00Z"); [RecordedTest] - public async Task AddAndGetAnomalyFeedbackWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task AddAndGetAnomalyFeedbackWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var dimensionKey = new DimensionKey(); dimensionKey.AddDimensionColumn("city", "Delhi"); @@ -225,9 +227,11 @@ public async Task AddAndGetPeriodFeedback() } [RecordedTest] - public async Task GetAllFeedbackWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task GetAllFeedbackWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var feedbackCount = 0; diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricsAdvisorClientTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricsAdvisorClientTests.cs index 56de503a7458..8938eb17143d 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricsAdvisorClientTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/MetricsAdvisorClientTests.cs @@ -2,7 +2,9 @@ // Licensed under the MIT License. using System; +using Azure.Core; using Azure.Core.TestFramework; +using Azure.Identity; using NUnit.Framework; namespace Azure.AI.MetricsAdvisor.Tests @@ -17,22 +19,29 @@ public MetricsAdvisorClientTests(bool isAsync) : base(isAsync) public void ConstructorValidatesArguments() { var endpoint = new Uri("http://notreal.azure.com"); - var credential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var keyCredential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var tokenCredential = new DefaultAzureCredential(); var options = new MetricsAdvisorClientsOptions(); - Assert.That(() => new MetricsAdvisorClient(null, credential), Throws.InstanceOf()); - Assert.That(() => new MetricsAdvisorClient(endpoint, null), Throws.InstanceOf()); - Assert.That(() => new MetricsAdvisorClient(null, credential, options), Throws.InstanceOf()); - Assert.That(() => new MetricsAdvisorClient(endpoint, null, options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(null, keyCredential), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(endpoint, default(MetricsAdvisorKeyCredential)), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(null, keyCredential, options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(endpoint, default(MetricsAdvisorKeyCredential), options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(null, tokenCredential), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(endpoint, default(TokenCredential)), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(null, tokenCredential, options), Throws.InstanceOf()); + Assert.That(() => new MetricsAdvisorClient(endpoint, default(TokenCredential), options), Throws.InstanceOf()); } [Test] public void ConstructorAllowsNullOptions() { var endpoint = new Uri("http://notreal.azure.com"); - var credential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var keyCredential = new MetricsAdvisorKeyCredential("fakeSubscriptionKey", "fakeApiKey"); + var tokenCredential = new DefaultAzureCredential(); - Assert.That(() => new MetricsAdvisorClient(endpoint, credential, null), Throws.Nothing); + Assert.That(() => new MetricsAdvisorClient(endpoint, keyCredential, null), Throws.Nothing); + Assert.That(() => new MetricsAdvisorClient(endpoint, tokenCredential, null), Throws.Nothing); } } } diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/TimeSeriesLiveTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/TimeSeriesLiveTests.cs index 1998ac4061f3..4972c1e84201 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/TimeSeriesLiveTests.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorClient/TimeSeriesLiveTests.cs @@ -17,11 +17,13 @@ public TimeSeriesLiveTests(bool isAsync) : base(isAsync) } [RecordedTest] - public async Task GetDimensionValuesWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task GetDimensionValuesWithMinimumSetup(bool useTokenCredential) { const string dimensionName = "city"; - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var valueCount = 0; @@ -68,9 +70,11 @@ public async Task GetDimensionValuesWithOptionalDimensionFilter() } [RecordedTest] - public async Task GetMetricSeriesDefinitionsWithMinimumSetup() + [TestCase(true)] + [TestCase(false)] + public async Task GetMetricSeriesDefinitionsWithMinimumSetup(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var options = new GetMetricSeriesDefinitionsOptions(SamplingStartTime); @@ -132,9 +136,11 @@ public async Task GetMetricSeriesDefinitionsWithOptionalDimensionFilter() } [RecordedTest] - public async Task GetMetricSeriesData() + [TestCase(true)] + [TestCase(false)] + public async Task GetMetricSeriesData(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var seriesKey1 = new DimensionKey(); seriesKey1.AddDimensionColumn("city", "Delhi"); @@ -173,9 +179,11 @@ public async Task GetMetricSeriesData() } [RecordedTest] - public async Task GetMetricEnrichmentStatuses() + [TestCase(true)] + [TestCase(false)] + public async Task GetMetricEnrichmentStatuses(bool useTokenCredential) { - MetricsAdvisorClient client = GetMetricsAdvisorClient(); + MetricsAdvisorClient client = GetMetricsAdvisorClient(useTokenCredential); var options = new GetMetricEnrichmentStatusesOptions(SamplingStartTime, SamplingEndTime); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs index ca4303022fc7..fb08597389af 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs @@ -35,20 +35,28 @@ public MetricsAdvisorLiveTestBase(bool isAsync) : base(isAsync) protected DateTimeOffset SamplingEndTime => DateTimeOffset.Parse("2020-10-31T00:00:00Z"); - public MetricsAdvisorAdministrationClient GetMetricsAdvisorAdministrationClient() + public MetricsAdvisorAdministrationClient GetMetricsAdvisorAdministrationClient(bool useTokenCredential = false) { - return InstrumentClient(new MetricsAdvisorAdministrationClient( - new Uri(TestEnvironment.MetricsAdvisorUri), - new MetricsAdvisorKeyCredential(TestEnvironment.MetricsAdvisorSubscriptionKey, TestEnvironment.MetricsAdvisorApiKey), - InstrumentClientOptions(new MetricsAdvisorClientsOptions()))); + var endpoint = new Uri(TestEnvironment.MetricsAdvisorUri); + var instrumentedOptions = InstrumentClientOptions(new MetricsAdvisorClientsOptions()); + + MetricsAdvisorAdministrationClient client = useTokenCredential + ? new (endpoint, TestEnvironment.Credential, instrumentedOptions) + : new (endpoint, new MetricsAdvisorKeyCredential(TestEnvironment.MetricsAdvisorSubscriptionKey, TestEnvironment.MetricsAdvisorApiKey), instrumentedOptions); + + return InstrumentClient(client); } - public MetricsAdvisorClient GetMetricsAdvisorClient() + public MetricsAdvisorClient GetMetricsAdvisorClient(bool useTokenCredential = false) { - return InstrumentClient(new MetricsAdvisorClient( - new Uri(TestEnvironment.MetricsAdvisorUri), - new MetricsAdvisorKeyCredential(TestEnvironment.MetricsAdvisorSubscriptionKey, TestEnvironment.MetricsAdvisorApiKey), - InstrumentClientOptions(new MetricsAdvisorClientsOptions()))); + var endpoint = new Uri(TestEnvironment.MetricsAdvisorUri); + var instrumentedOptions = InstrumentClientOptions(new MetricsAdvisorClientsOptions()); + + MetricsAdvisorClient client = useTokenCredential + ? new (endpoint, TestEnvironment.Credential, instrumentedOptions) + : new (endpoint, new MetricsAdvisorKeyCredential(TestEnvironment.MetricsAdvisorSubscriptionKey, TestEnvironment.MetricsAdvisorApiKey), instrumentedOptions); + + return InstrumentClient(client); } protected void ValidateSeriesKey(DimensionKey seriesKey) diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAlertsWithTokenCredential.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAlertsWithTokenCredential.json new file mode 100644 index 000000000000..2894ea3abd6b --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAlertsWithTokenCredential.json @@ -0,0 +1,128 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/204a211a-c5f4-45f3-a30e-512fb25d1d2c/alerts/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-efaa5b2eda10bb43a84c5c39dea67166-a6d959d4afd0d042-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a9aa681afac2f09f876e5c78f29a1aee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "timeMode": "AnomalyTime" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1888059f-035c-430f-9c1a-eded2ef4ad4d", + "Content-Length": "2035", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "376", + "x-request-id": "1888059f-035c-430f-9c1a-eded2ef4ad4d" + }, + "ResponseBody": { + "value": [ + { + "alertId": "17576cdcc00", + "timestamp": "2020-10-30T00:00:00Z", + "createdTime": "2020-10-31T00:06:18.722Z", + "modifiedTime": "2020-11-05T21:01:57.545Z" + }, + { + "alertId": "17571a77000", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:10.176Z", + "modifiedTime": "2020-11-04T19:24:59.58Z" + }, + { + "alertId": "1756c811400", + "timestamp": "2020-10-28T00:00:00Z", + "createdTime": "2020-10-29T00:06:17.726Z", + "modifiedTime": "2020-11-03T00:06:11.732Z" + }, + { + "alertId": "175675ab800", + "timestamp": "2020-10-27T00:00:00Z", + "createdTime": "2020-10-28T00:06:18.826Z", + "modifiedTime": "2020-11-02T01:34:57.192Z" + }, + { + "alertId": "17562345c00", + "timestamp": "2020-10-26T00:00:00Z", + "createdTime": "2020-10-27T00:06:10.21Z", + "modifiedTime": "2020-11-01T22:20:53.47Z" + }, + { + "alertId": "1755d0e0000", + "timestamp": "2020-10-25T00:00:00Z", + "createdTime": "2020-10-26T00:06:39.2Z", + "modifiedTime": "2020-10-31T00:05:39.245Z" + }, + { + "alertId": "17557e7a400", + "timestamp": "2020-10-24T00:00:00Z", + "createdTime": "2020-10-25T00:06:28.81Z", + "modifiedTime": "2020-10-30T22:36:37.206Z" + }, + { + "alertId": "17552c14800", + "timestamp": "2020-10-23T00:00:00Z", + "createdTime": "2020-10-24T00:06:18.805Z", + "modifiedTime": "2020-10-29T22:00:31.87Z" + }, + { + "alertId": "1754d9aec00", + "timestamp": "2020-10-22T00:00:00Z", + "createdTime": "2020-10-23T00:06:48.62Z", + "modifiedTime": "2020-10-28T08:06:39.094Z" + }, + { + "alertId": "17548749000", + "timestamp": "2020-10-21T00:00:00Z", + "createdTime": "2020-10-22T00:06:55.47Z", + "modifiedTime": "2020-10-27T08:15:19.313Z" + }, + { + "alertId": "175434e3400", + "timestamp": "2020-10-20T00:00:00Z", + "createdTime": "2020-10-21T15:54:37.687Z", + "modifiedTime": "2020-10-22T00:03:26.275Z" + }, + { + "alertId": "1753e27d800", + "timestamp": "2020-10-19T00:00:00Z", + "createdTime": "2020-10-21T15:54:37.468Z", + "modifiedTime": "2020-10-21T15:54:37.522Z" + }, + { + "alertId": "17539017c00", + "timestamp": "2020-10-18T00:00:00Z", + "createdTime": "2020-10-21T15:54:37.213Z", + "modifiedTime": "2020-10-21T15:54:37.286Z" + }, + { + "alertId": "17533db2000", + "timestamp": "2020-10-17T00:00:00Z", + "createdTime": "2020-10-21T15:54:36.975Z", + "modifiedTime": "2020-10-21T15:54:37.037Z" + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "642968427" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAlertsWithTokenCredentialAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAlertsWithTokenCredentialAsync.json new file mode 100644 index 000000000000..2da6a590b083 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAlertsWithTokenCredentialAsync.json @@ -0,0 +1,128 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/204a211a-c5f4-45f3-a30e-512fb25d1d2c/alerts/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-c83c5f66a3e9504c9127b2e686d0d9b1-e0426f21a5842d40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d0f654526e24bad58ca7024557cde66e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "timeMode": "AnomalyTime" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfcc0569-80d3-4f9e-a2dd-30986f2ffc35", + "Content-Length": "2035", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "347", + "x-request-id": "dfcc0569-80d3-4f9e-a2dd-30986f2ffc35" + }, + "ResponseBody": { + "value": [ + { + "alertId": "17576cdcc00", + "timestamp": "2020-10-30T00:00:00Z", + "createdTime": "2020-10-31T00:06:18.722Z", + "modifiedTime": "2020-11-05T21:01:57.545Z" + }, + { + "alertId": "17571a77000", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:10.176Z", + "modifiedTime": "2020-11-04T19:24:59.58Z" + }, + { + "alertId": "1756c811400", + "timestamp": "2020-10-28T00:00:00Z", + "createdTime": "2020-10-29T00:06:17.726Z", + "modifiedTime": "2020-11-03T00:06:11.732Z" + }, + { + "alertId": "175675ab800", + "timestamp": "2020-10-27T00:00:00Z", + "createdTime": "2020-10-28T00:06:18.826Z", + "modifiedTime": "2020-11-02T01:34:57.192Z" + }, + { + "alertId": "17562345c00", + "timestamp": "2020-10-26T00:00:00Z", + "createdTime": "2020-10-27T00:06:10.21Z", + "modifiedTime": "2020-11-01T22:20:53.47Z" + }, + { + "alertId": "1755d0e0000", + "timestamp": "2020-10-25T00:00:00Z", + "createdTime": "2020-10-26T00:06:39.2Z", + "modifiedTime": "2020-10-31T00:05:39.245Z" + }, + { + "alertId": "17557e7a400", + "timestamp": "2020-10-24T00:00:00Z", + "createdTime": "2020-10-25T00:06:28.81Z", + "modifiedTime": "2020-10-30T22:36:37.206Z" + }, + { + "alertId": "17552c14800", + "timestamp": "2020-10-23T00:00:00Z", + "createdTime": "2020-10-24T00:06:18.805Z", + "modifiedTime": "2020-10-29T22:00:31.87Z" + }, + { + "alertId": "1754d9aec00", + "timestamp": "2020-10-22T00:00:00Z", + "createdTime": "2020-10-23T00:06:48.62Z", + "modifiedTime": "2020-10-28T08:06:39.094Z" + }, + { + "alertId": "17548749000", + "timestamp": "2020-10-21T00:00:00Z", + "createdTime": "2020-10-22T00:06:55.47Z", + "modifiedTime": "2020-10-27T08:15:19.313Z" + }, + { + "alertId": "175434e3400", + "timestamp": "2020-10-20T00:00:00Z", + "createdTime": "2020-10-21T15:54:37.687Z", + "modifiedTime": "2020-10-22T00:03:26.275Z" + }, + { + "alertId": "1753e27d800", + "timestamp": "2020-10-19T00:00:00Z", + "createdTime": "2020-10-21T15:54:37.468Z", + "modifiedTime": "2020-10-21T15:54:37.522Z" + }, + { + "alertId": "17539017c00", + "timestamp": "2020-10-18T00:00:00Z", + "createdTime": "2020-10-21T15:54:37.213Z", + "modifiedTime": "2020-10-21T15:54:37.286Z" + }, + { + "alertId": "17533db2000", + "timestamp": "2020-10-17T00:00:00Z", + "createdTime": "2020-10-21T15:54:36.975Z", + "modifiedTime": "2020-10-21T15:54:37.037Z" + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "975638789" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(False).json similarity index 99% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(False).json index 2c1f312914f3..1032955ee159 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(False).json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2095219417333b43a55174fc24982904-69afacd419575743-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "2564e3df13800604b39338333ef7cc43", + "x-ms-client-request-id": "8fc23c47cb634cd9a8ea1a15d55388b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b0872a0-015d-405e-b034-b36860c93aa6", + "apim-request-id": "f91db8a6-ee8b-47e9-96c4-f2f9c254b87e", "Content-Length": "31448", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:18 GMT", + "Date": "Tue, 19 Jan 2021 17:42:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "536", - "x-request-id": "7b0872a0-015d-405e-b034-b36860c93aa6" + "x-envoy-upstream-service-time": "632", + "x-request-id": "f91db8a6-ee8b-47e9-96c4-f2f9c254b87e" }, "ResponseBody": { "value": [ @@ -1325,6 +1326,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "801925326" + "RandomSeed": "2141814911" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomaliesAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(False)Async.json similarity index 99% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomaliesAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(False)Async.json index 6434b98d8155..e88978cb100b 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomaliesAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(False)Async.json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c63e8bf71612274595731d85fc25358e-8fff93bb68ceeb44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "a7b343558f9f4b8d6733a2bff5751f58", + "x-ms-client-request-id": "66be6f27b4d3929056ed029f912d45e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0bc302f6-3e70-41c4-b1d0-de95e102c802", + "apim-request-id": "45ad6973-2455-4d9b-92f8-97516338b389", "Content-Length": "31448", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:31 GMT", + "Date": "Tue, 19 Jan 2021 17:42:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "537", - "x-request-id": "0bc302f6-3e70-41c4-b1d0-de95e102c802" + "x-envoy-upstream-service-time": "425", + "x-request-id": "45ad6973-2455-4d9b-92f8-97516338b389" }, "ResponseBody": { "value": [ @@ -1325,6 +1326,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "209797939" + "RandomSeed": "1964037247" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(True).json new file mode 100644 index 000000000000..1a35d2c10081 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(True).json @@ -0,0 +1,1328 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/204a211a-c5f4-45f3-a30e-512fb25d1d2c/alerts/17571a77000/anomalies", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-13c8eed7ea8b7e4fa8cbe6dda6f8e564-4e9f589ff4baa64f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "76790397e6013d3b492e3545d660323d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52f87f69-0b07-4df5-a00a-49e91e215ff9", + "Content-Length": "31448", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "611", + "x-request-id": "52f87f69-0b07-4df5-a00a-49e91e215ff9" + }, + "ResponseBody": { + "value": [ + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Paris", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Chennai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Pune", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Paris", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "352625975" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(True)Async.json new file mode 100644 index 000000000000..465c8a168e0e --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetAnomalies(True)Async.json @@ -0,0 +1,1328 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/204a211a-c5f4-45f3-a30e-512fb25d1d2c/alerts/17571a77000/anomalies", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-518d99288de88d4e8eff09e813b84ce8-838e5a97bfdc5d42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3e6751e335274202be30919d39d33d74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8c17e2e-c184-403d-85b4-ec8bae1c7586", + "Content-Length": "31448", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "452", + "x-request-id": "b8c17e2e-c184-403d-85b4-ec8bae1c7586" + }, + "ResponseBody": { + "value": [ + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Paris", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Chennai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mumbai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Pune", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lima", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Santiago", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Paris", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Osaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium", + "anomalyStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "timestamp": "2020-10-29T00:00:00Z", + "createdTime": "2020-10-30T00:06:12.66Z", + "modifiedTime": "2020-10-30T00:06:12.66Z", + "dimension": { + "city": "Miami", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low", + "anomalyStatus": "Active" + } + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "92882299" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidentsAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(False).json similarity index 95% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidentsAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(False).json index 014f5e85880a..3b4b1bd5b893 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidentsAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(False).json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-022cc6af6ca5404eac54f2b1d6d8ea64-19365e4068898549-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "58912a5208e2a629a273b97bd9a0e3d2", + "x-ms-client-request-id": "de043ae6086efcc6c5a88d76b032986e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "325c2ac4-5f0a-4e2e-b2b3-c042bdaffe1b", + "apim-request-id": "e8901517-ab57-4d7e-bd94-b08a074b59b5", "Content-Length": "5816", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:31 GMT", + "Date": "Tue, 19 Jan 2021 17:42:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "331", - "x-request-id": "325c2ac4-5f0a-4e2e-b2b3-c042bdaffe1b" + "x-envoy-upstream-service-time": "493", + "x-request-id": "e8901517-ab57-4d7e-bd94-b08a074b59b5" }, "ResponseBody": { "value": [ @@ -284,6 +285,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1362128421" + "RandomSeed": "1057604801" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(False)Async.json similarity index 95% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(False)Async.json index 412fd4cef3a7..c3724276384e 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(False)Async.json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-471a20ce0a25394ca3a9e989496319cd-bbed4551a1a8e14c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "da0979776cc29760b9492fc55a257069", + "x-ms-client-request-id": "a3e55567032ead2e96e9e43aca4ac158", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "abe0112b-07d6-4bfc-af74-9ef8713951c1", + "apim-request-id": "4044869c-aa06-4d39-a9e5-ff4a81c37610", "Content-Length": "5816", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:24 GMT", + "Date": "Tue, 19 Jan 2021 17:42:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5511", - "x-request-id": "abe0112b-07d6-4bfc-af74-9ef8713951c1" + "x-envoy-upstream-service-time": "412", + "x-request-id": "4044869c-aa06-4d39-a9e5-ff4a81c37610" }, "ResponseBody": { "value": [ @@ -284,6 +285,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "907399181" + "RandomSeed": "760339529" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(True).json new file mode 100644 index 000000000000..b2af4da7fff2 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(True).json @@ -0,0 +1,287 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/204a211a-c5f4-45f3-a30e-512fb25d1d2c/alerts/17571a77000/incidents", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1e79e6ed25003d42b1ce72a9511f370c-e83ec53144627e4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "505c84a86c8acbc843ed9845128bfd8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42c6ee26-e3d0-486f-9d7c-83650892dadb", + "Content-Length": "5816", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "311", + "x-request-id": "42c6ee26-e3d0-486f-9d7c-83650892dadb" + }, + "ResponseBody": { + "value": [ + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "0f099f2089162cab683d305ad1a9cba8-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "2b03e492fd98f311dac5754867352e2f-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "323c79b4e6fc7e6aef0a75852c909fde-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "39545810eabd039e3c5bca795889e4d5-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "596c3ea953875e9e69bfe44b2f9c6d9c-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "5a0692283edccf37ce825b3a8d475f4e-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "740e015e72e8de201191854db904421b-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "c3b1690cc5c7a724cb728eb74c084a4c-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "c87ace3b9f582c6a6142026c80f2de44-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "ca46ba86922052929ece3d4c8794c442-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "dd1566e6ab95777eab6d996389dba73d-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "f0b8fda3844b8d12d646fadbad496347-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "144249535" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(True)Async.json new file mode 100644 index 000000000000..9242a2056f84 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AlertTriggeringLiveTests/GetIncidents(True)Async.json @@ -0,0 +1,287 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/204a211a-c5f4-45f3-a30e-512fb25d1d2c/alerts/17571a77000/incidents", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9a977d0a010bf24fa546aa36a22607c7-5ff7ccbf04bbfb4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7b3af93abf356c6eea5406997d1ebab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b7396f5-2abe-4d2e-8e58-59fd54468e50", + "Content-Length": "5816", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "275", + "x-request-id": "7b7396f5-2abe-4d2e-8e58-59fd54468e50" + }, + "ResponseBody": { + "value": [ + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "0f099f2089162cab683d305ad1a9cba8-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "2b03e492fd98f311dac5754867352e2f-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "323c79b4e6fc7e6aef0a75852c909fde-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "39545810eabd039e3c5bca795889e4d5-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "596c3ea953875e9e69bfe44b2f9c6d9c-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "5a0692283edccf37ce825b3a8d475f4e-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "740e015e72e8de201191854db904421b-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "c3b1690cc5c7a724cb728eb74c084a4c-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "c87ace3b9f582c6a6142026c80f2de44-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "ca46ba86922052929ece3d4c8794c442-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "dd1566e6ab95777eab6d996389dba73d-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + } + }, + "property": { + "incidentStatus": "Resolved" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "incidentId": "f0b8fda3844b8d12d646fadbad496347-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "505115516" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(False).json similarity index 54% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(False).json index 7d16646ec4d8..52ebefd1fd01 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(False).json @@ -8,17 +8,14 @@ "Content-Length": "171", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-88c7f045c9d6bc449e9a987fffd3390e-df383d89dc284a4e-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-147ac23fc1b14e42af82599e7f493bb1-1324955054c4024d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "dd7621356403fa9dd711b61f798bf148", + "x-ms-client-request-id": "d28ee219cc50a62d312372ef51ad5912", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "config2FhEIU5p", + "name": "configBWFDTI5K", "hookIds": [], "metricAlertingConfigurations": [ { @@ -29,47 +26,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "3243c027-2053-41cc-92bd-52d002a4c8d8", + "apim-request-id": "0172d1a6-1174-409a-841c-9d814fdd12c8", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:04 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/86e8d565-9155-421a-a995-15ab28c1ed0a", + "Date": "Tue, 19 Jan 2021 17:57:37 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/7bf7372a-8539-463c-aff5-6c80b26b82c4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "113", - "X-Request-ID": "3243c027-2053-41cc-92bd-52d002a4c8d8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124", + "x-request-id": "0172d1a6-1174-409a-841c-9d814fdd12c8" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/86e8d565-9155-421a-a995-15ab28c1ed0a", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/7bf7372a-8539-463c-aff5-6c80b26b82c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-840b436f2354cd44b5aa1a356ad550e8-3cfda608376fd24c-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ed4d413ea55caf47a705ce21420738e3-070274d3b6d89a4c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "e72af47db80504d2b9bd4e1547e7df87", + "x-ms-client-request-id": "fb4f2be40eb16f54ed2c411bd5c7add5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6704acd9-9786-4d76-9f50-ba7e09c30df2", + "apim-request-id": "22352e42-20b3-4f98-a7b0-f2a43b5edcd0", "Content-Length": "286", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:04 GMT", + "Date": "Tue, 19 Jan 2021 17:57:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85", - "X-Request-ID": "6704acd9-9786-4d76-9f50-ba7e09c30df2" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "129", + "x-request-id": "22352e42-20b3-4f98-a7b0-f2a43b5edcd0" }, "ResponseBody": { - "anomalyAlertingConfigurationId": "86e8d565-9155-421a-a995-15ab28c1ed0a", - "name": "config2FhEIU5p", + "anomalyAlertingConfigurationId": "7bf7372a-8539-463c-aff5-6c80b26b82c4", + "name": "configBWFDTI5K", "description": "", "hookIds": [], "metricAlertingConfigurations": [ @@ -82,30 +76,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/86e8d565-9155-421a-a995-15ab28c1ed0a", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/7bf7372a-8539-463c-aff5-6c80b26b82c4", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8fcea19838ac154ba9a19b2cce30ff15-bb9591182a542b47-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e0d37efca15b7542b6e1f3b6f916f70f-30861a75e87aad48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "827c1473431bf891f3648c9d04ac44d2", + "x-ms-client-request-id": "7c409f3914abdd93f8b5b5692f268212", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "db23b412-35c5-4b26-b23f-86143be7128c", + "apim-request-id": "d36f0456-9d96-4175-b99d-49c1c5f163cf", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:04 GMT", + "Date": "Tue, 19 Jan 2021 17:57:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102", - "X-Request-ID": "db23b412-35c5-4b26-b23f-86143be7128c" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130", + "x-request-id": "d36f0456-9d96-4175-b99d-49c1c5f163cf" }, "ResponseBody": [] } @@ -115,6 +106,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "5187136" + "RandomSeed": "1577557465" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScopeAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(False)Async.json similarity index 54% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScopeAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(False)Async.json index 4c948b2ee4a0..b737b31faa9c 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScopeAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(False)Async.json @@ -8,17 +8,14 @@ "Content-Length": "171", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3cc5641fb720fe4dba3cdfc2fa7c57ea-a2d64e661bdf464f-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-daaa6d3650db0044aa3e0bfa61867491-5418e510bb414d4f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "215e26339d984b79c2ff15fb75ce00e4", + "x-ms-client-request-id": "6c05e891ad99e3f2aaa010c902014a37", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configDEcBGucH", + "name": "configVozWhYXK", "hookIds": [], "metricAlertingConfigurations": [ { @@ -29,47 +26,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "72e0be12-48dc-4bdc-9e12-67bb68cdce8c", + "apim-request-id": "f9d820a9-6ed0-4116-8813-4da9d6a96d05", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:21 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/d4b63d35-1627-4133-95d9-ded9b56fd3a6", + "Date": "Tue, 19 Jan 2021 17:57:47 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/f9f8fe2f-7a3b-4820-88e1-7144c4c07bc7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106", - "X-Request-ID": "72e0be12-48dc-4bdc-9e12-67bb68cdce8c" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116", + "x-request-id": "f9d820a9-6ed0-4116-8813-4da9d6a96d05" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/d4b63d35-1627-4133-95d9-ded9b56fd3a6", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/f9f8fe2f-7a3b-4820-88e1-7144c4c07bc7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e0864b009ae4a0409a9767b8db079b08-e1bc499d4efe6049-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-7aa04d9d9a3b7e4e8aa4581756c8c28a-687bc44766437242-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "974911f9089adc2028b611a20b7fb6f6", + "x-ms-client-request-id": "bd9536f24e125a77b73dd10c13c039ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fefbedc-2821-4430-be3b-2fdab48315e0", + "apim-request-id": "fe8155c4-613f-4d48-9918-b5531204c1fe", "Content-Length": "286", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:21 GMT", + "Date": "Tue, 19 Jan 2021 17:57:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85", - "X-Request-ID": "2fefbedc-2821-4430-be3b-2fdab48315e0" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83", + "x-request-id": "fe8155c4-613f-4d48-9918-b5531204c1fe" }, "ResponseBody": { - "anomalyAlertingConfigurationId": "d4b63d35-1627-4133-95d9-ded9b56fd3a6", - "name": "configDEcBGucH", + "anomalyAlertingConfigurationId": "f9f8fe2f-7a3b-4820-88e1-7144c4c07bc7", + "name": "configVozWhYXK", "description": "", "hookIds": [], "metricAlertingConfigurations": [ @@ -82,30 +76,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/d4b63d35-1627-4133-95d9-ded9b56fd3a6", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/f9f8fe2f-7a3b-4820-88e1-7144c4c07bc7", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-54cb9fc64696b844b1183ab58900f901-4501f2c378b07741-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-5e586e5cc0747d49ad99c4ef382295dd-684498434e895545-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5a25c8c515e3920e089fb438b1969e4c", + "x-ms-client-request-id": "56f986d4c98e36576b28598314f001da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "2e57b4f3-0bc4-476d-8fe4-0ef937329609", + "apim-request-id": "3b113729-c6f6-49bf-bde0-4a7fa55d75b6", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:21 GMT", + "Date": "Tue, 19 Jan 2021 17:57:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112", - "X-Request-ID": "2e57b4f3-0bc4-476d-8fe4-0ef937329609" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "120", + "x-request-id": "3b113729-c6f6-49bf-bde0-4a7fa55d75b6" }, "ResponseBody": [] } @@ -115,6 +106,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "413718544" + "RandomSeed": "580119681" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(True).json new file mode 100644 index 000000000000..1d8da63b0269 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(True).json @@ -0,0 +1,106 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "171", + "Content-Type": "application/json", + "traceparent": "00-e10340d660b8624cb89fd41304307d7d-98a5179e0ad73c48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4b50290ef58247e362f5d598bf15eb99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "config20SWrjvv", + "hookIds": [], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All" + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "2932ecc6-132a-44f9-8b46-8fb78c8c77b5", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:36 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/c938c66e-73f5-4ab9-aa74-2d989f02e762", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "3070", + "x-request-id": "2932ecc6-132a-44f9-8b46-8fb78c8c77b5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/c938c66e-73f5-4ab9-aa74-2d989f02e762", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4a8061edcdfa344d944133c2c74d4100-b2e8dfe6d0c1764d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a4bd9802bdca7679d3645c425ca73982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "28f4153d-e014-4bfe-9cc4-76ba5ffb273d", + "Content-Length": "286", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "279", + "x-request-id": "28f4153d-e014-4bfe-9cc4-76ba5ffb273d" + }, + "ResponseBody": { + "anomalyAlertingConfigurationId": "c938c66e-73f5-4ab9-aa74-2d989f02e762", + "name": "config20SWrjvv", + "description": "", + "hookIds": [], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/c938c66e-73f5-4ab9-aa74-2d989f02e762", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-af3a4042284a384d8476c760e5adc69d-8d1192dd7a7b6b43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c3c20d000600a30b5d95107825917eec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "37834e4b-e3e7-4aae-b911-7f4bceac0794", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "962", + "x-request-id": "37834e4b-e3e7-4aae-b911-7f4bceac0794" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1895759310" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(True)Async.json new file mode 100644 index 000000000000..fb6acb16b0e6 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/CreateAndGetAlertConfigurationWithWholeSeriesScope(True)Async.json @@ -0,0 +1,106 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "171", + "Content-Type": "application/json", + "traceparent": "00-b60e36fcb01f3541886be39c4f3a682c-8e49fdc2de39b94e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "97236ec6aa5d3611e3b5616329e39190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configl70tMng4", + "hookIds": [], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All" + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "7fee5c4b-d630-49cd-b136-e3924f947477", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:47 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/de312017-d565-4be2-aed6-86762d10c65c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60", + "x-request-id": "7fee5c4b-d630-49cd-b136-e3924f947477" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/de312017-d565-4be2-aed6-86762d10c65c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d6d3aadf3e2f924b8c3ba5774fab958f-df774287c0e95b4f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "831de2b6ae445c9e08738dc4245fa266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f6ca1bf-12d9-4fcd-be0b-14c05883d58e", + "Content-Length": "286", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34", + "x-request-id": "7f6ca1bf-12d9-4fcd-be0b-14c05883d58e" + }, + "ResponseBody": { + "anomalyAlertingConfigurationId": "de312017-d565-4be2-aed6-86762d10c65c", + "name": "configl70tMng4", + "description": "", + "hookIds": [], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/de312017-d565-4be2-aed6-86762d10c65c", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7b8292e83530854e9877c8a9421a0db8-68d53ba6b1e4504f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "199190b114dbababf7e72d25978e2e5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "cee3a185-8fc2-4059-9f17-a2c321df3fb4", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46", + "x-request-id": "cee3a185-8fc2-4059-9f17-a2c321df3fb4" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1626976308" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfigurationAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(False).json similarity index 54% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfigurationAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(False).json index 4381f9af8b72..9abcf7a9d706 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfigurationAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(False).json @@ -8,13 +8,10 @@ "Content-Length": "193", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e69ec3f2e6c0e14898b2279e07bf36dc-739dbc9dade4dd49-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f6bc9d3e93fe9a4cbb9e88892433e599-f2081dc5932cff4d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "cca4c13bf0c475a0890f0153980ebb65", + "x-ms-client-request-id": "9ff5d74238cc803d2cce996cd6d34728", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -29,75 +26,69 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "08ee79f1-1be4-4d18-9a38-e571cdb4e064", + "apim-request-id": "03eeac3e-7232-44f1-8fd1-af7bc967c741", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:21 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/e1b44948-ec4c-494f-94b9-6db164acfba6", + "Date": "Tue, 19 Jan 2021 17:57:39 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/f9ca78d2-9cf2-40b5-b1ad-7a1643c45ac6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104", - "X-Request-ID": "08ee79f1-1be4-4d18-9a38-e571cdb4e064" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "120", + "x-request-id": "03eeac3e-7232-44f1-8fd1-af7bc967c741" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/e1b44948-ec4c-494f-94b9-6db164acfba6", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/f9ca78d2-9cf2-40b5-b1ad-7a1643c45ac6", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4a2de853b56a242a25bb2599a123235-dc52736cd6239543-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9a3f8423ca96124fb838baca00a92075-ebab251f40ed9a4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "bd9768e834d9234c2cb6cc19df606c67", + "x-ms-client-request-id": "a1794ec541487dd3e9b4f2a906fb9137", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "afce656f-daf5-4a9e-9a68-e369aa1b02ba", + "apim-request-id": "1fb26676-b05f-400b-b913-5e3fbecf3c2e", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:21 GMT", + "Date": "Tue, 19 Jan 2021 17:57:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98", - "X-Request-ID": "afce656f-daf5-4a9e-9a68-e369aa1b02ba" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "102", + "x-request-id": "1fb26676-b05f-400b-b913-5e3fbecf3c2e" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/e1b44948-ec4c-494f-94b9-6db164acfba6", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/f9ca78d2-9cf2-40b5-b1ad-7a1643c45ac6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48f3a05e234d354a8be0bc994fe37467-4ae40b135464ca42-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-dc7ba5ef683a174b8e534f3e7c25b071-4be74568021a1d46-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "6e8570945bbe1a51ec147c863fd2f06c", + "x-ms-client-request-id": "971711cabfb06649f5258ecdb24f0226", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "5d72320f-6fa9-4844-a8a1-73283c3c9193", + "apim-request-id": "6fb24f37-5fb0-4310-bfde-334c8c9dbaa7", "Content-Length": "123", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:21 GMT", + "Date": "Tue, 19 Jan 2021 17:57:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67", - "X-Request-ID": "5d72320f-6fa9-4844-a8a1-73283c3c9193" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68", + "x-request-id": "6fb24f37-5fb0-4310-bfde-334c8c9dbaa7" }, "ResponseBody": { "code": "Not Found", - "message": "Not found this AnomalyAlertingConfiguration. TraceId: ab42eea3-278e-4253-9928-e535e46ace77" + "message": "Not found this AnomalyAlertingConfiguration. TraceId: df9963ab-f430-415c-9c0f-868c4aa715d7" } } ], @@ -106,6 +97,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1629710057" + "RandomSeed": "1563543712" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(False)Async.json similarity index 54% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(False)Async.json index d222d9973f05..a74939821092 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(False)Async.json @@ -8,13 +8,10 @@ "Content-Length": "193", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e2a72a8bc7cca49bbab4c718f6964d2-d2917bf5fd5bfe46-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-fc632c411f1529458d14a3846f0bf49b-11a6102bca926c44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9dbe014d6650e879b167ce223a0e7ddd", + "x-ms-client-request-id": "f790259472215d0349a3c4dde9b1398a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -29,75 +26,69 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b33868fd-db06-494e-a133-1f03d34edd95", + "apim-request-id": "739e0d11-a8a0-4ba4-a374-50ada2ea643f", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:05 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cd51aa63-7e44-465f-8faa-99a244df6c6c", + "Date": "Tue, 19 Jan 2021 17:57:48 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/d018a7e2-eabd-4514-b5f3-75139fcc131c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110", - "X-Request-ID": "b33868fd-db06-494e-a133-1f03d34edd95" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117", + "x-request-id": "739e0d11-a8a0-4ba4-a374-50ada2ea643f" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cd51aa63-7e44-465f-8faa-99a244df6c6c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/d018a7e2-eabd-4514-b5f3-75139fcc131c", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3dbd1605ef14064c8007b98084198e4e-8c1d8bc3ece6c44f-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-92bd7fbabca75d4c80cbcc9cdd12c5b2-a6abdb9e18922140-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "3b94d31568d7daf8a5bd86f7b87b17a4", + "x-ms-client-request-id": "edf1b65e0edb93db09858949bd83abae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4212c7dd-a283-46d9-8a09-816ecfb6361e", + "apim-request-id": "77756397-e659-4c02-a65b-32285aa41ea5", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:05 GMT", + "Date": "Tue, 19 Jan 2021 17:57:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106", - "X-Request-ID": "4212c7dd-a283-46d9-8a09-816ecfb6361e" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116", + "x-request-id": "77756397-e659-4c02-a65b-32285aa41ea5" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cd51aa63-7e44-465f-8faa-99a244df6c6c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/d018a7e2-eabd-4514-b5f3-75139fcc131c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-42cee41c1a68cd4fa140b579ec4b9fda-171474d41f805b4d-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d01f8e76eaa434459d0263433b9b9659-105580f08bef2c48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "16f8fe04e943f8045dde25b4b0985c10", + "x-ms-client-request-id": "7dfd3bd8b06fe191205121a6f9e6ba93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "831ec250-6ac6-4e1f-87ca-81cf5f8616a5", + "apim-request-id": "b79e9492-3b70-432c-949e-7f360a958bef", "Content-Length": "123", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:05 GMT", + "Date": "Tue, 19 Jan 2021 17:57:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62", - "X-Request-ID": "831ec250-6ac6-4e1f-87ca-81cf5f8616a5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69", + "x-request-id": "b79e9492-3b70-432c-949e-7f360a958bef" }, "ResponseBody": { "code": "Not Found", - "message": "Not found this AnomalyAlertingConfiguration. TraceId: 3be7efba-8b0a-4f74-b140-8b7e50b88c64" + "message": "Not found this AnomalyAlertingConfiguration. TraceId: a6a88b4e-4e9b-4a4a-b50b-596e8edb904b" } } ], @@ -106,6 +97,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2039408270" + "RandomSeed": "1650484151" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(True).json new file mode 100644 index 000000000000..7e344c632eb8 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(True).json @@ -0,0 +1,97 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "193", + "Content-Type": "application/json", + "traceparent": "00-baa5f83afd8bf247bdb6c9a08c2e21cd-19bf2468c9006846-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "49e42a47b986162b5a914d9bb48c2eed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "hookIds": [], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All" + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "1a8f4b97-60d5-4ace-9372-cbdee0620f51", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:39 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/723b5cc5-3916-479a-a78f-8ef5106d57bb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59", + "x-request-id": "1a8f4b97-60d5-4ace-9372-cbdee0620f51" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/723b5cc5-3916-479a-a78f-8ef5106d57bb", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4b14d92bb5ce3a40aee999059b3e7745-76186f2d35c25041-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "db56131897cc92f45e5a634eeb76dcef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "e76daff8-9bf6-4384-b0f4-98c4c87b0194", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50", + "x-request-id": "e76daff8-9bf6-4384-b0f4-98c4c87b0194" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/723b5cc5-3916-479a-a78f-8ef5106d57bb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-dfa56f3054791947b17c591a91bda919-e31c9f9d9fa23841-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "50617b01f9a9f789a15d88603d05ed52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "55e7e0e5-2672-4494-90cb-97be67493bb6", + "Content-Length": "123", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "20", + "x-request-id": "55e7e0e5-2672-4494-90cb-97be67493bb6" + }, + "ResponseBody": { + "code": "Not Found", + "message": "Not found this AnomalyAlertingConfiguration. TraceId: 96dbf70a-6257-480e-af6d-7cb90ed798db" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "2102019244" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(True)Async.json new file mode 100644 index 000000000000..f07cd6bfd9b4 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/DeleteAlertConfiguration(True)Async.json @@ -0,0 +1,97 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "193", + "Content-Type": "application/json", + "traceparent": "00-3769e2a2d2213347b6684d19e82aa48e-d21e7241a4a5f045-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d47b4268b29c67acc618b38070805b95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "hookIds": [], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All" + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "25f87740-7ff1-4191-a831-3c1fc914d415", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:48 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/7bc0bd1a-3304-4185-af47-cb34af0ca2e0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "70", + "x-request-id": "25f87740-7ff1-4191-a831-3c1fc914d415" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/7bc0bd1a-3304-4185-af47-cb34af0ca2e0", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d9275ef50d06a045801550995bb199fa-014fd9d04046f340-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b35807a6fdef510d09f3f393fad723a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "878c9ff6-0451-427d-b04f-73fdeb1a42f9", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47", + "x-request-id": "878c9ff6-0451-427d-b04f-73fdeb1a42f9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/7bc0bd1a-3304-4185-af47-cb34af0ca2e0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c5888140df0d5e49b9b3819845024d4f-db344865e57fde42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fd64eef108603e3c5cfa00f0f562d480", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "500ce29e-7509-4e8d-9556-d5e558ef45e9", + "Content-Length": "123", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21", + "x-request-id": "500ce29e-7509-4e8d-9556-d5e558ef45e9" + }, + "ResponseBody": { + "code": "Not Found", + "message": "Not found this AnomalyAlertingConfiguration. TraceId: 60755953-b36f-4b5d-9fc5-e4c9ce4da525" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1994596996" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(False).json similarity index 97% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(False).json index 3c45e56b6484..c41f1e68d74b 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(False).json @@ -6,28 +6,50 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-be5d2eb727bfb043bd99c0cb671d7a03-e0481e2eef170f4f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5efbea41febe85db1dbb648ffa46e7fe", + "x-ms-client-request-id": "bdebda1a5fa0b0abc26edda2ad026bfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8108e112-2a76-4466-80c7-87e1fc4b52c8", + "apim-request-id": "32bf8142-2411-474f-9e27-e4cf4499f8ad", "Content-Length": "12404", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:05 GMT", + "Date": "Tue, 19 Jan 2021 17:57:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120", - "X-Request-ID": "8108e112-2a76-4466-80c7-87e1fc4b52c8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110", + "x-request-id": "32bf8142-2411-474f-9e27-e4cf4499f8ad" }, "ResponseBody": { "value": [ + { + "anomalyAlertingConfigurationId": "204a211a-c5f4-45f3-a30e-512fb25d1d2c", + "name": "alert-test-setting", + "description": "", + "hookIds": [ + "65fa0aa4-9b71-451c-a04c-cc74cb413ad7" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "High" + }, + "snoozeFilter": { + "autoSnooze": 0, + "snoozeScope": "Series", + "onlyForSuccessive": true + } + } + ] + }, { "anomalyAlertingConfigurationId": "b3dc6db3-617f-4229-b338-ac31baee2445", "name": "test_alert_configuration", @@ -504,30 +526,6 @@ } } ] - }, - { - "anomalyAlertingConfigurationId": "204a211a-c5f4-45f3-a30e-512fb25d1d2c", - "name": "alert-test-setting", - "description": "", - "hookIds": [ - "65fa0aa4-9b71-451c-a04c-cc74cb413ad7" - ], - "metricAlertingConfigurations": [ - { - "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", - "anomalyScopeType": "All", - "negationOperation": false, - "severityFilter": { - "minAlertSeverity": "Low", - "maxAlertSeverity": "High" - }, - "snoozeFilter": { - "autoSnooze": 0, - "snoozeScope": "Series", - "onlyForSuccessive": true - } - } - ] } ] } @@ -538,6 +536,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2011634348" + "RandomSeed": "2050652008" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurationsAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(False)Async.json similarity index 97% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurationsAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(False)Async.json index d54bc9e05f91..bbff9398e23b 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurationsAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(False)Async.json @@ -6,28 +6,50 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d38b45f36f200440b1a1005f09ea7175-45bed94e718d614d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "1c057f8d95449ce29f10223558f72c09", + "x-ms-client-request-id": "4f1ab39bc33aab68c04a04f268bd809b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0bf04f1f-94a3-4ad5-a514-e0ec44e0521d", + "apim-request-id": "6f7703c9-e43b-46c9-83b1-c9da07d6d49a", "Content-Length": "12404", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:22 GMT", + "Date": "Tue, 19 Jan 2021 17:57:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100", - "X-Request-ID": "0bf04f1f-94a3-4ad5-a514-e0ec44e0521d" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "107", + "x-request-id": "6f7703c9-e43b-46c9-83b1-c9da07d6d49a" }, "ResponseBody": { "value": [ + { + "anomalyAlertingConfigurationId": "204a211a-c5f4-45f3-a30e-512fb25d1d2c", + "name": "alert-test-setting", + "description": "", + "hookIds": [ + "65fa0aa4-9b71-451c-a04c-cc74cb413ad7" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "High" + }, + "snoozeFilter": { + "autoSnooze": 0, + "snoozeScope": "Series", + "onlyForSuccessive": true + } + } + ] + }, { "anomalyAlertingConfigurationId": "b3dc6db3-617f-4229-b338-ac31baee2445", "name": "test_alert_configuration", @@ -504,30 +526,6 @@ } } ] - }, - { - "anomalyAlertingConfigurationId": "204a211a-c5f4-45f3-a30e-512fb25d1d2c", - "name": "alert-test-setting", - "description": "", - "hookIds": [ - "65fa0aa4-9b71-451c-a04c-cc74cb413ad7" - ], - "metricAlertingConfigurations": [ - { - "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", - "anomalyScopeType": "All", - "negationOperation": false, - "severityFilter": { - "minAlertSeverity": "Low", - "maxAlertSeverity": "High" - }, - "snoozeFilter": { - "autoSnooze": 0, - "snoozeScope": "Series", - "onlyForSuccessive": true - } - } - ] } ] } @@ -538,6 +536,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2141653951" + "RandomSeed": "2062717368" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(True).json new file mode 100644 index 000000000000..01a65b79ffbf --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(True).json @@ -0,0 +1,538 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/alert/anomaly/configurations", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-70dc9152528e854f98bfcd77c119c857-614a89cfb43a9d4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8479a377f245cacd4deedcdbb2e7d03c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5547d216-16cf-4c59-a0e6-196ee2bff500", + "Content-Length": "12404", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49", + "x-request-id": "5547d216-16cf-4c59-a0e6-196ee2bff500" + }, + "ResponseBody": { + "value": [ + { + "anomalyAlertingConfigurationId": "204a211a-c5f4-45f3-a30e-512fb25d1d2c", + "name": "alert-test-setting", + "description": "", + "hookIds": [ + "65fa0aa4-9b71-451c-a04c-cc74cb413ad7" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "High" + }, + "snoozeFilter": { + "autoSnooze": 0, + "snoozeScope": "Series", + "onlyForSuccessive": true + } + } + ] + }, + { + "anomalyAlertingConfigurationId": "b3dc6db3-617f-4229-b338-ac31baee2445", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "65e1606b-0254-4c18-8f66-877490e74b6a", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "3636f929-f7c5-494e-9eb3-8915d1552317", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "aaeb0a37-7402-4e2e-927a-8698e0ba41c4", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "e2c7ca76-56f6-4c2c-b435-b4bdf9825d2c", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "ccf99404-9296-4007-8611-1c626d9f01d8", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "e016612d-a658-436a-86e4-415b44e1d3aa", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "25ceef54-60cf-4d80-9886-3984f8cec8a2", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "81a9b3db-a888-4455-b1d4-ebf0b0c44b5e", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "0478e1a7-a5c1-4b46-bee9-7f76b09352b2", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "aed0331c-0784-4cd1-b182-7f5f47d02356", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "27cd885d-29e1-42c8-815b-ad2dbc8aa2e1", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "d53fe955-592b-4361-8250-69890aa2db0d", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "e48633d8-a7c2-4273-83c3-d13256fd2c65", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "bc872469-3e01-43ef-9acd-c89020c59537", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "84add77a-24d8-4392-9310-a0ef277cfa30", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "923534ae-5fd8-44d5-8b64-d34fce188f4b", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "f183f2ef-f03c-4f51-9b88-e3091a60f1db", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "18048d3f-693d-423b-82db-a3143377d48e", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "da927a66-4973-41c3-8727-36623e22e4e8", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "ef670bea-6d6a-4977-9d25-ec5eb27bcb04", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "12a22817-8c13-4d59-88a9-12235d3c2bb9", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "26e157f0-7b52-4f0d-a6a8-78e9be343a82", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "902c97ca-d21e-4baa-bb76-188cf90d9ba1", + "name": "test_alert_config_1605052664635", + "description": "Alerting config description", + "hookIds": [ + "dc6acf85-fa8f-4f72-a6fa-1ef6af8071f9" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Medium", + "maxAlertSeverity": "High" + }, + "snoozeFilter": { + "autoSnooze": 0, + "snoozeScope": "Metric", + "onlyForSuccessive": true + } + } + ] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "60009452" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(True)Async.json new file mode 100644 index 000000000000..defdd260c3ad --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/GetAlertConfigurations(True)Async.json @@ -0,0 +1,538 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/alert/anomaly/configurations", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-8721c59b286bc54997d772ec7c3cc02f-3bfc27544243e945-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "592166630a1e99fb55928a9083c6514e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "17eb0d50-3afe-4833-8d45-07256bc04b81", + "Content-Length": "12404", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52", + "x-request-id": "17eb0d50-3afe-4833-8d45-07256bc04b81" + }, + "ResponseBody": { + "value": [ + { + "anomalyAlertingConfigurationId": "204a211a-c5f4-45f3-a30e-512fb25d1d2c", + "name": "alert-test-setting", + "description": "", + "hookIds": [ + "65fa0aa4-9b71-451c-a04c-cc74cb413ad7" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "High" + }, + "snoozeFilter": { + "autoSnooze": 0, + "snoozeScope": "Series", + "onlyForSuccessive": true + } + } + ] + }, + { + "anomalyAlertingConfigurationId": "b3dc6db3-617f-4229-b338-ac31baee2445", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "65e1606b-0254-4c18-8f66-877490e74b6a", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "3636f929-f7c5-494e-9eb3-8915d1552317", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "aaeb0a37-7402-4e2e-927a-8698e0ba41c4", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "e2c7ca76-56f6-4c2c-b435-b4bdf9825d2c", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "ccf99404-9296-4007-8611-1c626d9f01d8", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "e016612d-a658-436a-86e4-415b44e1d3aa", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "25ceef54-60cf-4d80-9886-3984f8cec8a2", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "81a9b3db-a888-4455-b1d4-ebf0b0c44b5e", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "0478e1a7-a5c1-4b46-bee9-7f76b09352b2", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "aed0331c-0784-4cd1-b182-7f5f47d02356", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "27cd885d-29e1-42c8-815b-ad2dbc8aa2e1", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "d53fe955-592b-4361-8250-69890aa2db0d", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "e48633d8-a7c2-4273-83c3-d13256fd2c65", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "bc872469-3e01-43ef-9acd-c89020c59537", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "84add77a-24d8-4392-9310-a0ef277cfa30", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "923534ae-5fd8-44d5-8b64-d34fce188f4b", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "f183f2ef-f03c-4f51-9b88-e3091a60f1db", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "18048d3f-693d-423b-82db-a3143377d48e", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "da927a66-4973-41c3-8727-36623e22e4e8", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "ef670bea-6d6a-4977-9d25-ec5eb27bcb04", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "12a22817-8c13-4d59-88a9-12235d3c2bb9", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "26e157f0-7b52-4f0d-a6a8-78e9be343a82", + "name": "test_alert_configuration", + "description": "testing_alert_configuration_description", + "crossMetricsOperator": "XOR", + "hookIds": [ + "793adcdb-5293-4e4a-a60c-7c32cd5829fc" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false + }, + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyScopeType": "All", + "negationOperation": false + } + ] + }, + { + "anomalyAlertingConfigurationId": "902c97ca-d21e-4baa-bb76-188cf90d9ba1", + "name": "test_alert_config_1605052664635", + "description": "Alerting config description", + "hookIds": [ + "dc6acf85-fa8f-4f72-a6fa-1ef6af8071f9" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Medium", + "maxAlertSeverity": "High" + }, + "snoozeFilter": { + "autoSnooze": 0, + "snoozeScope": "Metric", + "onlyForSuccessive": true + } + } + ] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "2107161784" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(False).json similarity index 62% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(False).json index 82dd743478c9..ec20f3777f40 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(False).json @@ -8,13 +8,10 @@ "Content-Length": "98", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba3800231d14244fb192e834c1d13850-04759a113166c440-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c3566a1db7e20741a81abbb7a3d706fd-f5c59cec04b0ad40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "e3751a58e913cd2c6f76d4dc6cd5c06f", + "x-ms-client-request-id": "0eac34b02a06755ca73d87eef4c377d2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,18 +19,18 @@ "endpoint": "http://contoso.com" }, "hookType": "Webhook", - "hookName": "hook9VQiznII" + "hookName": "hookLf6AQTOw" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "28f4a290-fe0a-49ee-8591-ca2fc88dad70", + "apim-request-id": "482e1545-12e0-44f0-8fca-12410050392a", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:12 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/b0aee2d3-c805-4bd3-a536-b08da845f225", + "Date": "Tue, 19 Jan 2021 17:57:44 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/fc8c18dd-405b-4489-ac33-b10de6820eb7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "879", - "X-Request-ID": "28f4a290-fe0a-49ee-8591-ca2fc88dad70" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1263", + "x-request-id": "482e1545-12e0-44f0-8fca-12410050392a" }, "ResponseBody": [] }, @@ -45,20 +42,17 @@ "Content-Length": "648", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-040ecce201ef134fb1614d53eef35b57-640982542a9ebf40-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-7197ceaff23d6948a9a3addd80ea39f1-3e4410d5b1bef64d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "a614de00fc3af32472f8e1a8dff5db22", + "x-ms-client-request-id": "4ffa4dfd5cbc53506071fb202799671a", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configRLmIGBPo", + "name": "configE2anWXtc", "crossMetricsOperator": "XOR", "hookIds": [ - "b0aee2d3-c805-4bd3-a536-b08da845f225" + "fc8c18dd-405b-4489-ac33-b10de6820eb7" ], "metricAlertingConfigurations": [ { @@ -90,51 +84,48 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "edb8679c-ea2f-457b-a6df-e3d33ace0a20", + "apim-request-id": "dc615048-dae3-4526-a923-1f8170ae0ef7", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:13 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/ca5ab69e-5b65-4bc5-a96f-f1c170c35139", + "Date": "Tue, 19 Jan 2021 17:57:44 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b35b9855-77a7-4050-8cb3-17d46c466c0c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135", - "X-Request-ID": "edb8679c-ea2f-457b-a6df-e3d33ace0a20" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "175", + "x-request-id": "dc615048-dae3-4526-a923-1f8170ae0ef7" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/ca5ab69e-5b65-4bc5-a96f-f1c170c35139", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b35b9855-77a7-4050-8cb3-17d46c466c0c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5345c847997a5a4ca1975e228344a7d1-649b1e8e3c0b6d47-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e3b811dd3850c6419a4147e13e30e88c-d8fa85b18013e243-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "22aaf74dd48c097edf7e2cc9d163fd6b", + "x-ms-client-request-id": "6c028a76d878df88cf3f3ac31bd590bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2be2f3c6-97d8-4815-9e5f-7090330671a8", + "apim-request-id": "4d382c9d-6be9-4f54-b9cd-f8451c78243e", "Content-Length": "767", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:13 GMT", + "Date": "Tue, 19 Jan 2021 17:57:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88", - "X-Request-ID": "2be2f3c6-97d8-4815-9e5f-7090330671a8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116", + "x-request-id": "4d382c9d-6be9-4f54-b9cd-f8451c78243e" }, "ResponseBody": { - "anomalyAlertingConfigurationId": "ca5ab69e-5b65-4bc5-a96f-f1c170c35139", - "name": "configRLmIGBPo", + "anomalyAlertingConfigurationId": "b35b9855-77a7-4050-8cb3-17d46c466c0c", + "name": "configE2anWXtc", "description": "", "crossMetricsOperator": "XOR", "hookIds": [ - "b0aee2d3-c805-4bd3-a536-b08da845f225" + "fc8c18dd-405b-4489-ac33-b10de6820eb7" ], "metricAlertingConfigurations": [ { @@ -167,28 +158,25 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/ca5ab69e-5b65-4bc5-a96f-f1c170c35139", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b35b9855-77a7-4050-8cb3-17d46c466c0c", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "690", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6ec1b3d0e5be8647ac02ee92f095797a-34952c2b348e8543-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1a3e22659c98594aae28ecd2229906b8-5cc3f37cd49d854a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "35e29aba86d4729352e16973f3188ffe", + "x-ms-client-request-id": "b910d84f0d2f4bb8ed338d82c856aae7", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configRLmIGBPo", + "name": "configE2anWXtc", "description": "", "crossMetricsOperator": "OR", "hookIds": [ - "b0aee2d3-c805-4bd3-a536-b08da845f225" + "fc8c18dd-405b-4489-ac33-b10de6820eb7" ], "metricAlertingConfigurations": [ { @@ -221,50 +209,47 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "1ed2517e-9d59-45a9-b224-dbaef8ddd10f", + "apim-request-id": "e7b1c1d5-df8c-45f0-a46d-92a1c524654f", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:13 GMT", + "Date": "Tue, 19 Jan 2021 17:57:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163", - "X-Request-ID": "1ed2517e-9d59-45a9-b224-dbaef8ddd10f" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "189", + "x-request-id": "e7b1c1d5-df8c-45f0-a46d-92a1c524654f" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/ca5ab69e-5b65-4bc5-a96f-f1c170c35139", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b35b9855-77a7-4050-8cb3-17d46c466c0c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ff1b3fdb914e1b4da88f9c3c35860418-0194992830bf9f4e-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-cad0aa11393728468e911ab07f99b392-86ff3567ecb65b49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "99c00e633d422c4e5f0bc6bbd05a220f", + "x-ms-client-request-id": "211cdc4478f1245bc41b807c218c378b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e936b8c3-76d9-4dac-a67f-bc77e500d13c", + "apim-request-id": "233b9646-9f6d-4906-8db3-bbd0ae5a6634", "Content-Length": "766", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:13 GMT", + "Date": "Tue, 19 Jan 2021 17:57:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109", - "X-Request-ID": "e936b8c3-76d9-4dac-a67f-bc77e500d13c" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "102", + "x-request-id": "233b9646-9f6d-4906-8db3-bbd0ae5a6634" }, "ResponseBody": { - "anomalyAlertingConfigurationId": "ca5ab69e-5b65-4bc5-a96f-f1c170c35139", - "name": "configRLmIGBPo", + "anomalyAlertingConfigurationId": "b35b9855-77a7-4050-8cb3-17d46c466c0c", + "name": "configE2anWXtc", "description": "", "crossMetricsOperator": "OR", "hookIds": [ - "b0aee2d3-c805-4bd3-a536-b08da845f225" + "fc8c18dd-405b-4489-ac33-b10de6820eb7" ], "metricAlertingConfigurations": [ { @@ -297,58 +282,52 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/ca5ab69e-5b65-4bc5-a96f-f1c170c35139", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b35b9855-77a7-4050-8cb3-17d46c466c0c", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e22a4eb1f424fe40b740c2df49ab4b0f-3f05cc9f0a070744-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-912fb1b05471b94e8120183bb4a21d61-338564920ffaab4f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "45ee76fba512c64d6337d0aa6a0b15c7", + "x-ms-client-request-id": "4fd13ee1ad8869ead1b77e444a051679", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "7175b75f-bdee-4dbf-af21-8b461ed2826e", + "apim-request-id": "e0eb1fd4-7e29-41fb-8403-70e02aacd57c", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:13 GMT", + "Date": "Tue, 19 Jan 2021 17:57:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111", - "X-Request-ID": "7175b75f-bdee-4dbf-af21-8b461ed2826e" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "153", + "x-request-id": "e0eb1fd4-7e29-41fb-8403-70e02aacd57c" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/b0aee2d3-c805-4bd3-a536-b08da845f225", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/fc8c18dd-405b-4489-ac33-b10de6820eb7", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-15adf1b6b57f3d45a7191257bab7484c-e215aedf28a96e4e-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ae3465f19f33de46a2b4ca7426684530-64f5df07c5d73948-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c2652dee64a27c284cb6d6c9bfd7a2f7", + "x-ms-client-request-id": "3f7e53956fb9d7ca7cecf4148d3c2961", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "06d17044-388e-4ff4-9972-932f0c34e7ed", + "apim-request-id": "6d76981e-2884-4211-b882-cd771518b2b9", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:14 GMT", + "Date": "Tue, 19 Jan 2021 17:57:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166", - "X-Request-ID": "06d17044-388e-4ff4-9972-932f0c34e7ed" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192", + "x-request-id": "6d76981e-2884-4211-b882-cd771518b2b9" }, "ResponseBody": [] } @@ -358,6 +337,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "769449677" + "RandomSeed": "1528425273" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstanceAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(False)Async.json similarity index 62% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstanceAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(False)Async.json index 7dbd5a7be56a..d8a3ca032673 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstanceAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(False)Async.json @@ -8,13 +8,10 @@ "Content-Length": "98", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5db1e909635ce1458247ad678bcb5a65-f2761b4196a61349-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9b87a024d2f72247b1269baebf8834c5-3bd2fbd47140e44d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "d9454b5a3b47828c5b6322c4906d42f5", + "x-ms-client-request-id": "cd4527f2f900ceb648a31ba495547ca8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,18 +19,18 @@ "endpoint": "http://contoso.com" }, "hookType": "Webhook", - "hookName": "hookKW78sbnO" + "hookName": "hookEmq5K89I" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a7da0f37-0055-4a9d-9f81-9ecc413ae5d9", + "apim-request-id": "5d0c6953-48ca-4ff5-b84c-b7e2ce80c21b", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:27 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0a001c01-c1b9-4837-8b40-35cb5283ec3d", + "Date": "Tue, 19 Jan 2021 17:57:54 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/87b53248-e91c-4db9-81bc-42eef9932a3d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "662", - "X-Request-ID": "a7da0f37-0055-4a9d-9f81-9ecc413ae5d9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "959", + "x-request-id": "5d0c6953-48ca-4ff5-b84c-b7e2ce80c21b" }, "ResponseBody": [] }, @@ -45,20 +42,17 @@ "Content-Length": "648", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-199540f3799a4644b7febd3c70156e95-d83f7f760684354b-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f02801db1d76db43b2f152b85141b615-72b06f8cfa82774e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "b6f14dc8b3ea8e8e09cbc05d6d856174", + "x-ms-client-request-id": "7ce455a12c97322346b4eb938e946f1a", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configVZGpcoSR", + "name": "config3H7BxYs7", "crossMetricsOperator": "XOR", "hookIds": [ - "0a001c01-c1b9-4837-8b40-35cb5283ec3d" + "87b53248-e91c-4db9-81bc-42eef9932a3d" ], "metricAlertingConfigurations": [ { @@ -90,51 +84,48 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "62b2932c-dae2-4af9-b919-a060d61a6145", + "apim-request-id": "59510125-bd54-4693-b4cc-ab97f441e8ae", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:27 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cf28141e-f711-4e82-a943-814bb5e6b029", + "Date": "Tue, 19 Jan 2021 17:57:54 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b90698e9-6340-49cd-9a7d-d938d5d240bf", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131", - "X-Request-ID": "62b2932c-dae2-4af9-b919-a060d61a6145" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "184", + "x-request-id": "59510125-bd54-4693-b4cc-ab97f441e8ae" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cf28141e-f711-4e82-a943-814bb5e6b029", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b90698e9-6340-49cd-9a7d-d938d5d240bf", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b9539cc4b24b8a4cb44096a61bc55639-462cc97a9a792b4b-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-fcd3914b6b346346aee2a2465b78d3ae-9744e95422659348-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "dc685e48f73da10e0b49ff03e461b73e", + "x-ms-client-request-id": "2ccfdcd193e5e24edc945874c974d154", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27e079b1-84cc-4c39-82cf-b63d81286975", + "apim-request-id": "5cc84231-8e99-4342-b076-5bea77f9f24d", "Content-Length": "767", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:27 GMT", + "Date": "Tue, 19 Jan 2021 17:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103", - "X-Request-ID": "27e079b1-84cc-4c39-82cf-b63d81286975" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "87", + "x-request-id": "5cc84231-8e99-4342-b076-5bea77f9f24d" }, "ResponseBody": { - "anomalyAlertingConfigurationId": "cf28141e-f711-4e82-a943-814bb5e6b029", - "name": "configVZGpcoSR", + "anomalyAlertingConfigurationId": "b90698e9-6340-49cd-9a7d-d938d5d240bf", + "name": "config3H7BxYs7", "description": "", "crossMetricsOperator": "XOR", "hookIds": [ - "0a001c01-c1b9-4837-8b40-35cb5283ec3d" + "87b53248-e91c-4db9-81bc-42eef9932a3d" ], "metricAlertingConfigurations": [ { @@ -167,28 +158,25 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cf28141e-f711-4e82-a943-814bb5e6b029", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b90698e9-6340-49cd-9a7d-d938d5d240bf", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "690", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3429422acc6e0f4caa0177d462e63381-fa5404c2f3793b49-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-167dab564bad35428d0d83775debb907-8131219d41834f4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "fa117128d64aa897d593bbc5ade5874f", + "x-ms-client-request-id": "aa2bcddf3a151b377fe95ee168e9192c", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configVZGpcoSR", + "name": "config3H7BxYs7", "description": "", "crossMetricsOperator": "OR", "hookIds": [ - "0a001c01-c1b9-4837-8b40-35cb5283ec3d" + "87b53248-e91c-4db9-81bc-42eef9932a3d" ], "metricAlertingConfigurations": [ { @@ -221,50 +209,47 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "1ff68268-30e3-4da7-af33-971cfd4647b7", + "apim-request-id": "01aa2b6b-2391-4bff-bad5-5400c6a754b0", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:27 GMT", + "Date": "Tue, 19 Jan 2021 17:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131", - "X-Request-ID": "1ff68268-30e3-4da7-af33-971cfd4647b7" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142", + "x-request-id": "01aa2b6b-2391-4bff-bad5-5400c6a754b0" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cf28141e-f711-4e82-a943-814bb5e6b029", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b90698e9-6340-49cd-9a7d-d938d5d240bf", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bdd14a7bcb520e4c9330ce92762910ce-b4aad98178d4c04c-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-19b3abcf6fa66f4495eb8d0d6ba65164-829e31c666df274f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "2225144645b3d0973e50aaa1b38baaa7", + "x-ms-client-request-id": "e7903e7d1bcd0d9207029f02d4af69d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5be2cca-bc16-48bb-b1eb-c57d18bb7dfc", + "apim-request-id": "2bd7c725-ae3c-4839-a119-4fd67a1f29dd", "Content-Length": "766", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 22 Dec 2020 02:28:27 GMT", + "Date": "Tue, 19 Jan 2021 17:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109", - "X-Request-ID": "f5be2cca-bc16-48bb-b1eb-c57d18bb7dfc" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124", + "x-request-id": "2bd7c725-ae3c-4839-a119-4fd67a1f29dd" }, "ResponseBody": { - "anomalyAlertingConfigurationId": "cf28141e-f711-4e82-a943-814bb5e6b029", - "name": "configVZGpcoSR", + "anomalyAlertingConfigurationId": "b90698e9-6340-49cd-9a7d-d938d5d240bf", + "name": "config3H7BxYs7", "description": "", "crossMetricsOperator": "OR", "hookIds": [ - "0a001c01-c1b9-4837-8b40-35cb5283ec3d" + "87b53248-e91c-4db9-81bc-42eef9932a3d" ], "metricAlertingConfigurations": [ { @@ -297,58 +282,52 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/cf28141e-f711-4e82-a943-814bb5e6b029", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/b90698e9-6340-49cd-9a7d-d938d5d240bf", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2979f43f34ab846a011c4a2a5b1b7a5-014974d87b42dd49-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bddac97b3d6c7a4fb5ed57d580b831d8-cf04293b6891f944-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "fc3481136773722ac7bf07a93c49f326", + "x-ms-client-request-id": "c1b396e2c5689604a4b3acfb356d79f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "60c22b6e-1794-4597-a42f-f14d5b661e34", + "apim-request-id": "8d0904d6-1319-46e4-b825-8fe1a4bc479e", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:27 GMT", + "Date": "Tue, 19 Jan 2021 17:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136", - "X-Request-ID": "60c22b6e-1794-4597-a42f-f14d5b661e34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133", + "x-request-id": "8d0904d6-1319-46e4-b825-8fe1a4bc479e" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0a001c01-c1b9-4837-8b40-35cb5283ec3d", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/87b53248-e91c-4db9-81bc-42eef9932a3d", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86059c6deeae354d963b03dc057e10da-f23c51969514dc4b-00", - "User-Agent": [ - "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201221.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b240e743034c2644907115849f16c48d-70a2c36463fa374f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "d0bdb0c1943ce38bd940bbf92bf5f449", + "x-ms-client-request-id": "8af62b7be9e4c4873b1ea3139b3447d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "e409fa9e-9d67-4f02-95e4-43611d0ceb5b", + "apim-request-id": "1694aba9-ce12-4eb5-841b-0379c8e8bc73", "Content-Length": "0", - "Date": "Tue, 22 Dec 2020 02:28:28 GMT", + "Date": "Tue, 19 Jan 2021 17:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "179", - "X-Request-ID": "e409fa9e-9d67-4f02-95e4-43611d0ceb5b" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "236", + "x-request-id": "1694aba9-ce12-4eb5-841b-0379c8e8bc73" }, "ResponseBody": [] } @@ -358,6 +337,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1311815241" + "RandomSeed": "118922385" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(True).json new file mode 100644 index 000000000000..b0c00720cc10 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(True).json @@ -0,0 +1,333 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "98", + "Content-Type": "application/json", + "traceparent": "00-4dd3a87538390d4fa93512b1623b817d-c42a565fe1772d45-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3961049ce589e693e0c78480b2e3f8fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "endpoint": "http://contoso.com" + }, + "hookType": "Webhook", + "hookName": "hookNOAhi9yH" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "f0adeb90-deff-4eaf-9787-7be24b7c8e1a", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:42 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ff3d00d3-7038-446b-b39d-f05eb1587d31", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "952", + "x-request-id": "f0adeb90-deff-4eaf-9787-7be24b7c8e1a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "648", + "Content-Type": "application/json", + "traceparent": "00-c9bd6fbaf06da84d818314fc3ee0bb47-8c2e0190ba28b341-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "92ab745a57e45b487039d0e9be4d9218", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configrfjAAr3b", + "crossMetricsOperator": "XOR", + "hookIds": [ + "ff3d00d3-7038-446b-b39d-f05eb1587d31" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10, + "upper": 20, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "e2d42817-e1c0-441e-af8d-56fb85bf9a46", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:42 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/1182562b-b950-4948-b44e-909c6778f016", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79", + "x-request-id": "e2d42817-e1c0-441e-af8d-56fb85bf9a46" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/1182562b-b950-4948-b44e-909c6778f016", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-6aee7e3cc9837f4a858152b7bb1cb7b5-55267e0cbb16a848-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7a7b2464a9c47851cfb384ee0bdfc7c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc96530a-a8b9-4d48-8067-e13ab4168e53", + "Content-Length": "767", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37", + "x-request-id": "dc96530a-a8b9-4d48-8067-e13ab4168e53" + }, + "ResponseBody": { + "anomalyAlertingConfigurationId": "1182562b-b950-4948-b44e-909c6778f016", + "name": "configrfjAAr3b", + "description": "", + "crossMetricsOperator": "XOR", + "hookIds": [ + "ff3d00d3-7038-446b-b39d-f05eb1587d31" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10.0, + "upper": 20.0, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/1182562b-b950-4948-b44e-909c6778f016", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "690", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-ca0ce5742c2f6c4c95b93bed0f4febca-d3a3b2b9a8e6c94a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "14de7dc2003a89017e290f78130e3e64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configrfjAAr3b", + "description": "", + "crossMetricsOperator": "OR", + "hookIds": [ + "ff3d00d3-7038-446b-b39d-f05eb1587d31" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10, + "upper": 20, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "de627157-fbc1-407a-801c-52ea99eeaac7", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "100", + "x-request-id": "de627157-fbc1-407a-801c-52ea99eeaac7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/1182562b-b950-4948-b44e-909c6778f016", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-0be3ffb17f733747b4bc5c0bcb2385b2-d11ae5c2ab454a4a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2b560c54c75fb11f2332c231d25a4f90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "860ca4cd-5cdb-4304-92a3-728979d36da5", + "Content-Length": "766", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43", + "x-request-id": "860ca4cd-5cdb-4304-92a3-728979d36da5" + }, + "ResponseBody": { + "anomalyAlertingConfigurationId": "1182562b-b950-4948-b44e-909c6778f016", + "name": "configrfjAAr3b", + "description": "", + "crossMetricsOperator": "OR", + "hookIds": [ + "ff3d00d3-7038-446b-b39d-f05eb1587d31" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10.0, + "upper": 20.0, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/1182562b-b950-4948-b44e-909c6778f016", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a3bf19b179369342937e93b341a8d82e-bf0ab4ad490a5741-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "41270e727d6e63de22f1fb9a99d865c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "42474adc-c3cf-415d-bcde-4cddf7f54297", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75", + "x-request-id": "42474adc-c3cf-415d-bcde-4cddf7f54297" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ff3d00d3-7038-446b-b39d-f05eb1587d31", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7a80bb6ba2a71a4a8a2d01a3b0e02162-b8093de58657374e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ff9920749b89fb625e2df0073ed0b724", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "ca796422-889e-492b-94ab-913d7e2865e2", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133", + "x-request-id": "ca796422-889e-492b-94ab-913d7e2865e2" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1743892646" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(True)Async.json new file mode 100644 index 000000000000..e46d0d4cc46a --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyAlertConfigurationLiveTests/UpdateAlertConfigurationWithMinimumSetupAndGetInstance(True)Async.json @@ -0,0 +1,333 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "98", + "Content-Type": "application/json", + "traceparent": "00-cc225638bf50ea4996736be556eacceb-a2abf2beb7994f47-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "937228d49065cb80c284eaaaa58ee754", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "endpoint": "http://contoso.com" + }, + "hookType": "Webhook", + "hookName": "hookWVuKaZlQ" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "c8defeaa-2bfe-4fe4-b642-e6081c91add7", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/91152540-4485-4680-841a-41ca1ccfa5b2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1064", + "x-request-id": "c8defeaa-2bfe-4fe4-b642-e6081c91add7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "648", + "Content-Type": "application/json", + "traceparent": "00-1ba7df713e6c2d4fb2777b5a24c9fcef-03ee7d62b81d5e47-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2d11a148ad653a937cb417cca872d9f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configzhU1w3f5", + "crossMetricsOperator": "XOR", + "hookIds": [ + "91152540-4485-4680-841a-41ca1ccfa5b2" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10, + "upper": 20, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "d5d5a032-99fc-4be3-9b2e-14eb0c70da12", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96", + "x-request-id": "d5d5a032-99fc-4be3-9b2e-14eb0c70da12" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-203e20e159bd754f936d473cdf0dd46c-0168b8364a44374b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d755fd5047c6f5cc0926f940f821615f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47c5847d-dd0c-464e-a6be-38d1e188bd3b", + "Content-Length": "767", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33", + "x-request-id": "47c5847d-dd0c-464e-a6be-38d1e188bd3b" + }, + "ResponseBody": { + "anomalyAlertingConfigurationId": "0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "name": "configzhU1w3f5", + "description": "", + "crossMetricsOperator": "XOR", + "hookIds": [ + "91152540-4485-4680-841a-41ca1ccfa5b2" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10.0, + "upper": 20.0, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "690", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-ac48e49b006e97488462dbef1c04c3b3-9a07069ede5b7d42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c34a10a4527f1565f0af2df1771babe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configzhU1w3f5", + "description": "", + "crossMetricsOperator": "OR", + "hookIds": [ + "91152540-4485-4680-841a-41ca1ccfa5b2" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10, + "upper": 20, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "ac5a6c18-b064-48b8-b1ac-0fdefd419944", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79", + "x-request-id": "ac5a6c18-b064-48b8-b1ac-0fdefd419944" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-47883f86f55c6d47bdc9295dd21caba5-47005b2b1fcad943-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3d27a06cac1f019cd51b243fb453425a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f082e4f-9784-4717-a35c-f7628ec6aed9", + "Content-Length": "766", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33", + "x-request-id": "8f082e4f-9784-4717-a35c-f7628ec6aed9" + }, + "ResponseBody": { + "anomalyAlertingConfigurationId": "0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "name": "configzhU1w3f5", + "description": "", + "crossMetricsOperator": "OR", + "hookIds": [ + "91152540-4485-4680-841a-41ca1ccfa5b2" + ], + "metricAlertingConfigurations": [ + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": false, + "severityFilter": { + "minAlertSeverity": "Low", + "maxAlertSeverity": "Medium" + }, + "snoozeFilter": { + "autoSnooze": 12, + "snoozeScope": "Series", + "onlyForSuccessive": true + }, + "valueFilter": { + "lower": 10.0, + "upper": 20.0, + "direction": "Both", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "triggerForMissing": true + } + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyScopeType": "All", + "negationOperation": true + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/alert/anomaly/configurations/0c14080e-6e6e-4d13-b360-1e4b2b1abb0d", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-cbe6d5e3ac7cb9478ebbe3596ebafb9d-c6f1e10fc699944f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9828b8521627fd729740e71619da7eee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "a8940d58-4038-4081-b0a1-4ccaf3334a1a", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75", + "x-request-id": "a8940d58-4038-4081-b0a1-4ccaf3334a1a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/91152540-4485-4680-841a-41ca1ccfa5b2", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c4aadcbab69c9c418d5d40aeed896da4-86f9c8334fa67a4d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "57d4157a23f9f73f7349ee632e26619d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "25ef1129-9380-4ce4-8677-0baa0de6bf34", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145", + "x-request-id": "25ef1129-9380-4ce4-8677-0baa0de6bf34" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "446786433" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(False).json similarity index 69% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(False).json index a74e5399c770..67cc3ce5f7da 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(False).json @@ -8,14 +8,14 @@ "Content-Length": "291", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e506510678c40b429f13bb7e9e0fc48b-f2e4e756ea685e43-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-351553c44e552b44a371333ecaa87e7a-e185bb88a50a1742-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "259628b1a66258d47b5560a9732b8b7a", + "x-ms-client-request-id": "2ca5d422939acf6a093597a0de17ece3", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configmwcLF5dx", + "name": "configlTkH8fQx", "description": "This hook was created to test the .NET client.", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -31,44 +31,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "6ac3e4ba-5fb0-43ce-8fa0-f8e980c6d1e6", + "apim-request-id": "af7aefa6-e925-42dc-90df-e31b3c07753f", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:42 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/e3ecf8bf-795b-4923-b507-f55408189077", + "Date": "Tue, 19 Jan 2021 17:57:57 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/495df3fc-b451-4ba3-940f-0e501b9bb366", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "231", - "x-request-id": "6ac3e4ba-5fb0-43ce-8fa0-f8e980c6d1e6" + "x-envoy-upstream-service-time": "93", + "x-request-id": "af7aefa6-e925-42dc-90df-e31b3c07753f" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/e3ecf8bf-795b-4923-b507-f55408189077", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/495df3fc-b451-4ba3-940f-0e501b9bb366", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-44adef4138dd6c4f8b1e561a8933cf6c-5fa703dfc78a2e4b-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ec7626d6efd98e4d9fafef55233f798d-dbf87129afdf024d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "bd019ec16706955fe9ad80c00ef88c4c", + "x-ms-client-request-id": "f7a83aefa5903813c8031c7b55256c9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f1fac9c-a838-48f8-8318-35ed56bdc6fb", + "apim-request-id": "4218cf3c-b558-4ef6-bd76-feb9ce23d5fd", "Content-Length": "444", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:42 GMT", + "Date": "Tue, 19 Jan 2021 17:57:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87", - "x-request-id": "9f1fac9c-a838-48f8-8318-35ed56bdc6fb" + "x-envoy-upstream-service-time": "93", + "x-request-id": "4218cf3c-b558-4ef6-bd76-feb9ce23d5fd" }, "ResponseBody": { - "anomalyDetectionConfigurationId": "e3ecf8bf-795b-4923-b507-f55408189077", - "name": "configmwcLF5dx", + "anomalyDetectionConfigurationId": "495df3fc-b451-4ba3-940f-0e501b9bb366", + "name": "configlTkH8fQx", "description": "This hook was created to test the .NET client.", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -86,27 +86,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/e3ecf8bf-795b-4923-b507-f55408189077", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/495df3fc-b451-4ba3-940f-0e501b9bb366", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b8f65371b1509f4082e92da8d7c5238c-f061e3855d311b4c-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-63c680b0e2ec134c8adcdd19dfb9f5ce-6d17406f6e0ebc48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "73cc47db0b40235aa7f686c7027609af", + "x-ms-client-request-id": "e0b8500992af4c65d7bebcbcc27f79f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "831e9586-f50e-4701-a01b-95c07c9334a3", + "apim-request-id": "0dff058d-2fb2-4e8a-80ef-7ba9dfedfe68", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:42 GMT", + "Date": "Tue, 19 Jan 2021 17:57:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "98", - "x-request-id": "831e9586-f50e-4701-a01b-95c07c9334a3" + "x-request-id": "0dff058d-2fb2-4e8a-80ef-7ba9dfedfe68" }, "ResponseBody": [] } @@ -116,6 +116,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "378335185" + "RandomSeed": "210382487" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardConditionAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(False)Async.json similarity index 68% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardConditionAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(False)Async.json index 7b8c65f298bc..f80854c3ed3d 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardConditionAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(False)Async.json @@ -8,14 +8,14 @@ "Content-Length": "291", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2b350a6a52ad14b80155c331a973a60-87780274cea13049-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-79a99450583fd343b3d4c713471bc7ee-507818b85433d54f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c7b3143999b0a49768ffddd9a4f4bdad", + "x-ms-client-request-id": "b4e98f7b817bc1d3a392282cab35f636", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configfmS8gxih", + "name": "configHYYpIhhd", "description": "This hook was created to test the .NET client.", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -31,44 +31,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "53f79afa-445e-4ca2-9a9e-232b3f694b3f", + "apim-request-id": "eabf63ad-f5aa-46de-88cd-d794c8759592", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:48 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/76b3ecdb-4b14-42ec-87bf-d6178d0e896c", + "Date": "Tue, 19 Jan 2021 17:58:04 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/5bd42870-97b9-4178-9143-fb76d2f58ff4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102", - "x-request-id": "53f79afa-445e-4ca2-9a9e-232b3f694b3f" + "x-envoy-upstream-service-time": "100", + "x-request-id": "eabf63ad-f5aa-46de-88cd-d794c8759592" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/76b3ecdb-4b14-42ec-87bf-d6178d0e896c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/5bd42870-97b9-4178-9143-fb76d2f58ff4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-283d8dc5fb159c448256d75f1377cd51-ddb946cd9758dd4e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0793933f455dcf4286e323df92ea4de0-9df20f578183eb40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "d88df8042b85884a7d128c8018d6e834", + "x-ms-client-request-id": "b8f0908ea2dd6c264f7c649735da41de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5e93c01-eda3-4bc7-92df-e77e137447eb", + "apim-request-id": "456c63f4-4c37-4c0d-a751-acf40937c823", "Content-Length": "444", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:48 GMT", + "Date": "Tue, 19 Jan 2021 17:58:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "76", - "x-request-id": "f5e93c01-eda3-4bc7-92df-e77e137447eb" + "x-envoy-upstream-service-time": "106", + "x-request-id": "456c63f4-4c37-4c0d-a751-acf40937c823" }, "ResponseBody": { - "anomalyDetectionConfigurationId": "76b3ecdb-4b14-42ec-87bf-d6178d0e896c", - "name": "configfmS8gxih", + "anomalyDetectionConfigurationId": "5bd42870-97b9-4178-9143-fb76d2f58ff4", + "name": "configHYYpIhhd", "description": "This hook was created to test the .NET client.", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -86,27 +86,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/76b3ecdb-4b14-42ec-87bf-d6178d0e896c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/5bd42870-97b9-4178-9143-fb76d2f58ff4", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2520abfb4b16604ab4013ad250bde118-45d26d49c1c97046-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c4ef21e0af2b244fa242f030f0f0727c-c75dd686495bbd41-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "ad9031ee9b64edfb55f117b272601d12", + "x-ms-client-request-id": "a7056a7e6e1494e78321ed250ed4312a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4ec446d2-08c8-46bc-959d-767e362116dc", + "apim-request-id": "ab53412b-1742-45e2-b158-625a75eaaf33", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:48 GMT", + "Date": "Tue, 19 Jan 2021 17:58:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82", - "x-request-id": "4ec446d2-08c8-46bc-959d-767e362116dc" + "x-envoy-upstream-service-time": "120", + "x-request-id": "ab53412b-1742-45e2-b158-625a75eaaf33" }, "ResponseBody": [] } @@ -116,6 +116,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "980243313" + "RandomSeed": "931946336" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(True).json new file mode 100644 index 000000000000..08943825d797 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(True).json @@ -0,0 +1,116 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "291", + "Content-Type": "application/json", + "traceparent": "00-9b7ee18a971d0a4e9b77b630c0fe40a9-93525e3ce2241447-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c4356899a592ddcf9fece7f6ab1d765a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configQemmjwy9", + "description": "This hook was created to test the .NET client.", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "hardThresholdCondition": { + "upperBound": 10, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "37969fa5-c43f-42ea-bf88-c4e51ddd4300", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:56 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/48cf18e2-d13c-4f66-af99-c1f3d736559e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48", + "x-request-id": "37969fa5-c43f-42ea-bf88-c4e51ddd4300" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/48cf18e2-d13c-4f66-af99-c1f3d736559e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-8dd2fb2f8df0d34f80ba94c506b91ea2-e61290466343674c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6b8e2df8a6197cb6e3175c37d4a3e2b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a1ef25e4-e2ea-42a6-8834-e1d356efefeb", + "Content-Length": "444", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35", + "x-request-id": "a1ef25e4-e2ea-42a6-8834-e1d356efefeb" + }, + "ResponseBody": { + "anomalyDetectionConfigurationId": "48cf18e2-d13c-4f66-af99-c1f3d736559e", + "name": "configQemmjwy9", + "description": "This hook was created to test the .NET client.", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "hardThresholdCondition": { + "upperBound": 10.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/48cf18e2-d13c-4f66-af99-c1f3d736559e", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a28160336cb548408c19e9fb331d99ab-c350f5b6a8ed5d45-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5b1c705022976292f82fb5c723f6595f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "cf0a5045-00bf-4fd7-afc2-7af3b766a70a", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50", + "x-request-id": "cf0a5045-00bf-4fd7-afc2-7af3b766a70a" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1983154513" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(True)Async.json new file mode 100644 index 000000000000..691b6ec9a6aa --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/CreateAndGetDetectionConfigurationWithHardCondition(True)Async.json @@ -0,0 +1,116 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "291", + "Content-Type": "application/json", + "traceparent": "00-1121b2aeb5a3c14c979431ddffc244d2-4d3ca4f15f97bb42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5276d35ea2a106c36a74d272afe1b35e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configdCb4so5C", + "description": "This hook was created to test the .NET client.", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "hardThresholdCondition": { + "upperBound": 10, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "7355a537-f294-49cd-bf57-6a69c5fc7895", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:03 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/67225c68-095f-40f4-bb4a-173beb7abdfa", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59", + "x-request-id": "7355a537-f294-49cd-bf57-6a69c5fc7895" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/67225c68-095f-40f4-bb4a-173beb7abdfa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-21120b7ba0d28e42a5eedf9ff2558a05-0eb80dc5689f354a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e45af92997dff9b0e1b806cf3021d8a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2aed8f51-ba89-4537-b24c-0c2be1dab240", + "Content-Length": "444", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38", + "x-request-id": "2aed8f51-ba89-4537-b24c-0c2be1dab240" + }, + "ResponseBody": { + "anomalyDetectionConfigurationId": "67225c68-095f-40f4-bb4a-173beb7abdfa", + "name": "configdCb4so5C", + "description": "This hook was created to test the .NET client.", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "hardThresholdCondition": { + "upperBound": 10.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/67225c68-095f-40f4-bb4a-173beb7abdfa", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4e97a2bc43ee2f43a67066d781db4e83-8d6efdd8ff61194b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "36ca372504c55c094873752c6ac6f3e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "882f1dec-4275-4d5e-a774-e9aaf9686376", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43", + "x-request-id": "882f1dec-4275-4d5e-a774-e9aaf9686376" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "2016156446" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(False).json similarity index 66% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(False).json index 861139301128..be7972c37d1b 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(False).json @@ -8,14 +8,14 @@ "Content-Length": "228", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-422412ec3cb0f443bbb2f5a0410dba39-8fc141263516f84e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a8e6e8c91063484fbdcc55e4f363cf6a-2edeed2b36ef4b43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "cee237613a45aa6e28458393449b00c3", + "x-ms-client-request-id": "8d18843e7365897b2d52ed3cd96b2fb3", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configGdZ4S7YW", + "name": "configOph2ZY2O", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { "hardThresholdCondition": { @@ -30,69 +30,69 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "40e73c9b-c313-4ce9-b41c-eaff640a4034", + "apim-request-id": "c2c6ea2c-2e21-4d44-a591-723c63d0ca59", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:43 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/297d5a6f-3d89-4671-ab63-119e3a561480", + "Date": "Tue, 19 Jan 2021 17:57:58 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/973af069-27b0-4bce-ba83-060492da3f47", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97", - "x-request-id": "40e73c9b-c313-4ce9-b41c-eaff640a4034" + "x-envoy-upstream-service-time": "91", + "x-request-id": "c2c6ea2c-2e21-4d44-a591-723c63d0ca59" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/297d5a6f-3d89-4671-ab63-119e3a561480", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/973af069-27b0-4bce-ba83-060492da3f47", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cf5b967a4c7f1a4788c35376a19d6239-13a1898224e33142-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1601d2227e2c98479369d10cb1fac082-9361c0a6e4dcee43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c0dd4f2ddd4c26d778f1395514ec88b7", + "x-ms-client-request-id": "cb2cd254b38dab8936d37b4354dfd5d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "a1d0c8ff-8ba5-4110-816c-1062747dc520", + "apim-request-id": "8bea636a-701c-466c-bbe4-a038ad6bb021", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:44 GMT", + "Date": "Tue, 19 Jan 2021 17:57:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "146", - "x-request-id": "a1d0c8ff-8ba5-4110-816c-1062747dc520" + "x-envoy-upstream-service-time": "109", + "x-request-id": "8bea636a-701c-466c-bbe4-a038ad6bb021" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/297d5a6f-3d89-4671-ab63-119e3a561480", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/973af069-27b0-4bce-ba83-060492da3f47", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-38d0cbc33cb4e944a4ec70b8c86dd5c5-7ee65bce24e97a47-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-745321c66dadb3488466650aa7f05525-0ce3681c26794a44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "ff3ae44a407bfbc2cfccb2fd405bf19c", + "x-ms-client-request-id": "5cf38380fcfd9851126b46b566acb83b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "13d2d369-cf79-4290-a239-50d45656eed5", + "apim-request-id": "d48f94cc-94ae-4149-a891-14aa549e1a36", "Content-Length": "124", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:44 GMT", + "Date": "Tue, 19 Jan 2021 17:57:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80", - "x-request-id": "13d2d369-cf79-4290-a239-50d45656eed5" + "x-envoy-upstream-service-time": "65", + "x-request-id": "d48f94cc-94ae-4149-a891-14aa549e1a36" }, "ResponseBody": { "code": "Not Found", - "message": "Not found this AnomalyDetectionConfiguration. TraceId: c0d9889b-7e67-4d04-9ac2-159398488a3e" + "message": "Not found this AnomalyDetectionConfiguration. TraceId: 0f886683-f501-466b-a993-e83404eb7cef" } } ], @@ -101,6 +101,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1816152230" + "RandomSeed": "1273656024" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfigurationAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(False)Async.json similarity index 66% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfigurationAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(False)Async.json index 096aace3e145..bd6f57efeb86 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfigurationAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(False)Async.json @@ -8,14 +8,14 @@ "Content-Length": "228", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-24c0fc326735a64a9334a6992ea86feb-48614ca706898e49-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e9894fd7f3c1fa4e94bbf6b9f0e7be1c-9576a84990288f4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "8dae8f5f9d95d2143bc561ec4c2d17f0", + "x-ms-client-request-id": "b7d128fa4b5e3e025931a95530495450", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "config37QB95KM", + "name": "configrNW2fBBD", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { "hardThresholdCondition": { @@ -30,69 +30,69 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "8a70362b-ea98-4d3d-842c-3733540f83f3", + "apim-request-id": "6e5bd1e6-a57b-4d59-9758-8d0a62adc72f", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:49 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/7b792710-55d5-4db4-a931-92752d74dd6b", + "Date": "Tue, 19 Jan 2021 17:58:05 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/abce9e85-fdb1-4aa4-bebb-b1aad6dc7899", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104", - "x-request-id": "8a70362b-ea98-4d3d-842c-3733540f83f3" + "x-envoy-upstream-service-time": "106", + "x-request-id": "6e5bd1e6-a57b-4d59-9758-8d0a62adc72f" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/7b792710-55d5-4db4-a931-92752d74dd6b", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/abce9e85-fdb1-4aa4-bebb-b1aad6dc7899", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e92491b63321c41acf1b1c9cc2f3a16-959ef240a49ba440-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1c9a394c2314264496f2861605c29caf-8bb31a5d7e9d0343-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "bfee710447b01ee1a0bd6eda6509da6c", + "x-ms-client-request-id": "3133bcea942604637f99a04a6ee242c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "ba1cbc72-dccd-4b80-919f-078680622683", + "apim-request-id": "9403bc33-00d1-4499-ab1d-77cf81a37a15", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:49 GMT", + "Date": "Tue, 19 Jan 2021 17:58:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96", - "x-request-id": "ba1cbc72-dccd-4b80-919f-078680622683" + "x-envoy-upstream-service-time": "112", + "x-request-id": "9403bc33-00d1-4499-ab1d-77cf81a37a15" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/7b792710-55d5-4db4-a931-92752d74dd6b", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/abce9e85-fdb1-4aa4-bebb-b1aad6dc7899", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-64c333c087d2fc4c8b9a4c0194914449-3d8071338a48b447-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f075089565f2a8478ee5ea896d57ff18-8022202b95268148-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "bd732c52da3078acff18a50d80bdabe2", + "x-ms-client-request-id": "a0f8825409af3cfff336f2b743370036", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "da5b2e84-af0c-4411-9015-d43f04d97110", + "apim-request-id": "4fbfe859-80e0-48e2-abac-33cc849a5831", "Content-Length": "124", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:50 GMT", + "Date": "Tue, 19 Jan 2021 17:58:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "214", - "x-request-id": "da5b2e84-af0c-4411-9015-d43f04d97110" + "x-envoy-upstream-service-time": "71", + "x-request-id": "4fbfe859-80e0-48e2-abac-33cc849a5831" }, "ResponseBody": { "code": "Not Found", - "message": "Not found this AnomalyDetectionConfiguration. TraceId: 7f6ff3d5-c136-4e6e-9489-dcc7d85ab71c" + "message": "Not found this AnomalyDetectionConfiguration. TraceId: 4e7ce6a5-3865-40da-a877-453acd981569" } } ], @@ -101,6 +101,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1931120175" + "RandomSeed": "1419054632" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(True).json new file mode 100644 index 000000000000..5a98a334c4b0 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(True).json @@ -0,0 +1,101 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "228", + "Content-Type": "application/json", + "traceparent": "00-179e210467028042a2cd67c340b16a54-725a8b94f3205745-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8a30f9bfa9920c4c93b36b3b5356d0a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configozjpC4Zo", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "hardThresholdCondition": { + "upperBound": 10, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "c6d68378-843a-43e1-bad7-63077c7a465e", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:58 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/d3bce66f-3ddd-4d6d-8d46-30163b112589", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42", + "x-request-id": "c6d68378-843a-43e1-bad7-63077c7a465e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/d3bce66f-3ddd-4d6d-8d46-30163b112589", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c7c81aa7e087f848b3f672e7c8492667-44da143f6dfe6141-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5107a6f7bf43124d06aa3e9027d7d4ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "430029fa-02c9-4c93-b0ab-f3f79f36c26e", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:57:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42", + "x-request-id": "430029fa-02c9-4c93-b0ab-f3f79f36c26e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/d3bce66f-3ddd-4d6d-8d46-30163b112589", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4d12ef0218268b449402a5c893ab28b9-c92c4b21e0995c48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "54006a826163d128a25627223121e42f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "80010587-14ec-4807-b054-8f3b320573fe", + "Content-Length": "124", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "20", + "x-request-id": "80010587-14ec-4807-b054-8f3b320573fe" + }, + "ResponseBody": { + "code": "Not Found", + "message": "Not found this AnomalyDetectionConfiguration. TraceId: 207c7db0-96e5-48fe-b3a2-c13f8675378a" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "786547728" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(True)Async.json new file mode 100644 index 000000000000..76a1c5473a45 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/DeleteDetectionConfiguration(True)Async.json @@ -0,0 +1,101 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "228", + "Content-Type": "application/json", + "traceparent": "00-b439bac9c0f76c4eabea526442dc6b79-215adb9167245d43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f0d0908630487d668b3c32c64c8b5e1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "config6UY8ebSI", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "hardThresholdCondition": { + "upperBound": 10, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "26e1b2ab-d3f3-4c1e-bb45-db14f60eddef", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:05 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/5784e2d3-8ab7-496d-96f8-c50d6105f2d7", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56", + "x-request-id": "26e1b2ab-d3f3-4c1e-bb45-db14f60eddef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/5784e2d3-8ab7-496d-96f8-c50d6105f2d7", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-335bd77cf961624fb503b75438519e81-0d8a151038b2b04f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e1ec802ed0963294ef535daea819f1a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "362bc373-255b-48be-88fd-e437fbfe160c", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41", + "x-request-id": "362bc373-255b-48be-88fd-e437fbfe160c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/5784e2d3-8ab7-496d-96f8-c50d6105f2d7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4f96e897acbf9a4b8cfff1d4e99ed50a-1f8fbdba5bf34842-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9d4600fafb29d77338cb05e3f360c652", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "5a3324ae-862b-4165-b69d-5079741d7198", + "Content-Length": "124", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21", + "x-request-id": "5a3324ae-862b-4165-b69d-5079741d7198" + }, + "ResponseBody": { + "code": "Not Found", + "message": "Not found this AnomalyDetectionConfiguration. TraceId: 91be7220-af67-44c4-8de6-c4cf99f929f6" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1575895723" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurationsAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(False).json similarity index 95% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurationsAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(False).json index eea3398b0188..18bb91503ec0 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurationsAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(False).json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f57f6f7de2f9674ca86e8eff6ade2e0a-3bd7c86380206342-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "6c7c287cfd8523c52690235b3d3762d3", + "x-ms-client-request-id": "ecab7dcd330585e9674420823055651b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d44b04b0-9a11-404a-bec1-ca5786278266", + "apim-request-id": "ae4bf97b-7036-4921-9840-4207edfef6cc", "Content-Length": "5874", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:50 GMT", + "Date": "Tue, 19 Jan 2021 17:58:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94", - "x-request-id": "d44b04b0-9a11-404a-bec1-ca5786278266" + "x-envoy-upstream-service-time": "116", + "x-request-id": "ae4bf97b-7036-4921-9840-4207edfef6cc" }, "ResponseBody": { "value": [ @@ -299,6 +300,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1849154163" + "RandomSeed": "503296209" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(False)Async.json similarity index 95% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(False)Async.json index 71b21476bc93..369738b8d8ed 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(False)Async.json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4153b5e36cf0944b9e64011b21b0fc40-b9acca5a8cfa5941-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5aacc5579284336db5b38189b9f50b1b", + "x-ms-client-request-id": "c1d41d36cd44575c0302d678385713c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8e17e61-595f-4373-bcf1-a51990a39f72", + "apim-request-id": "74515998-622e-4147-abb8-6a2cb659eea0", "Content-Length": "5874", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:44 GMT", + "Date": "Tue, 19 Jan 2021 17:58:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115", - "x-request-id": "d8e17e61-595f-4373-bcf1-a51990a39f72" + "x-envoy-upstream-service-time": "112", + "x-request-id": "74515998-622e-4147-abb8-6a2cb659eea0" }, "ResponseBody": { "value": [ @@ -299,6 +300,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "57562070" + "RandomSeed": "1950775457" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(True).json new file mode 100644 index 000000000000..ad19887e1b95 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(True).json @@ -0,0 +1,302 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/enrichment/anomalyDetection/configurations", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-bfa438c1e7ff584eae6a3491f0c04b47-2f582c57dcd33d49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3bd396d1b8c3294c2cf809c53e2aa1a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1216e7f5-da6f-43e6-9120-6ce2df934ee7", + "Content-Length": "5874", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:57:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47", + "x-request-id": "1216e7f5-da6f-43e6-9120-6ce2df934ee7" + }, + "ResponseBody": { + "value": [ + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "name": "detection-config", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "10240200-6f3a-4783-b8e4-e7b34a3973d6", + "name": "my_detection_config", + "description": "anomaly detection config for metric", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 10.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "hardThresholdCondition": { + "upperBound": 100.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 20.0, + "shiftPoint": 10, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 5, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "5d50b465-7565-4167-b33b-b92eb3199254", + "name": "test_detection_configuration1605051259010", + "description": "Detection configuration description", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 1.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "eb6ef516-9a09-4535-8ade-f64e26dfaefb", + "name": "js-detection-config-160521899279304202", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "1d270422-7ef8-4d3e-99e9-46b2bb1362fc", + "name": "js-detection-config-160521901418201870", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "64993d1d-02b8-4e0b-87d3-13095b187fe4", + "name": "js-detection-config-160521939989909966", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "dc0a5df5-c84e-4e9b-9065-f4017c4fbb97", + "name": "js-detection-config-160521942344906897", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "0491bfd7-b80a-4c2b-a32b-009e355a6cf5", + "name": "js-detection-config-160521950750209992", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "d803825a-12bf-4ae3-abcc-efd051509a1a", + "name": "js-detection-config-160521952580900483", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1498449374" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(True)Async.json new file mode 100644 index 000000000000..d6154afc378d --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/GetDetectonConfigurations(True)Async.json @@ -0,0 +1,302 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/enrichment/anomalyDetection/configurations", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c385f0778f0d29409ca89633966c16c2-48025de5009f0d4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a8456157737c2a20cbf0cde91c0abcb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb7b0f7a-38af-4115-b6ef-9b06c44073a5", + "Content-Length": "5874", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45", + "x-request-id": "bb7b0f7a-38af-4115-b6ef-9b06c44073a5" + }, + "ResponseBody": { + "value": [ + { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "name": "detection-config", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "10240200-6f3a-4783-b8e4-e7b34a3973d6", + "name": "my_detection_config", + "description": "anomaly detection config for metric", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 10.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "hardThresholdCondition": { + "upperBound": 100.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 20.0, + "shiftPoint": 10, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 5, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "5d50b465-7565-4167-b33b-b92eb3199254", + "name": "test_detection_configuration1605051259010", + "description": "Detection configuration description", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 1.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "eb6ef516-9a09-4535-8ade-f64e26dfaefb", + "name": "js-detection-config-160521899279304202", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "1d270422-7ef8-4d3e-99e9-46b2bb1362fc", + "name": "js-detection-config-160521901418201870", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "64993d1d-02b8-4e0b-87d3-13095b187fe4", + "name": "js-detection-config-160521939989909966", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "dc0a5df5-c84e-4e9b-9065-f4017c4fbb97", + "name": "js-detection-config-160521942344906897", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "0491bfd7-b80a-4c2b-a32b-009e355a6cf5", + "name": "js-detection-config-160521950750209992", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "d803825a-12bf-4ae3-abcc-efd051509a1a", + "name": "js-detection-config-160521952580900483", + "description": "fresh detection", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "AND", + "hardThresholdCondition": { + "upperBound": 400.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + }, + "changeThresholdCondition": { + "changePercentage": 33.0, + "shiftPoint": 1, + "anomalyDetectorDirection": "Both", + "withinRange": true, + "suppressCondition": { + "minNumber": 2, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + }, + { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1224691945" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(False).json similarity index 80% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(False).json index 7809c8f643ff..5ee8816a1748 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(False).json @@ -8,14 +8,14 @@ "Content-Length": "858", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-755f4d3bb8aee94abc74a0891eaba2ae-2644f660cd4ade40-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-60ff83769604fc43869df4c2e809152d-c25fab5a8fad2a4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9058da02a084a98797c7e67a95fb2550", + "x-ms-client-request-id": "b0972cb3753e61bbd46851d3bb5ed2ea", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configvBVtOs7k", + "name": "configS8dmYdfe", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { "conditionOperator": "OR", @@ -76,44 +76,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "30036f3e-20cd-49d4-878c-8ec93388b497", + "apim-request-id": "15658174-f1d9-41fe-8d7a-dda100355d38", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:46 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/00d08e1f-7744-4559-988d-987c36863821", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/c537d6aa-e4bc-44f7-a331-c251ed47aefa", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "155", - "x-request-id": "30036f3e-20cd-49d4-878c-8ec93388b497" + "x-request-id": "15658174-f1d9-41fe-8d7a-dda100355d38" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/00d08e1f-7744-4559-988d-987c36863821", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/c537d6aa-e4bc-44f7-a331-c251ed47aefa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5a71296c73293d42bd2df3bd7803aef5-6c97c4e99ac8ba4a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-000d93d86697fb48ad062b52c0dcb4fc-1f0aef08b8fd2b47-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "60bd49a7d354ddc2f3d1882db72689a8", + "x-ms-client-request-id": "a148f39f3b06e0202a691c6e132ecf6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d89a224-3878-4f21-877b-a8fa05bfe67c", + "apim-request-id": "aaf8cc07-be25-4c85-a3e0-12aadea8bbd2", "Content-Length": "964", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:46 GMT", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82", - "x-request-id": "5d89a224-3878-4f21-877b-a8fa05bfe67c" + "x-envoy-upstream-service-time": "99", + "x-request-id": "aaf8cc07-be25-4c85-a3e0-12aadea8bbd2" }, "ResponseBody": { - "anomalyDetectionConfigurationId": "00d08e1f-7744-4559-988d-987c36863821", - "name": "configvBVtOs7k", + "anomalyDetectionConfigurationId": "c537d6aa-e4bc-44f7-a331-c251ed47aefa", + "name": "configS8dmYdfe", "description": "", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -175,21 +175,21 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/00d08e1f-7744-4559-988d-987c36863821", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/c537d6aa-e4bc-44f7-a331-c251ed47aefa", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "825", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7837459851e4f1418a351f0721eaa126-ee67189a6019ea43-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-dc1a85b9b274df449792b6d211a36c0b-f71a94931938924e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "f41e8141aea8277a95beefe20f3a5c35", + "x-ms-client-request-id": "c74f11023cc386bd75e7a1ffa1ccfc36", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "configvBVtOs7k", + "name": "configS8dmYdfe", "description": "", "wholeMetricConfiguration": { "conditionOperator": "OR", @@ -250,43 +250,43 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "148fbde0-4600-4ada-8d88-7005425d5d51", + "apim-request-id": "1142e05b-e2cd-4c61-ba46-2411a8bf949a", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:46 GMT", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "162", - "x-request-id": "148fbde0-4600-4ada-8d88-7005425d5d51" + "x-request-id": "1142e05b-e2cd-4c61-ba46-2411a8bf949a" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/00d08e1f-7744-4559-988d-987c36863821", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/c537d6aa-e4bc-44f7-a331-c251ed47aefa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26765b5b9bc2e74b9c64225f99ca15fc-5dca70911054694b-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-224cdbae7935894f9251f517b6b260bc-dc1bc6d3bee12647-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "1f46ca04cb4f2e45187b9cb3175af270", + "x-ms-client-request-id": "2766aaa5b40b779c0bb686d5584c4ea6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86ad17de-54aa-461f-9084-374c3f82d99a", + "apim-request-id": "a21db451-4f7f-4c92-b081-5a980d848f44", "Content-Length": "964", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:46 GMT", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91", - "x-request-id": "86ad17de-54aa-461f-9084-374c3f82d99a" + "x-envoy-upstream-service-time": "90", + "x-request-id": "a21db451-4f7f-4c92-b081-5a980d848f44" }, "ResponseBody": { - "anomalyDetectionConfigurationId": "00d08e1f-7744-4559-988d-987c36863821", - "name": "configvBVtOs7k", + "anomalyDetectionConfigurationId": "c537d6aa-e4bc-44f7-a331-c251ed47aefa", + "name": "configS8dmYdfe", "description": "", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -348,27 +348,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/00d08e1f-7744-4559-988d-987c36863821", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/c537d6aa-e4bc-44f7-a331-c251ed47aefa", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-df9258caf704dd4faf0d4823ae4d4b4b-9d2bf4121e6b7248-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6b11c3da1fbaff4cb5386061341eab33-59ca1dad2310f142-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "13383d3d31ddf8a8cf95cb95e4dfcdb9", + "x-ms-client-request-id": "aad1e5990a0f622635c12c1f9a213e5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "f6d18f73-135f-452e-8919-df4bc68365ce", + "apim-request-id": "15b3db3c-36cd-4b81-9a89-95cd1bbf9444", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:46 GMT", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "89", - "x-request-id": "f6d18f73-135f-452e-8919-df4bc68365ce" + "x-envoy-upstream-service-time": "110", + "x-request-id": "15b3db3c-36cd-4b81-9a89-95cd1bbf9444" }, "ResponseBody": [] } @@ -378,6 +378,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2071544356" + "RandomSeed": "1760932433" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstanceAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(False)Async.json similarity index 79% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstanceAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(False)Async.json index 5f960838921b..311607d67eea 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstanceAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(False)Async.json @@ -8,14 +8,14 @@ "Content-Length": "858", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9bb63b16f0c4db4cbe01caaf16630eee-a4558b55a3016547-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fdf7dbd0a9163f45b0ea956344573707-2aea0adb04cf4647-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "b02d42d39f7aaa54efdbc6982f20b929", + "x-ms-client-request-id": "7840d24d9997aafc09851a1a4625dd06", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "config7RMv8Axc", + "name": "config9OR03UcA", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { "conditionOperator": "OR", @@ -76,44 +76,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "5e0247b4-7a1b-4007-9fc6-b4f055688547", + "apim-request-id": "9539c819-d7fe-4911-9b16-ecd6079585f1", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:52 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/efdb3f83-8774-4711-b062-687d3ed87742", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/3c725987-c415-4aa8-b7c0-4f63e23fc6cd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "188", - "x-request-id": "5e0247b4-7a1b-4007-9fc6-b4f055688547" + "x-envoy-upstream-service-time": "196", + "x-request-id": "9539c819-d7fe-4911-9b16-ecd6079585f1" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/efdb3f83-8774-4711-b062-687d3ed87742", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/3c725987-c415-4aa8-b7c0-4f63e23fc6cd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd2f91358e3ae14096f220db635691b7-a7667a624ad07043-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-360bba1d8e7bda4caab3782423dc8fcd-58809a4f1da40c4d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9510914fce295478954710052359d301", + "x-ms-client-request-id": "6762f3a7ddc97f158dba8de0aa87e4c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5475e6ce-1cf0-422e-9ee8-26f3511f5d8d", + "apim-request-id": "aa23270b-d947-45c6-b735-b72495a6b43a", "Content-Length": "964", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:52 GMT", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93", - "x-request-id": "5475e6ce-1cf0-422e-9ee8-26f3511f5d8d" + "x-envoy-upstream-service-time": "108", + "x-request-id": "aa23270b-d947-45c6-b735-b72495a6b43a" }, "ResponseBody": { - "anomalyDetectionConfigurationId": "efdb3f83-8774-4711-b062-687d3ed87742", - "name": "config7RMv8Axc", + "anomalyDetectionConfigurationId": "3c725987-c415-4aa8-b7c0-4f63e23fc6cd", + "name": "config9OR03UcA", "description": "", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -175,21 +175,21 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/efdb3f83-8774-4711-b062-687d3ed87742", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/3c725987-c415-4aa8-b7c0-4f63e23fc6cd", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "825", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0620783debe1e4faa5d7f07e86ea547-67e274f6f7fb254d-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bb2d48a38569bc4b9fd453d04f6c8a9e-c9b9bd1f2130cc4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "1ecfbac01af65e0c6193f557bbc9efdd", + "x-ms-client-request-id": "7d0d97fca82252b1a8e59a24d042b9bb", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "config7RMv8Axc", + "name": "config9OR03UcA", "description": "", "wholeMetricConfiguration": { "conditionOperator": "OR", @@ -250,43 +250,43 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "dd694b64-46f1-4b8a-896f-cb4763efc51e", + "apim-request-id": "66370a60-8a87-4165-91e2-60930f3b18bb", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:52 GMT", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "182", - "x-request-id": "dd694b64-46f1-4b8a-896f-cb4763efc51e" + "x-envoy-upstream-service-time": "198", + "x-request-id": "66370a60-8a87-4165-91e2-60930f3b18bb" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/efdb3f83-8774-4711-b062-687d3ed87742", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/3c725987-c415-4aa8-b7c0-4f63e23fc6cd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-44936f2aee4f47408acbbebb26087cee-a5d673b714e2904a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2b14e2cd3e541d4c8e42b9c365514fef-9b33772639d9ab42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "166e4d6149bb050cc9d91b328f4f8695", + "x-ms-client-request-id": "ea9a610f0270707dbdc1ebdc0b1c0082", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7570505-044a-47d9-8d93-af67a76e902b", + "apim-request-id": "83eafa7c-232a-4a91-bbc3-1191cfb14668", "Content-Length": "964", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 16 Dec 2020 18:41:52 GMT", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129", - "x-request-id": "a7570505-044a-47d9-8d93-af67a76e902b" + "x-envoy-upstream-service-time": "109", + "x-request-id": "83eafa7c-232a-4a91-bbc3-1191cfb14668" }, "ResponseBody": { - "anomalyDetectionConfigurationId": "efdb3f83-8774-4711-b062-687d3ed87742", - "name": "config7RMv8Axc", + "anomalyDetectionConfigurationId": "3c725987-c415-4aa8-b7c0-4f63e23fc6cd", + "name": "config9OR03UcA", "description": "", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "wholeMetricConfiguration": { @@ -348,27 +348,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/efdb3f83-8774-4711-b062-687d3ed87742", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/3c725987-c415-4aa8-b7c0-4f63e23fc6cd", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-00c1edc74efd8842974b949af4bc9ff6-b9f9181db1158f43-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201215.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fec34d2592378541a105330d21c703ef-59d89d39e9599544-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "75d7c4079b50353385b23395d82099cb", + "x-ms-client-request-id": "ae1d54a16017fee44210bfe442f0af4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "849e77d0-2c8a-4a45-8428-c56fcc7d2a4c", + "apim-request-id": "5a40ae2a-1c2c-4c09-861e-c2c0a47270dd", "Content-Length": "0", - "Date": "Wed, 16 Dec 2020 18:41:53 GMT", + "Date": "Tue, 19 Jan 2021 17:58:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "120", - "x-request-id": "849e77d0-2c8a-4a45-8428-c56fcc7d2a4c" + "x-envoy-upstream-service-time": "106", + "x-request-id": "5a40ae2a-1c2c-4c09-861e-c2c0a47270dd" }, "ResponseBody": [] } @@ -378,6 +378,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "270912937" + "RandomSeed": "634681064" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(True).json new file mode 100644 index 000000000000..d309da6d3af2 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(True).json @@ -0,0 +1,376 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "858", + "Content-Type": "application/json", + "traceparent": "00-ea2474ef370ef743bb97f32b6e0f6aef-c1166e7f20173e44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "18a3d941380a038cf555a18dc01b1d16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configvvfJ7FgJ", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + }, + "hardThresholdCondition": { + "lowerBound": 10, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40, + "shiftPoint": 12, + "withinRange": false, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4 + } + } + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "1b2cf49b-1956-4ac5-8edd-ad998146094a", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:00 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110", + "x-request-id": "1b2cf49b-1956-4ac5-8edd-ad998146094a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-413c1718b2ef8147b0557617d1dd5377-ffe9faf755edb245-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "faac52bf6e56e4ed880433800aa248b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d5cc94c-0a38-4e93-9af4-488071156ea6", + "Content-Length": "964", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32", + "x-request-id": "9d5cc94c-0a38-4e93-9af4-488071156ea6" + }, + "ResponseBody": { + "anomalyDetectionConfigurationId": "b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "name": "configvvfJ7FgJ", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + }, + "hardThresholdCondition": { + "lowerBound": 10.0, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40.0, + "shiftPoint": 12, + "anomalyDetectorDirection": "Up", + "withinRange": false, + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4.0 + } + } + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "825", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-383c50f578b88f4b801d00346f6572c7-d0053d664c43e347-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6cf73748e3df1c6fc794ead74b666df3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configvvfJ7FgJ", + "description": "", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + }, + "hardThresholdCondition": { + "lowerBound": 12, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40, + "shiftPoint": 12, + "withinRange": false, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4 + } + } + } + ] + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "d2984e3a-60c9-4fb6-8557-8c7cfcca0214", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125", + "x-request-id": "d2984e3a-60c9-4fb6-8557-8c7cfcca0214" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-5a4b269db52cf74a9485ee81ceed4572-5721c285e65fc143-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e7a5604dde58d295ebbe9005050bf852", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d2939287-727b-4759-8434-1954de2c499c", + "Content-Length": "964", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34", + "x-request-id": "d2939287-727b-4759-8434-1954de2c499c" + }, + "ResponseBody": { + "anomalyDetectionConfigurationId": "b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "name": "configvvfJ7FgJ", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + }, + "hardThresholdCondition": { + "lowerBound": 12.0, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40.0, + "shiftPoint": 12, + "anomalyDetectorDirection": "Up", + "withinRange": false, + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4.0 + } + } + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/b6400efe-a9a8-46ec-9642-72d6dfdc16b2", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-236c59e42c788c4b940d84f327702433-4bce221a0d140a4a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8844f00db124dc37e29032c283159822", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "94821f45-6700-43f7-9d44-4dca3722f367", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41", + "x-request-id": "94821f45-6700-43f7-9d44-4dca3722f367" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "196536847" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(True)Async.json new file mode 100644 index 000000000000..0a26a15d2341 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionConfigurationLiveTests/UpdateDetectionConfigurationWithMinimumSetupAndGetInstance(True)Async.json @@ -0,0 +1,376 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "858", + "Content-Type": "application/json", + "traceparent": "00-7e09dd87f1d0e344ba424526c4ac0012-3b7618f318c7d84d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "44d33fe48170c13acd1c9736f8c740a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configNBUpfLc4", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + }, + "hardThresholdCondition": { + "lowerBound": 10, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40, + "shiftPoint": 12, + "withinRange": false, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4 + } + } + } + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "b1b2bee7-901f-44f3-b7af-fe50f5bc4bb5", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:07 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/32fcc502-4d49-438f-b311-66eee9e8dcbd", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126", + "x-request-id": "b1b2bee7-901f-44f3-b7af-fe50f5bc4bb5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/32fcc502-4d49-438f-b311-66eee9e8dcbd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b06fad1dfd4fc34e9887ccd0800cd86a-b1d535494627fa49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d39d34622047a701a03d2883ef74e60c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b979b96-a2a6-46ed-bb46-0c646ab1dd91", + "Content-Length": "964", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39", + "x-request-id": "9b979b96-a2a6-46ed-bb46-0c646ab1dd91" + }, + "ResponseBody": { + "anomalyDetectionConfigurationId": "32fcc502-4d49-438f-b311-66eee9e8dcbd", + "name": "configNBUpfLc4", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + }, + "hardThresholdCondition": { + "lowerBound": 10.0, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40.0, + "shiftPoint": 12, + "anomalyDetectorDirection": "Up", + "withinRange": false, + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4.0 + } + } + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/32fcc502-4d49-438f-b311-66eee9e8dcbd", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "825", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-45284ee5cc973f4484cacbd6a4de5db3-2ec90e0ab90a9c45-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c05e864224bb2e35690bf15fe42179fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "name": "configNBUpfLc4", + "description": "", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + }, + "hardThresholdCondition": { + "lowerBound": 12, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40, + "shiftPoint": 12, + "withinRange": false, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4 + } + } + } + ] + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "56d99847-4fd7-4977-b772-0628ac495b80", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116", + "x-request-id": "56d99847-4fd7-4977-b772-0628ac495b80" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/32fcc502-4d49-438f-b311-66eee9e8dcbd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7d053256e6d65e48904c7daf6132fa1f-3a0e4074dd50784f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0882138a8999c31c3d2ca43358b6d258", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72816255-18b3-46af-8012-084051cea030", + "Content-Length": "964", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36", + "x-request-id": "72816255-18b3-46af-8012-084051cea030" + }, + "ResponseBody": { + "anomalyDetectionConfigurationId": "32fcc502-4d49-438f-b311-66eee9e8dcbd", + "name": "configNBUpfLc4", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "conditionOperator": "OR", + "smartDetectionCondition": { + "sensitivity": 60.0, + "anomalyDetectorDirection": "Up", + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + }, + "hardThresholdCondition": { + "lowerBound": 12.0, + "anomalyDetectorDirection": "Down", + "suppressCondition": { + "minNumber": 1, + "minRatio": 2.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [ + { + "group": { + "dimension": { + "city": "Koltaka" + } + }, + "changeThresholdCondition": { + "changePercentage": 40.0, + "shiftPoint": 12, + "anomalyDetectorDirection": "Up", + "withinRange": false, + "suppressCondition": { + "minNumber": 5, + "minRatio": 6.0 + } + } + } + ], + "seriesOverrideConfigurations": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "smartDetectionCondition": { + "sensitivity": 30.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 3, + "minRatio": 4.0 + } + } + } + ] + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/32fcc502-4d49-438f-b311-66eee9e8dcbd", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c24076134f43fc40bbf011d2821fe7f1-725d48848fe98247-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "71f48b3580693de9ff6f693b2fa1c37e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "5ea77871-83d5-4f99-88db-68229b622c56", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57", + "x-request-id": "5ea77871-83d5-4f99-88db-68229b622c56" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1105372450" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(False).json similarity index 99% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(False).json index b68836dcdebb..f2b33882c15a 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(False).json @@ -8,9 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a682276e9688894cb3009abed2197d95-0d7027a71c9e064d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "b23419a14f1d36d96744201bb75dc36f", + "x-ms-client-request-id": "9cf1d56a12b013faa66b6431029dd2f2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,14 +20,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dc7816c-5412-4b92-9c87-bd96fa6c79d3", + "apim-request-id": "745623f1-5788-40ab-8224-bca046d0404a", "Content-Length": "138076", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:32 GMT", + "Date": "Tue, 19 Jan 2021 17:42:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156", - "x-request-id": "7dc7816c-5412-4b92-9c87-bd96fa6c79d3" + "x-envoy-upstream-service-time": "165", + "x-request-id": "745623f1-5788-40ab-8224-bca046d0404a" }, "ResponseBody": { "value": [ @@ -10040,6 +10041,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "853915439" + "RandomSeed": "753416709" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(False)Async.json similarity index 99% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(False)Async.json index a878808322cf..f7b384911fb1 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5947ef61ac39364782a91f8447ad1d94-32e0820bece45043-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c94480f12402df03a1fc66b62aa50b2c", + "x-ms-client-request-id": "980a552e6b4e45ccc7321d87982588e4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,14 +20,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17cbf8f2-b087-4f16-bdcf-b390eff8cb27", + "apim-request-id": "81ea40ae-a4c3-4d26-9251-48e80927ee14", "Content-Length": "138076", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:36 GMT", + "Date": "Tue, 19 Jan 2021 17:42:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "153", - "x-request-id": "17cbf8f2-b087-4f16-bdcf-b390eff8cb27" + "x-envoy-upstream-service-time": "147", + "x-request-id": "81ea40ae-a4c3-4d26-9251-48e80927ee14" }, "ResponseBody": { "value": [ @@ -10040,6 +10041,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1589324928" + "RandomSeed": "1393014546" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(True).json new file mode 100644 index 000000000000..2a75010c52f4 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(True).json @@ -0,0 +1,10043 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/anomalies/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-e6d31a7db344794c9024b8c3a7ccb2c4-b86e2077f4c5d147-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "40f52e2102a9114d648ed33ece2b0f68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77e5cce5-4eda-4ac5-97fc-4b40d8e21ffc", + "Content-Length": "138076", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "111", + "x-request-id": "77e5cce5-4eda-4ac5-97fc-4b40d8e21ffc" + }, + "ResponseBody": { + "value": [ + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Haora", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "London", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Collectible Coins" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dongguan", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dongguan", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "London", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "London", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Health \u0026 Personal Care" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Health \u0026 Personal Care" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Baghdad", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "London", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Boston", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Boston", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Sports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Haora", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "London", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Haora", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "New York", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Barcelona", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Collectible Coins" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Shenyang", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "London", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Collectible Coins" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + } + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/anomalies/query?$top=1000\u0026$skip=1000" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "139729872" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..e389bf49e54c --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetAnomaliesWithMinimumSetup(True)Async.json @@ -0,0 +1,10043 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/anomalies/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-cba85d715d991f42b422f180c596411a-a091c3cf65b98d49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6e0742075b89910f9e7d1593db439e52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb05f12c-993d-4b4a-baf9-96fb621a6f81", + "Content-Length": "138076", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "94", + "x-request-id": "bb05f12c-993d-4b4a-baf9-96fb621a6f81" + }, + "ResponseBody": { + "value": [ + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Haora", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "London", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Collectible Coins" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dongguan", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dongguan", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "London", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "London", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Health \u0026 Personal Care" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Health \u0026 Personal Care" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Baghdad", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "London", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Boston", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Boston", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Chennai", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Sports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Haora", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "London", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Haora", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "New York", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Ho Chi Minh City", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Paris", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Moscow", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Kolkata", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "High" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Houston", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Barcelona", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Jakarta", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Washington", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "London", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Istanbul", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Hong Kong", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Bogota", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Madrid", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Singapore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Collectible Coins" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Shenyang", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Lagos", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Belo Horizonte", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Kinshasa", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "London", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Tianjin", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Beijing", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Toronto", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Shanghai", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Baby Products (Excluding Apparel)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "London", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Seoul", + "category": "__SUM__" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Collectible Coins" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "London", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Hyderabad", + "category": "Office Products" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Karachi", + "category": "Jewelry" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Santiago", + "category": "Industrial \u0026 Scientific" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Lahore", + "category": "Shoes Handbags \u0026 Sunglasses" + }, + "property": { + "anomalySeverity": "Medium" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Manila", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Device Accessories" + }, + "property": { + "anomalySeverity": "Low" + } + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "dimension": { + "city": "Taipei", + "category": "Automotive \u0026 Powersports" + }, + "property": { + "anomalySeverity": "Low" + } + } + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/anomalies/query?$top=1000\u0026$skip=1000" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "15890714" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(False).json similarity index 89% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(False).json index f7ce31e31e71..fb6aaa5a4d8c 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(False).json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1906febf92882740911cc14110988cc8-6a6010733e3e7c49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "1c9ee367c0bb6aa7f500aae042073928", + "x-ms-client-request-id": "c8a96362ac0fa818f6cc4867a425bbe4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5c8e049-f21a-4011-9f13-ff96901481e2", + "apim-request-id": "269ac6bd-b7a1-4a0c-9e67-51be3863c85a", "Content-Length": "1631", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:32 GMT", + "Date": "Tue, 19 Jan 2021 17:42:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "244", - "x-request-id": "b5c8e049-f21a-4011-9f13-ff96901481e2" + "x-envoy-upstream-service-time": "263", + "x-request-id": "269ac6bd-b7a1-4a0c-9e67-51be3863c85a" }, "ResponseBody": { "value": [ @@ -112,6 +113,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2081121000" + "RandomSeed": "1046162318" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCausesAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(False)Async.json similarity index 90% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCausesAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(False)Async.json index 60244cb5e32e..71711c597f68 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCausesAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(False)Async.json @@ -6,22 +6,23 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a9ea5139ac3b4142b3992e8b5901388d-11caaf4634fc7549-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "69b310a5eb47b520ecac7e0d823c3b29", + "x-ms-client-request-id": "d2d6cab99ef61bda4f878cef851324d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66e5f69a-48d5-4723-b6b5-0eff60b1dff3", + "apim-request-id": "7842f163-5a52-4fc4-accb-ee2c021bc14c", "Content-Length": "1631", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:36 GMT", + "Date": "Tue, 19 Jan 2021 17:42:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "255", - "x-request-id": "66e5f69a-48d5-4723-b6b5-0eff60b1dff3" + "x-request-id": "7842f163-5a52-4fc4-accb-ee2c021bc14c" }, "ResponseBody": { "value": [ @@ -112,6 +113,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2090615090" + "RandomSeed": "1767726167" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(True).json new file mode 100644 index 000000000000..afeba1f58d51 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(True).json @@ -0,0 +1,115 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/incidents/736eed64368bb6a372e855322a15a736-174e1756000/rootCause", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-57c92e5377b0e444802e0964fcd3328b-ba36ee3678cb0f4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e4cb2f89e2a22bf967d65eca62f120e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "661bb31c-91da-4467-9343-32a85bbbc2bb", + "Content-Length": "1631", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181", + "x-request-id": "661bb31c-91da-4467-9343-32a85bbbc2bb" + }, + "ResponseBody": { + "value": [ + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Houston" + } + }, + "path": [ + "city" + ], + "score": 0.093254247542794544, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Houston" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Manila" + } + }, + "path": [ + "city" + ], + "score": 0.070565102895706944, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Manila" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Tianjin" + } + }, + "path": [ + "city" + ], + "score": 0.034323946263572935, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Tianjin" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Shanghai" + } + }, + "path": [ + "city" + ], + "score": 0.032546005599616623, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Shanghai" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Los Angeles" + } + }, + "path": [ + "city" + ], + "score": 0.016092267995932552, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Los Angeles" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Madrid" + } + }, + "path": [ + "city" + ], + "score": 0.011665019248226383, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Madrid" + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1210094342" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(True)Async.json new file mode 100644 index 000000000000..bad60eb03194 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentRootCauses(True)Async.json @@ -0,0 +1,115 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/incidents/736eed64368bb6a372e855322a15a736-174e1756000/rootCause", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3348013cca3b694a93a368d0b5279437-e02d2106d5f4a84f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "32673905d7b046be04d874982d7df4d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89deb558-b798-4126-8171-f88499b41693", + "Content-Length": "1631", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "187", + "x-request-id": "89deb558-b798-4126-8171-f88499b41693" + }, + "ResponseBody": { + "value": [ + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Houston" + } + }, + "path": [ + "city" + ], + "score": 0.093254247542794544, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Houston" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Manila" + } + }, + "path": [ + "city" + ], + "score": 0.070565102895706944, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Manila" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Tianjin" + } + }, + "path": [ + "city" + ], + "score": 0.034323946263572935, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Tianjin" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Shanghai" + } + }, + "path": [ + "city" + ], + "score": 0.032546005599616623, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Shanghai" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Los Angeles" + } + }, + "path": [ + "city" + ], + "score": 0.016092267995932552, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Los Angeles" + }, + { + "rootCause": { + "dimension": { + "category": "Grocery \u0026 Gourmet Food", + "city": "Madrid" + } + }, + "path": [ + "city" + ], + "score": 0.011665019248226383, + "description": "Several potential root causes has been identified, most contributors are: category = Grocery \u0026 Gourmet Food | city = Madrid" + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1266436005" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(False).json similarity index 99% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(False).json index 40fa7ff82500..adb6dbef91f8 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(False).json @@ -8,9 +8,10 @@ "Content-Length": "81", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-76d8d96be9fa3648a8ae6f998745dbc2-3800c9bc6bb9e44e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "8c179ab2d7a6c465610d831aff888ebe", + "x-ms-client-request-id": "0428cdd072cfe1540e214ec1009c39f2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,14 +21,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3003a795-91d4-4dd1-9f4e-f42df031ccb5", + "apim-request-id": "be81948d-589c-4119-9d0a-eb31ce82b0b0", "Content-Length": "175772", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:34 GMT", + "Date": "Tue, 19 Jan 2021 17:42:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "345", - "x-request-id": "3003a795-91d4-4dd1-9f4e-f42df031ccb5" + "x-envoy-upstream-service-time": "396", + "x-request-id": "be81948d-589c-4119-9d0a-eb31ce82b0b0" }, "ResponseBody": { "value": [ @@ -9911,6 +9912,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "645538999" + "RandomSeed": "926842823" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(False)Async.json similarity index 99% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(False)Async.json index 64789ffe9398..dfb77f928b8d 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "81", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3f200654f06f614bba50d5c028715456-f2207a95e9dbfd42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "1cf3ef447abfd47f76504d4c3fb4fc63", + "x-ms-client-request-id": "b7143c7b2fb08929f25be42cc51bbf07", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,14 +21,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8671ac7-70ea-41dd-8b36-5bbebe9b8b60", + "apim-request-id": "025f406a-950d-4d8d-b480-c2509e753072", "Content-Length": "175772", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:38 GMT", + "Date": "Tue, 19 Jan 2021 17:42:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "375", - "x-request-id": "f8671ac7-70ea-41dd-8b36-5bbebe9b8b60" + "x-envoy-upstream-service-time": "348", + "x-request-id": "025f406a-950d-4d8d-b480-c2509e753072" }, "ResponseBody": { "value": [ @@ -9911,6 +9912,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1074189126" + "RandomSeed": "2135346855" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(True).json new file mode 100644 index 000000000000..c7afb49a81e4 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(True).json @@ -0,0 +1,9914 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/incidents/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "81", + "Content-Type": "application/json", + "traceparent": "00-34a644c75751f8498caabf6a227feef1-0985dc72445eec4d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "53f0a8ec32409587c001ca641d9e7649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "filter": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1970951-2957-4f92-aab0-f3cd486dbf8a", + "Content-Length": "175772", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "280", + "x-request-id": "f1970951-2957-4f92-aab0-f3cd486dbf8a" + }, + "ResponseBody": { + "value": [ + { + "incidentId": "5a0692283edccf37ce825b3a8d475f4e-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a75b8b251c8e1b1aa6278190c4278a0b-17576cdcc00", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "47a7b4001ce6d6c5d4e1f3b40fb5289a-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "20e97954b7aef346b7c225a3b73ca232-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb2b731416527e874774829e0c7305ff-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "970a0828bb829b5991d220e2505406af-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0793db3ee15abf3f3c3af73a8c82588c-17576cdcc00", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f04b6aebfd63523ad88661620e429488-17576cdcc00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d6bc9e0969d57a2be70e401d6de9af3b-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0303341591aee35f83111ec85ccac10e-17576cdcc00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "aa0af255802924c17a9b9f1a609feb14-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f31359b1507ebc878b114be0c4340693-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f232d8eac39c62cf0e48cd92d0fd50d-17576cdcc00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1642eb6d86861e418c7075b20f42b9e0-17576cdcc00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "46252a525ddeca5e9e3a0fda51444822-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "690e525f5df215b10dda05c85e7a28dc-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "30b9d9ab497ff8a7083552590906357e-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "413f3b759eaa97e2fb39f46b08f5fab4-17576cdcc00", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a0e36095936a2a5cfcce2bf4d048bda8-17576cdcc00", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccc85aa306b5513d185143ece364595a-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "768062de6710699938c779344ba81ca5-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f0b8fda3844b8d12d646fadbad496347-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "39545810eabd039e3c5bca795889e4d5-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "323c79b4e6fc7e6aef0a75852c909fde-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c87ace3b9f582c6a6142026c80f2de44-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "61294d00e5ffa5c9c0d994bc2e2d2ab6-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f88c5b16847b720dbef3c559e5b7993-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b669a37ec9eee5546458a10b039609f8-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5d404170bffdf5687ebb66f90f21c29-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d67e28e39ec7a3cf7d401c41e899657-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b7210ac40572a67db8e55cf2fddccdf8-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94ca56bbe7e5b9947ffe497524b0696e-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c6a68353541be3fad05d23c0b2984817-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "596c3ea953875e9e69bfe44b2f9c6d9c-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "944152ebe0508815db8e79059477eab6-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "dd1566e6ab95777eab6d996389dba73d-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e3251d42b275d8b4778dac5113edaaf2-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "00494b4c369e4d4c827d5f18de321b9a-17571a77000", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5091ee44c96fe998011057f811ac3c2a-17571a77000", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6187863b009d2b8fa2e00c9d57d14abc-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "135ee8ad95361f71ddd59f4d81c3ad65-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "714138a9952455a7a9a7490e9ba525ac-17571a77000", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b8d5a86a1cd082071659edeb2c85df3-17571a77000", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "740e015e72e8de201191854db904421b-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "10fdea62106e7077de0386bd88dc7bfc-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bbcf4fc26f84fdc0bfdbe72c989be32e-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b66adf2460017911222816d9d78489f-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cd7de6b5ee7ade6658fe5e109d660264-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a2a165c5e23b2053216f419f97ed7b03-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "99882c19001b5ecafa572a79f162315e-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5c537a979fd369fcb94011243d9b8c63-1756c811400", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "daceb039d9ec34d28f04654dd61aee57-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1fb40384666dc7f7a84f1ce594ec897b-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8daca6b5ae142ae30466752bd2b35416-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec24e61bf39d50af0f14099042614cb4-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6c8e86ac860d59b4069ee3545e427500-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92be514923cafadfc4668e43d5c706fe-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b8cbce976701cd34fe9c84ba156bde0-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949a64569aa43b4cf252545468908020-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b035269564864bf349799a21e77dffe0-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7b2cd5db02666854b1afe01a657493b3-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fcbd9e8332e19fa222ee8b72163d285e-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3bc1136adb61ca433bd9edbbaf46ec21-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9edfb891b1e7556fb4a0288f144a23ce-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "35b802329ec90dbbd6066915aee573d0-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18ea6df8cc294a9fa2c77e4beca11de8-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fbd5919aac0b6c6d447cb7c68ad3466-1756c811400", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b784a8bbe8361e16f9fb0850e4be13e7-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "24ebe25969caff02d1ed30c930375fac-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0bd55338d431b9a77f09d39bc35f0581-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cea3498732d848ef32e74c1041b53ed4-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ee28b172a45e876ce574b0f10af1f7f3-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Saint Petersburg", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5a4ebaef6892e4e175b030a99372e558-175675ab800", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e7f3657deeeb592a13856469bc70fbdc-175675ab800", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c305f8e3033613e75aa487da78b25679-175675ab800", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "85d42d6ee0f56a5cf395f3662c2b8b20-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dongguan", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4efbc87abacd67c8c277b6a4b40b8ec1-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9376a1e1299c86d3f86ca51f7a996386-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ab49d74c2195cc244ced715fc16c8a52-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec0be0e9d095bcd8954b8fc8b723e3a6-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3c400b43bdbbe8260df3ad63f0566df7-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9ce2c951c2b193385d7c6af68ce052ac-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "97c2c4224a3381384fc0f31887e58515-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d18609d59cb3fa3114b6617c1d21b30-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b6eb8f49c0cb4ae213f2a2891e69dd05-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ecbac99e3051fc101da2fcb839f22c4-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c87ace3b9f582c6a6142026c80f2de44-175675ab800", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8dc964679814f16b87a80ad8057aed56-17562345c00", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "972b67f576d408637b0b95645c1064f2-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f31359b1507ebc878b114be0c4340693-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a40d55e8682158b5fe9ee3df814992f-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a6504c43439304926fdd3d069e2ef68d-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "89b8d02c7fb2a8173a3f57db63b8563f-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8daca6b5ae142ae30466752bd2b35416-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec24e61bf39d50af0f14099042614cb4-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b8cbce976701cd34fe9c84ba156bde0-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "91e015d201942853df795325001b6d80-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b608a837d8ab8e0ed66bf07e9764dbe1-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7de661d9861b9ac1e831d11700a1141c-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c9e8b938f9cae1c1d279dc8e43cfc66-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6797447c653d013f164065814a7c118f-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5dc1689b38bc43c70827e7d5aecdfd70-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3bc1136adb61ca433bd9edbbaf46ec21-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c1fa392cee7cbe4f4f7c86cbacf6be1-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2d7db62bcdf6c4f795c81fa0cd335508-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cc8650e1f3d67e9a5932e5ac30b4372a-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5f08c6398d856d3a91106a76e88c2e5e-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7f154ec1bee1d4bb969892de593593ff-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bc64213351e927b853a0993f8dfc9918-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "66b2dbf86f02aa75aac3d9dc23a3b770-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ba3b4d053462288991d5290ac927cbc3-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "47a7b4001ce6d6c5d4e1f3b40fb5289a-1755d0e0000", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5bdaa81b8f7651b1b07999b646a935e2-1755d0e0000", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2583ff47fef9174e6d6bfe73415ad914-1755d0e0000", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b3cc8e8c8096176faaa45a3caba220ed-1755d0e0000", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bd1c20479d813400ba2851637b765da7-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Health \u0026 Personal Care" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9085e22188566397411479cfa40e89b0-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb188f866ed49d4d89a70701246b951b-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3a940d87ebf915d3e0253b80ab0b36fc-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a9ab6f7517b4013666b9469871b09b35-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d66d4ed0560e47fee1f9817db4b56f32-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18eaf33bbba3ed6d775cc4a0d16d944e-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "97c2c4224a3381384fc0f31887e58515-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d18609d59cb3fa3114b6617c1d21b30-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "02d105523c3f07ff242bd164f8954318-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2bfae328944eb2f64bc7868087fab62b-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c2d718db0a86ae4882f6e87003c44bfe-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1fb40384666dc7f7a84f1ce594ec897b-17557e7a400", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "403bb29b3d4c8892e9ab4a62fe20a3b6-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bec73c0c6527b472bc399778396ffcae-17557e7a400", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "30b9d9ab497ff8a7083552590906357e-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3525d86c180c1d7d89a802fd17c69f05-17557e7a400", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "662612ee0a7c8a372a24de8928efca3e-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1d4a0db59deb5d9a40b43c2055ad4f13-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c0050d33b584615ee4b0f1037c65256-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "048b37a0e73b499cfe66ff9c95aa0e64-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9be753eee03eda66bfd1c7b446485656-17557e7a400", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7824e648ce1802984f2061dfbbd23ea-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9281601f07f2a1c4a5810a6922f9b580-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "046fa582d3914440b1314cfc1e0fca50-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Baghdad", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ebf318e0e4306db2a621d6f2b7241ca-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bf90bc12db13484ac753ae30ff0c5f46-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ac546a4d575bf7bb8b4def7833f43c0b-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "efa75736d67e9512a80c8df6d09a99c5-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "46252a525ddeca5e9e3a0fda51444822-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9e783b640a6b9c70d364d7cc9a6d3ce0-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Boston", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0372930a21c6c3c52c072781f9a77418-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4920eedfbbf6be24e2ee84be9482635-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fc933947da15e930dc644d5fb6bc46fc-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b035269564864bf349799a21e77dffe0-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "665c1b3b24e7a2609745d894cbfa7106-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "14bd8f09ed94271ba17b96ab1bf58afc-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c9e8b938f9cae1c1d279dc8e43cfc66-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e326d44d21c9bbdce72d768bcbf3550e-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fcbd9e8332e19fa222ee8b72163d285e-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fed25b3e1ddc11aa0dd6c3aab7a24c9c-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d74c4938be8fe580568b175d7333510-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a13f011e68356c3f5f906cbc7e5576f-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a35fa6d35345d902ac521bbf0e86d0c-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c227572738985d17908d5a9f2e28f3b-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57befbebe056f98cc827d40238b6b13c-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65ef0c192e05694dda68268f0b7539f7-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abe8c30004a190f62da16dc69687bdc7-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "85abf6dfb7f6c53cb9cd51c105ee244f-1754d9aec00", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5513c9cc9b1383b393f91898eae052ca-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "63dcdfc3d8866824822afa1adb100483-1754d9aec00", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccc85aa306b5513d185143ece364595a-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "30b9d9ab497ff8a7083552590906357e-1754d9aec00", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e5d908a7ad50f43ae40c64ffbccd68c6-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a28029c66be5ab67af4b254ac8db0408-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a76b93ff2fefb8e9f6694adff4c9ec35-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dd6aa1faa3325dddd62a90134371c3c-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5d404170bffdf5687ebb66f90f21c29-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4755c1b80df8d1d8d48cd5fcb6d257ab-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fbd5919aac0b6c6d447cb7c68ad3466-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18eaf33bbba3ed6d775cc4a0d16d944e-1754d9aec00", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ebf318e0e4306db2a621d6f2b7241ca-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1754d9aec00", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b763da1c27792ce771cf696518d688d-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5c98bde4e4ac4de8ece986b924e90857-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Sports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69d0458302310372fb903ff516b11b20-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-1754d9aec00", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "47a7b4001ce6d6c5d4e1f3b40fb5289a-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "80f6b3f0c810b443e5dbc152b694c953-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "caac05a02f6d0abb15308249100cef27-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e27bb01f001b349c952a19e37bc95de2-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d7bbd91f38eb9594c7d2148c008f99af-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92d15b5a552ffaa3504c139dedf22d35-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c09adefafacc0b7b73ceb5e5872c4d59-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ecbac99e3051fc101da2fcb839f22c4-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5623c280cbe234c954d77a09e7df7fcd-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "32a34cc5804bc57330e31f9a2c9b9ae1-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Haora", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4a1f909da791b36b6445cb71985298c1-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "daceb039d9ec34d28f04654dd61aee57-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "714138a9952455a7a9a7490e9ba525ac-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-175434e3400", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8eefd604044a8a6ac061e5c73ed688a5-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0310a580f0f82fd1d79431ce2db7c942-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6329e5840678e9c528e361820431ffd6-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "06dad50382a2264442bf656cc7377fdb-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "768062de6710699938c779344ba81ca5-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "41fada3bd5703098b3e5fcb8cfffd3f3-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c1fa392cee7cbe4f4f7c86cbacf6be1-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "66b2dbf86f02aa75aac3d9dc23a3b770-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abc340e1efc77d3d337345807e141f2d-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "262ec4294e52eae35b1fee1701d8a0dd-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bf90bc12db13484ac753ae30ff0c5f46-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff5904c612641e0cd75065d354d611b9-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6de6c9b7e0c7f4016aee0a90970d6dc0-175434e3400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db1db3a183d1b84a72d25775e7ecc9c4-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "062c7bec4e0128381cb849772fd5a9a6-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a76465801352d36511551de8fcd55d93-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f232d8eac39c62cf0e48cd92d0fd50d-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4990731cd883d3e4ff27028da8a072f9-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9de960fd7c61cf68555cf2fbb572e80c-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "51ab81b89f1fc3b8915142b8f972660b-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e5d908a7ad50f43ae40c64ffbccd68c6-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d7e786a7205272dd67696e914a654290-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7031da656cbb533b5d25f5d76f310bd-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f78833e900db464feb76c526791cf5b3-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "210235b18d59a6690d390bcac9cd4959-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d967c1d61e5ac5777379803454e6546b-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7824e648ce1802984f2061dfbbd23ea-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d03b53bd5afe117f281212ed1d6710d7-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49084e61e37facc0d4da5627ff2ccf80-1753e27d800", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-1753e27d800", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a316e53f0f1577fe8b6d58cb27a0ddc1-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c6a68353541be3fad05d23c0b2984817-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65b8e804a6616e9b20b18d5c319097e1-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2008070396c99b543012a9ea4128eded-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "62862ac503b3e3b5506e3c1e5789a81b-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0372930a21c6c3c52c072781f9a77418-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ce558f5413a6436fefaee4c61781b475-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6bfd4291d3d10247373f65afb1cf659d-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0cc083ff7817c2f8283816c47122445b-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1912703ce86ae66759c249faac9daa6b-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49e8e1945fdaaf4cb8142752f430c34e-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "32a34cc5804bc57330e31f9a2c9b9ae1-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Haora", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "543a225f33615789dd1768b60b1e7f5a-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2aa9372170c1d5b9b4bddb6543964388-17539017c00", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "44e0154d023decf6fe986a3480d4a7c1-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d15f217fe2f68d198af3f3c896c4f9e-17533db2000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2014bd8c19ac0260659c15b8441e009b-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "973a64ca9137c8a54d942206ef1636b8-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9a8ee8f36290168e1a82b02af1a917e8-17533db2000", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "799fc2ae6d9c4ebaa7ca840df9e0cf8e-17533db2000", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a68fc9ad6770f6c566f1d7c608f8b7c9-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb919df0cd63d786bd20b8a2a99a4f3e-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fed25b3e1ddc11aa0dd6c3aab7a24c9c-17533db2000", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e0ce880adff5cf0bec36f17d23a6db73-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7f656d857762bdc219cdcc278e4ba355-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "24ebe25969caff02d1ed30c930375fac-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bc64213351e927b853a0993f8dfc9918-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "42e5cac660c3e95e282b1720c6d9cae1-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949c14a966f4e55f96d20f8724c021f0-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5d404170bffdf5687ebb66f90f21c29-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db1db3a183d1b84a72d25775e7ecc9c4-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d238cb5943ed03e1d2b2e8c369909ce0-1752eb4c400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2583ff47fef9174e6d6bfe73415ad914-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f715831bb5b06e3594204c90936c315-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92be514923cafadfc4668e43d5c706fe-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6544d18a0f40354116ddf70e0484d84a-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "caac05a02f6d0abb15308249100cef27-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6d5a78969542f6bcb4df780d79ce340a-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3c400b43bdbbe8260df3ad63f0566df7-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d03b53bd5afe117f281212ed1d6710d7-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c79c84bba5ad59b498e38e7297e38a3f-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c9c44905bd50d69b774b4d5ab051ca9e-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94a9e25fd34c38ac9b463f7410986147-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "963d71dfb68eb797ca6d517c290d562b-175298e6800", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a34f9a23d559659883ffa34fc84e5abc-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f2b0e820bb25c0996f2496a2ad278b83-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92d15b5a552ffaa3504c139dedf22d35-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5f08c6398d856d3a91106a76e88c2e5e-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e2b8a87c3b2c385d9988d08421ff9f0a-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7824e648ce1802984f2061dfbbd23ea-175298e6800", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c62a15cf3232c642502f0b291f5d9be1-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a316e53f0f1577fe8b6d58cb27a0ddc1-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e013159b00a4fe83bc9efd51838af8bb-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5623c280cbe234c954d77a09e7df7fcd-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6417638a2470f06c36f2dfd9880572f8-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b0239bec4f25225c204fab8df5fcf466-17524680c00", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7b1e364547804636568ad5bd65d30841-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6d5a78969542f6bcb4df780d79ce340a-17524680c00", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "210235b18d59a6690d390bcac9cd4959-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cd104996f5aa6d60a56779546653f49f-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "41fada3bd5703098b3e5fcb8cfffd3f3-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4a068c1693bace6be62c1963895f17d-17524680c00", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49e8e1945fdaaf4cb8142752f430c34e-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4920eedfbbf6be24e2ee84be9482635-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ecbbf0f5b30b5eeda90b023c6f4020c5-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "08d216a32c03f966c29c6846a73246d9-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a8e1b0344417b5151faf9d8b5cd33d19-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fc933947da15e930dc644d5fb6bc46fc-17524680c00", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abc340e1efc77d3d337345807e141f2d-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ba3b4d053462288991d5290ac927cbc3-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bbcf4fc26f84fdc0bfdbe72c989be32e-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69ae0116af8d40cada9b4d5ea88613c2-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Toronto", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1aea874fc0ca6e2fbe99df84a3165f85-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1642eb6d86861e418c7075b20f42b9e0-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3c82e25cae83b5ce2f5ad963663f0b69-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bad1c0edff4d90c6fef2e7401b1aeae4-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d5567068353525322144eeacd8160c29-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d1bdb009093816c7aba13dc887e5634e-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccc85aa306b5513d185143ece364595a-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9de960fd7c61cf68555cf2fbb572e80c-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccb829a409264234046436ed1c63ce6d-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6544d18a0f40354116ddf70e0484d84a-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c07bd4f8a8394dd3cc1b27af33661a18-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "35ab7ecd8a1311c7eef94ae46f9a78c7-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e74fb08f5e7a03e60e8d4bab964f704e-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0310a580f0f82fd1d79431ce2db7c942-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b23bb280dcb01a5659ee32528bdc8c8d-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6fc0430594b74d969c927e81023e243e-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "51ab81b89f1fc3b8915142b8f972660b-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d7e786a7205272dd67696e914a654290-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2f42af3f23e7ce77569be204afd2950f-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "be6d3a5715b22fa03d928a0ce78124bd-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec0be0e9d095bcd8954b8fc8b723e3a6-1751f41b000", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57f38467e4c1e068fd932c92b27f9dfc-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a35fa6d35345d902ac521bbf0e86d0c-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0cc083ff7817c2f8283816c47122445b-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4baac09e0a59339ab86243fbbfdaed81-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e2b8a87c3b2c385d9988d08421ff9f0a-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f164c1d85ac42aadc14010a7b0dbf3e-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65bcd9db8f2bc0295efc6d67603e3a37-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a5e0d7b7b834edea1d902de5696f911e-1751f41b000", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2aa9372170c1d5b9b4bddb6543964388-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a3f58ccfa616d196842e926e30ed8f85-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4a1f909da791b36b6445cb71985298c1-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65b8e804a6616e9b20b18d5c319097e1-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8a4069c27483585abb0a19d609c2c41f-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8cf4dafa01d26febdaec28fa6c759b96-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6fec1a9b7cf4993c0f824c3b8ee3b30c-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0793db3ee15abf3f3c3af73a8c82588c-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0e35351eda29cc9dec885eada9f16932-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6d2531f3e2da1ce53ace65badc8840ad-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e7f3657deeeb592a13856469bc70fbdc-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e1f38cdd488fc977261996450b5ffab8-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6a15150d65979308cbdfbec95f63c1a7-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8e15ec9459bdf2f60d0bee46ce0fd736-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Collectible Coins" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2bfae328944eb2f64bc7868087fab62b-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a23e9367df34fe9aca238b05cf38f870-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a94c88bdea3764e2ae74f5fcb9644aac-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1b80f88226ec17081028bf923d0a557a-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "17ded81a9a05c567b6fda9c8ec2a9cb6-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "60b521443aa9756098de077b0071f76f-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e27bb01f001b349c952a19e37bc95de2-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3bb0ecde26a4a8b57039523efad1275e-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c1fa392cee7cbe4f4f7c86cbacf6be1-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fbd5919aac0b6c6d447cb7c68ad3466-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7e7375c4abc92c23e6c3021a1af21377-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ecbac99e3051fc101da2fcb839f22c4-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fb28be52d159fcb38d1a2a8fcca0ee8-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2604518ebe5cdea23e42ba7c5c35fbd1-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69ae0116af8d40cada9b4d5ea88613c2-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Toronto", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949c14a966f4e55f96d20f8724c021f0-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f0b8fda3844b8d12d646fadbad496347-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d95dd01730e7f250ca27f3c68138956-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3983ddca15c011fc87fc082cac1fc335-17514f4f800", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2ae4172d8d55cc71d93fdc8f93047a7e-17514f4f800", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "63dcdfc3d8866824822afa1adb100483-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cae54dfab3037b4ef10e9da7fd11c477-17514f4f800", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "762c370409def3f2594d0c70d3e82af5-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-17514f4f800", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "de4b7fa7670b4d92ced24c5d74661fee-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d2f36f6de7adff71ef075007fe95d1ec-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1dc8a28cad53ad3e76fb29267ab20c9f-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "046fa582d3914440b1314cfc1e0fca50-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Baghdad", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65bcd9db8f2bc0295efc6d67603e3a37-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb0848c4b583385cf54a81a28a16e703-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-17514f4f800", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f5997bd6037bdeb00ab57b915e734558-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8cf4dafa01d26febdaec28fa6c759b96-1750fce9c00", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-1750fce9c00", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db4849464d41ca43fe334c4fb30d2747-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "62862ac503b3e3b5506e3c1e5789a81b-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94a9e25fd34c38ac9b463f7410986147-1750fce9c00", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d6412d44d1617931a0dc3b3369abe48f-1750fce9c00", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1e6d36d6a30c7c7b64e6715a959e9f5a-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "907e266784742ab2dea0c8b057b6f2d5-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a68fc9ad6770f6c566f1d7c608f8b7c9-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b0239bec4f25225c204fab8df5fcf466-1750fce9c00", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d67e28e39ec7a3cf7d401c41e899657-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8a3521ced3a70346eb3232890e364e37-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5f08c6398d856d3a91106a76e88c2e5e-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fc933947da15e930dc644d5fb6bc46fc-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2604518ebe5cdea23e42ba7c5c35fbd1-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ea6728225bfdaf0e7091d7c921146267-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9734c5465a6d0eaa098e7b7fdedb1d4c-1750aa84000", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f31359b1507ebc878b114be0c4340693-1750aa84000", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "faee45c26941382ad08db4b3a9076f33-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d1bdb009093816c7aba13dc887e5634e-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ac35caeb6b221d89b912f05cc50cdad6-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7db016d853d8201cf50ccc1d44f69ea-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94af0c7216b765a9f384bd525e45e042-1750aa84000", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c09adefafacc0b7b73ceb5e5872c4d59-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "28bcdc34db507e15c6c57644f4cbbc5f-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Collectible Coins" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69d0458302310372fb903ff516b11b20-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c2d718db0a86ae4882f6e87003c44bfe-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6f3df524a1428092c1a4e795d821b7a7-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6a15150d65979308cbdfbec95f63c1a7-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5513c9cc9b1383b393f91898eae052ca-1750581e400", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "963d71dfb68eb797ca6d517c290d562b-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5623c280cbe234c954d77a09e7df7fcd-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6544d18a0f40354116ddf70e0484d84a-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "12a45cd4b94c12a8649ea28c6163c4c6-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d67e28e39ec7a3cf7d401c41e899657-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4a068c1693bace6be62c1963895f17d-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "af20907756aee96d8b78ce4f28aff7f2-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff04ebbf317b45c5e32b5575a39b2f50-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a5e0d7b7b834edea1d902de5696f911e-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-1750581e400", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7aeb41547126fc9e80bccc9a0349b561-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cf0224a64a5c6c9f989ddcd85cc27e4a-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "135ee8ad95361f71ddd59f4d81c3ad65-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c48c719bf091db55ba7958caeb2d607e-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb66c9cb166bbcbcc0c3324cd43c8fb6-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "799fc2ae6d9c4ebaa7ca840df9e0cf8e-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "093fc352c4a54ae9feec82d3bd7789b7-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1d4a0db59deb5d9a40b43c2055ad4f13-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49e8e1945fdaaf4cb8142752f430c34e-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9f04f423f753c3e153a6b7f0b046bba7-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ecbbf0f5b30b5eeda90b023c6f4020c5-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b7210ac40572a67db8e55cf2fddccdf8-175005b8800", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7f154ec1bee1d4bb969892de593593ff-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a316e53f0f1577fe8b6d58cb27a0ddc1-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ba3b4d053462288991d5290ac927cbc3-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2573abb3293bd75bb5dce037c88809ed-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "32a34cc5804bc57330e31f9a2c9b9ae1-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Haora", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bf90bc12db13484ac753ae30ff0c5f46-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5a0692283edccf37ce825b3a8d475f4e-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "40351318b76c11fdec50b3927ef75e6c-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "80f6b3f0c810b443e5dbc152b694c953-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1e6d36d6a30c7c7b64e6715a959e9f5a-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7031da656cbb533b5d25f5d76f310bd-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9376a1e1299c86d3f86ca51f7a996386-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f78833e900db464feb76c526791cf5b3-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a4271137f594c263907ecea4c2e5f11d-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7520a58329ab63aa74aa29e620a7c968-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Miami", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f39a48fe629f49817202c028584fafad-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d66d4ed0560e47fee1f9817db4b56f32-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18ea6df8cc294a9fa2c77e4beca11de8-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "45d35f1b0c832adf6a8772f6fae408a0-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4bbf2cc6e84528f93324107af59bf03f-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Miami", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "45f75920766e9970e7b59f34537beaa3-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "155a6e0dc2623d9103d64c7a101ac8f2-174fb352c00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57f38467e4c1e068fd932c92b27f9dfc-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abc340e1efc77d3d337345807e141f2d-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b38c77d6da1814c0c8f8b4b730aa6eaf-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dd6aa1faa3325dddd62a90134371c3c-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6f68c4e08d369e6a32bc08631032170b-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7165e3b4a0c7906bdace60fa7803d438-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f07924e7f697c23ec47da669ccc6da1-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c61a8f36d798cba96f1c2f3fea73f5f-174fb352c00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bae7d0bc9f5d914627c20e7e8bfc48c6-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bd7b93d94a03c9198c35f78b349100dd-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e5c64d4c70044e83ec0bc535b2778899-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c2d718db0a86ae4882f6e87003c44bfe-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c7c1852ae73bb8b9758e99dfdaf9fc75-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f0b8fda3844b8d12d646fadbad496347-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db1db3a183d1b84a72d25775e7ecc9c4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ea6728225bfdaf0e7091d7c921146267-174f60ed000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "023307f94f77b246043b6463c7805495-174f60ed000", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "413f3b759eaa97e2fb39f46b08f5fab4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "63d4e3bafd7795efd1ed89a134d485e5-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8eefd604044a8a6ac061e5c73ed688a5-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c1950fdf88124ce07d795a142fd7edcb-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c9c44905bd50d69b774b4d5ab051ca9e-174f60ed000", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cd0596cc0b36b2d0729daa747dc5e76b-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "24ebe25969caff02d1ed30c930375fac-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bc165d098b469e95698e022649b605a5-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c09adefafacc0b7b73ceb5e5872c4d59-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "885035e2e39f3e215c38d6fdaa682a94-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c3b1690cc5c7a724cb728eb74c084a4c-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "01a40a4ff4d82d310f99e659fec18668-174f60ed000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c179257194501c624db50d5702672bc-174f60ed000", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e2b8a87c3b2c385d9988d08421ff9f0a-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69d0458302310372fb903ff516b11b20-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a5e0d7b7b834edea1d902de5696f911e-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b3e9393d37c796e675dc23f69f72e67c-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cea3498732d848ef32e74c1041b53ed4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2bba05489d718fb6f7ef6f00174c05fb-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a2a83ce3bcc351b957e116cf75c309c8-174f0e87400", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6fec1a9b7cf4993c0f824c3b8ee3b30c-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16975497a8d4bb0e31389f156cdc18a0-174f0e87400", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "62862ac503b3e3b5506e3c1e5789a81b-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ae4011b1f78a3d94f54dbeb5a79ed72-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c4ea4e9deb852735d8ed8fffc347a866-174f0e87400", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6919b39f1b422ab67e079d3b05f3abf0-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6bfd4291d3d10247373f65afb1cf659d-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49084e61e37facc0d4da5627ff2ccf80-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3d8d3a99625c12c968035f207845fde1-174f0e87400", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949c14a966f4e55f96d20f8724c021f0-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ab0afb4cd2484d4b7e628a492c8fa9dc-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b38c77d6da1814c0c8f8b4b730aa6eaf-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e736a09cc4ced095b7317e1021789295-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9734c5465a6d0eaa098e7b7fdedb1d4c-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bec73c0c6527b472bc399778396ffcae-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b5cfcc85c7fc6cd23a1ad5fb7d6bf6d-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a9e6760fb4bcc221207cd46ad28d2571-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bae7d0bc9f5d914627c20e7e8bfc48c6-174ebc21800", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "be035daae25f019637043c41cd1a0235-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "91e015d201942853df795325001b6d80-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7031da656cbb533b5d25f5d76f310bd-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "10c3d7f9ee8ee19a309763dd78f3cd6b-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7db016d853d8201cf50ccc1d44f69ea-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57f38467e4c1e068fd932c92b27f9dfc-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a35fa6d35345d902ac521bbf0e86d0c-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4cc6dca4124f366bf312ce724b5e64c2-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c3b1690cc5c7a724cb728eb74c084a4c-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff04ebbf317b45c5e32b5575a39b2f50-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f07924e7f697c23ec47da669ccc6da1-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "45f75920766e9970e7b59f34537beaa3-174ebc21800", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6de6c9b7e0c7f4016aee0a90970d6dc0-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "885035e2e39f3e215c38d6fdaa682a94-174ebc21800", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "acda82ef87fa45d07a90b09fd609f16d-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5bdaa81b8f7651b1b07999b646a935e2-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8cf4dafa01d26febdaec28fa6c759b96-174e69bbc00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d95dd01730e7f250ca27f3c68138956-174e69bbc00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a34f9a23d559659883ffa34fc84e5abc-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "498f12859c9a3d9d24ac8173b8faccfa-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d2f36f6de7adff71ef075007fe95d1ec-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b38c77d6da1814c0c8f8b4b730aa6eaf-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "42e5cac660c3e95e282b1720c6d9cae1-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "75044f1a2db2bee0ba0948ed9ccd3f0e-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2014bd8c19ac0260659c15b8441e009b-174e69bbc00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "20e97954b7aef346b7c225a3b73ca232-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c758c6ab717aa2f52ae7d888783c2909-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb2b731416527e874774829e0c7305ff-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "00494b4c369e4d4c827d5f18de321b9a-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "08308d350ed68527bc757f3b39bcd8b8-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Outdoors" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c57353af30496d64df2053f767a0104-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "762fc8705c6a0b74ae844495a7973d54-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8e94b799f4df837ab58ef95d1c5e6a55-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff04ebbf317b45c5e32b5575a39b2f50-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c179257194501c624db50d5702672bc-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "543a225f33615789dd1768b60b1e7f5a-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "740e015e72e8de201191854db904421b-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1390443276" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..638b3c87b5b7 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetIncidentsWithMinimumSetup(True)Async.json @@ -0,0 +1,9914 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/incidents/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "81", + "Content-Type": "application/json", + "traceparent": "00-c7231622ce484144a79fb51f8a3f760e-73f013fc79ac0343-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5c170e432427084919be0eec018bde3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "filter": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e56ae6ac-0ca0-4390-a04e-c10d9a729d54", + "Content-Length": "175772", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "240", + "x-request-id": "e56ae6ac-0ca0-4390-a04e-c10d9a729d54" + }, + "ResponseBody": { + "value": [ + { + "incidentId": "5a0692283edccf37ce825b3a8d475f4e-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a75b8b251c8e1b1aa6278190c4278a0b-17576cdcc00", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "47a7b4001ce6d6c5d4e1f3b40fb5289a-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "20e97954b7aef346b7c225a3b73ca232-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb2b731416527e874774829e0c7305ff-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "970a0828bb829b5991d220e2505406af-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0793db3ee15abf3f3c3af73a8c82588c-17576cdcc00", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f04b6aebfd63523ad88661620e429488-17576cdcc00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d6bc9e0969d57a2be70e401d6de9af3b-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0303341591aee35f83111ec85ccac10e-17576cdcc00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "aa0af255802924c17a9b9f1a609feb14-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f31359b1507ebc878b114be0c4340693-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f232d8eac39c62cf0e48cd92d0fd50d-17576cdcc00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1642eb6d86861e418c7075b20f42b9e0-17576cdcc00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "46252a525ddeca5e9e3a0fda51444822-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "690e525f5df215b10dda05c85e7a28dc-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "30b9d9ab497ff8a7083552590906357e-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "413f3b759eaa97e2fb39f46b08f5fab4-17576cdcc00", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a0e36095936a2a5cfcce2bf4d048bda8-17576cdcc00", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccc85aa306b5513d185143ece364595a-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "768062de6710699938c779344ba81ca5-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f0b8fda3844b8d12d646fadbad496347-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "39545810eabd039e3c5bca795889e4d5-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "323c79b4e6fc7e6aef0a75852c909fde-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c87ace3b9f582c6a6142026c80f2de44-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "61294d00e5ffa5c9c0d994bc2e2d2ab6-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f88c5b16847b720dbef3c559e5b7993-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b669a37ec9eee5546458a10b039609f8-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5d404170bffdf5687ebb66f90f21c29-17576cdcc00", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d67e28e39ec7a3cf7d401c41e899657-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b7210ac40572a67db8e55cf2fddccdf8-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94ca56bbe7e5b9947ffe497524b0696e-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c6a68353541be3fad05d23c0b2984817-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-17576cdcc00", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "596c3ea953875e9e69bfe44b2f9c6d9c-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "944152ebe0508815db8e79059477eab6-17576cdcc00", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "dd1566e6ab95777eab6d996389dba73d-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e3251d42b275d8b4778dac5113edaaf2-17576cdcc00", + "startTime": "2020-10-30T00:00:00Z", + "lastTime": "2020-10-30T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "00494b4c369e4d4c827d5f18de321b9a-17571a77000", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5091ee44c96fe998011057f811ac3c2a-17571a77000", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6187863b009d2b8fa2e00c9d57d14abc-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "135ee8ad95361f71ddd59f4d81c3ad65-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "714138a9952455a7a9a7490e9ba525ac-17571a77000", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b8d5a86a1cd082071659edeb2c85df3-17571a77000", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "740e015e72e8de201191854db904421b-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "10fdea62106e7077de0386bd88dc7bfc-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bbcf4fc26f84fdc0bfdbe72c989be32e-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b66adf2460017911222816d9d78489f-17571a77000", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cd7de6b5ee7ade6658fe5e109d660264-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a2a165c5e23b2053216f419f97ed7b03-17571a77000", + "startTime": "2020-10-29T00:00:00Z", + "lastTime": "2020-10-29T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "99882c19001b5ecafa572a79f162315e-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5c537a979fd369fcb94011243d9b8c63-1756c811400", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "daceb039d9ec34d28f04654dd61aee57-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1fb40384666dc7f7a84f1ce594ec897b-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8daca6b5ae142ae30466752bd2b35416-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec24e61bf39d50af0f14099042614cb4-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6c8e86ac860d59b4069ee3545e427500-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92be514923cafadfc4668e43d5c706fe-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b8cbce976701cd34fe9c84ba156bde0-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949a64569aa43b4cf252545468908020-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b035269564864bf349799a21e77dffe0-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7b2cd5db02666854b1afe01a657493b3-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fcbd9e8332e19fa222ee8b72163d285e-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3bc1136adb61ca433bd9edbbaf46ec21-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9edfb891b1e7556fb4a0288f144a23ce-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "35b802329ec90dbbd6066915aee573d0-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18ea6df8cc294a9fa2c77e4beca11de8-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-1756c811400", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fbd5919aac0b6c6d447cb7c68ad3466-1756c811400", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b784a8bbe8361e16f9fb0850e4be13e7-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "24ebe25969caff02d1ed30c930375fac-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0bd55338d431b9a77f09d39bc35f0581-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cea3498732d848ef32e74c1041b53ed4-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ee28b172a45e876ce574b0f10af1f7f3-1756c811400", + "startTime": "2020-10-28T00:00:00Z", + "lastTime": "2020-10-28T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Saint Petersburg", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5a4ebaef6892e4e175b030a99372e558-175675ab800", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e7f3657deeeb592a13856469bc70fbdc-175675ab800", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c305f8e3033613e75aa487da78b25679-175675ab800", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "85d42d6ee0f56a5cf395f3662c2b8b20-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dongguan", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4efbc87abacd67c8c277b6a4b40b8ec1-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9376a1e1299c86d3f86ca51f7a996386-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ab49d74c2195cc244ced715fc16c8a52-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec0be0e9d095bcd8954b8fc8b723e3a6-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3c400b43bdbbe8260df3ad63f0566df7-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9ce2c951c2b193385d7c6af68ce052ac-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "97c2c4224a3381384fc0f31887e58515-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d18609d59cb3fa3114b6617c1d21b30-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b6eb8f49c0cb4ae213f2a2891e69dd05-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ecbac99e3051fc101da2fcb839f22c4-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-175675ab800", + "startTime": "2020-10-27T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c87ace3b9f582c6a6142026c80f2de44-175675ab800", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-27T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8dc964679814f16b87a80ad8057aed56-17562345c00", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "972b67f576d408637b0b95645c1064f2-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f31359b1507ebc878b114be0c4340693-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a40d55e8682158b5fe9ee3df814992f-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a6504c43439304926fdd3d069e2ef68d-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "89b8d02c7fb2a8173a3f57db63b8563f-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8daca6b5ae142ae30466752bd2b35416-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec24e61bf39d50af0f14099042614cb4-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b8cbce976701cd34fe9c84ba156bde0-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "91e015d201942853df795325001b6d80-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b608a837d8ab8e0ed66bf07e9764dbe1-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7de661d9861b9ac1e831d11700a1141c-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c9e8b938f9cae1c1d279dc8e43cfc66-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6797447c653d013f164065814a7c118f-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5dc1689b38bc43c70827e7d5aecdfd70-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3bc1136adb61ca433bd9edbbaf46ec21-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c1fa392cee7cbe4f4f7c86cbacf6be1-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2d7db62bcdf6c4f795c81fa0cd335508-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cc8650e1f3d67e9a5932e5ac30b4372a-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5f08c6398d856d3a91106a76e88c2e5e-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7f154ec1bee1d4bb969892de593593ff-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bc64213351e927b853a0993f8dfc9918-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "66b2dbf86f02aa75aac3d9dc23a3b770-17562345c00", + "startTime": "2020-10-26T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ba3b4d053462288991d5290ac927cbc3-17562345c00", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-26T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "47a7b4001ce6d6c5d4e1f3b40fb5289a-1755d0e0000", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5bdaa81b8f7651b1b07999b646a935e2-1755d0e0000", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2583ff47fef9174e6d6bfe73415ad914-1755d0e0000", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b3cc8e8c8096176faaa45a3caba220ed-1755d0e0000", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bd1c20479d813400ba2851637b765da7-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Health \u0026 Personal Care" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9085e22188566397411479cfa40e89b0-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb188f866ed49d4d89a70701246b951b-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3a940d87ebf915d3e0253b80ab0b36fc-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a9ab6f7517b4013666b9469871b09b35-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d66d4ed0560e47fee1f9817db4b56f32-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18eaf33bbba3ed6d775cc4a0d16d944e-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "97c2c4224a3381384fc0f31887e58515-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d18609d59cb3fa3114b6617c1d21b30-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "02d105523c3f07ff242bd164f8954318-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2bfae328944eb2f64bc7868087fab62b-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c2d718db0a86ae4882f6e87003c44bfe-1755d0e0000", + "startTime": "2020-10-25T00:00:00Z", + "lastTime": "2020-10-25T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1fb40384666dc7f7a84f1ce594ec897b-17557e7a400", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "403bb29b3d4c8892e9ab4a62fe20a3b6-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bec73c0c6527b472bc399778396ffcae-17557e7a400", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "30b9d9ab497ff8a7083552590906357e-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3525d86c180c1d7d89a802fd17c69f05-17557e7a400", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Saint Petersburg", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "662612ee0a7c8a372a24de8928efca3e-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1d4a0db59deb5d9a40b43c2055ad4f13-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c0050d33b584615ee4b0f1037c65256-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "048b37a0e73b499cfe66ff9c95aa0e64-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9be753eee03eda66bfd1c7b446485656-17557e7a400", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7824e648ce1802984f2061dfbbd23ea-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9281601f07f2a1c4a5810a6922f9b580-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "046fa582d3914440b1314cfc1e0fca50-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Baghdad", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ebf318e0e4306db2a621d6f2b7241ca-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bf90bc12db13484ac753ae30ff0c5f46-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-17557e7a400", + "startTime": "2020-10-24T00:00:00Z", + "lastTime": "2020-10-24T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ac546a4d575bf7bb8b4def7833f43c0b-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "efa75736d67e9512a80c8df6d09a99c5-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "46252a525ddeca5e9e3a0fda51444822-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9e783b640a6b9c70d364d7cc9a6d3ce0-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Boston", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0372930a21c6c3c52c072781f9a77418-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4920eedfbbf6be24e2ee84be9482635-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fc933947da15e930dc644d5fb6bc46fc-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b035269564864bf349799a21e77dffe0-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "665c1b3b24e7a2609745d894cbfa7106-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "14bd8f09ed94271ba17b96ab1bf58afc-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c9e8b938f9cae1c1d279dc8e43cfc66-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e326d44d21c9bbdce72d768bcbf3550e-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fcbd9e8332e19fa222ee8b72163d285e-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fed25b3e1ddc11aa0dd6c3aab7a24c9c-17552c14800", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d74c4938be8fe580568b175d7333510-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a13f011e68356c3f5f906cbc7e5576f-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a35fa6d35345d902ac521bbf0e86d0c-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c227572738985d17908d5a9f2e28f3b-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57befbebe056f98cc827d40238b6b13c-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65ef0c192e05694dda68268f0b7539f7-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abe8c30004a190f62da16dc69687bdc7-17552c14800", + "startTime": "2020-10-23T00:00:00Z", + "lastTime": "2020-10-23T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "85abf6dfb7f6c53cb9cd51c105ee244f-1754d9aec00", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5513c9cc9b1383b393f91898eae052ca-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "63dcdfc3d8866824822afa1adb100483-1754d9aec00", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccc85aa306b5513d185143ece364595a-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "30b9d9ab497ff8a7083552590906357e-1754d9aec00", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e5d908a7ad50f43ae40c64ffbccd68c6-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a28029c66be5ab67af4b254ac8db0408-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a76b93ff2fefb8e9f6694adff4c9ec35-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dd6aa1faa3325dddd62a90134371c3c-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5d404170bffdf5687ebb66f90f21c29-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4755c1b80df8d1d8d48cd5fcb6d257ab-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fbd5919aac0b6c6d447cb7c68ad3466-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18eaf33bbba3ed6d775cc4a0d16d944e-1754d9aec00", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ebf318e0e4306db2a621d6f2b7241ca-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1754d9aec00", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b763da1c27792ce771cf696518d688d-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5c98bde4e4ac4de8ece986b924e90857-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Sports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69d0458302310372fb903ff516b11b20-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-1754d9aec00", + "startTime": "2020-10-22T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-1754d9aec00", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-22T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "47a7b4001ce6d6c5d4e1f3b40fb5289a-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "80f6b3f0c810b443e5dbc152b694c953-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "caac05a02f6d0abb15308249100cef27-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e27bb01f001b349c952a19e37bc95de2-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d7bbd91f38eb9594c7d2148c008f99af-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92d15b5a552ffaa3504c139dedf22d35-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c09adefafacc0b7b73ceb5e5872c4d59-17548749000", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ecbac99e3051fc101da2fcb839f22c4-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5623c280cbe234c954d77a09e7df7fcd-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "32a34cc5804bc57330e31f9a2c9b9ae1-17548749000", + "startTime": "2020-10-21T00:00:00Z", + "lastTime": "2020-10-21T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Haora", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4a1f909da791b36b6445cb71985298c1-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "daceb039d9ec34d28f04654dd61aee57-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "714138a9952455a7a9a7490e9ba525ac-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-175434e3400", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8eefd604044a8a6ac061e5c73ed688a5-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0310a580f0f82fd1d79431ce2db7c942-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6329e5840678e9c528e361820431ffd6-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "06dad50382a2264442bf656cc7377fdb-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "768062de6710699938c779344ba81ca5-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "41fada3bd5703098b3e5fcb8cfffd3f3-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c1fa392cee7cbe4f4f7c86cbacf6be1-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "66b2dbf86f02aa75aac3d9dc23a3b770-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Luanda", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abc340e1efc77d3d337345807e141f2d-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "262ec4294e52eae35b1fee1701d8a0dd-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bf90bc12db13484ac753ae30ff0c5f46-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-175434e3400", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff5904c612641e0cd75065d354d611b9-175434e3400", + "startTime": "2020-10-20T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6de6c9b7e0c7f4016aee0a90970d6dc0-175434e3400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-20T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db1db3a183d1b84a72d25775e7ecc9c4-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "062c7bec4e0128381cb849772fd5a9a6-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a76465801352d36511551de8fcd55d93-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f232d8eac39c62cf0e48cd92d0fd50d-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4990731cd883d3e4ff27028da8a072f9-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9de960fd7c61cf68555cf2fbb572e80c-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "51ab81b89f1fc3b8915142b8f972660b-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e5d908a7ad50f43ae40c64ffbccd68c6-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d7e786a7205272dd67696e914a654290-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7031da656cbb533b5d25f5d76f310bd-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f78833e900db464feb76c526791cf5b3-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "210235b18d59a6690d390bcac9cd4959-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d967c1d61e5ac5777379803454e6546b-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7824e648ce1802984f2061dfbbd23ea-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d03b53bd5afe117f281212ed1d6710d7-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49084e61e37facc0d4da5627ff2ccf80-1753e27d800", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-1753e27d800", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a316e53f0f1577fe8b6d58cb27a0ddc1-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c6a68353541be3fad05d23c0b2984817-1753e27d800", + "startTime": "2020-10-19T00:00:00Z", + "lastTime": "2020-10-19T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65b8e804a6616e9b20b18d5c319097e1-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2008070396c99b543012a9ea4128eded-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "62862ac503b3e3b5506e3c1e5789a81b-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0372930a21c6c3c52c072781f9a77418-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ce558f5413a6436fefaee4c61781b475-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6bfd4291d3d10247373f65afb1cf659d-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0cc083ff7817c2f8283816c47122445b-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1912703ce86ae66759c249faac9daa6b-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49e8e1945fdaaf4cb8142752f430c34e-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "32a34cc5804bc57330e31f9a2c9b9ae1-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Haora", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "543a225f33615789dd1768b60b1e7f5a-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2aa9372170c1d5b9b4bddb6543964388-17539017c00", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-17539017c00", + "startTime": "2020-10-18T00:00:00Z", + "lastTime": "2020-10-18T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "44e0154d023decf6fe986a3480d4a7c1-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d15f217fe2f68d198af3f3c896c4f9e-17533db2000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2014bd8c19ac0260659c15b8441e009b-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "973a64ca9137c8a54d942206ef1636b8-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9a8ee8f36290168e1a82b02af1a917e8-17533db2000", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "799fc2ae6d9c4ebaa7ca840df9e0cf8e-17533db2000", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a68fc9ad6770f6c566f1d7c608f8b7c9-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb919df0cd63d786bd20b8a2a99a4f3e-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fed25b3e1ddc11aa0dd6c3aab7a24c9c-17533db2000", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e0ce880adff5cf0bec36f17d23a6db73-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7f656d857762bdc219cdcc278e4ba355-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "24ebe25969caff02d1ed30c930375fac-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bc64213351e927b853a0993f8dfc9918-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "42e5cac660c3e95e282b1720c6d9cae1-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949c14a966f4e55f96d20f8724c021f0-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5d404170bffdf5687ebb66f90f21c29-17533db2000", + "startTime": "2020-10-17T00:00:00Z", + "lastTime": "2020-10-17T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db1db3a183d1b84a72d25775e7ecc9c4-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d238cb5943ed03e1d2b2e8c369909ce0-1752eb4c400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2583ff47fef9174e6d6bfe73415ad914-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f715831bb5b06e3594204c90936c315-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92be514923cafadfc4668e43d5c706fe-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6544d18a0f40354116ddf70e0484d84a-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "caac05a02f6d0abb15308249100cef27-1752eb4c400", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6d5a78969542f6bcb4df780d79ce340a-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3c400b43bdbbe8260df3ad63f0566df7-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d03b53bd5afe117f281212ed1d6710d7-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c79c84bba5ad59b498e38e7297e38a3f-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c9c44905bd50d69b774b4d5ab051ca9e-1752eb4c400", + "startTime": "2020-10-16T00:00:00Z", + "lastTime": "2020-10-16T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94a9e25fd34c38ac9b463f7410986147-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "963d71dfb68eb797ca6d517c290d562b-175298e6800", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a34f9a23d559659883ffa34fc84e5abc-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f2b0e820bb25c0996f2496a2ad278b83-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92d15b5a552ffaa3504c139dedf22d35-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5f08c6398d856d3a91106a76e88c2e5e-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e2b8a87c3b2c385d9988d08421ff9f0a-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7824e648ce1802984f2061dfbbd23ea-175298e6800", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c62a15cf3232c642502f0b291f5d9be1-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a316e53f0f1577fe8b6d58cb27a0ddc1-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-175298e6800", + "startTime": "2020-10-15T00:00:00Z", + "lastTime": "2020-10-15T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e013159b00a4fe83bc9efd51838af8bb-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5623c280cbe234c954d77a09e7df7fcd-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6417638a2470f06c36f2dfd9880572f8-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b0239bec4f25225c204fab8df5fcf466-17524680c00", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7b1e364547804636568ad5bd65d30841-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6d5a78969542f6bcb4df780d79ce340a-17524680c00", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "210235b18d59a6690d390bcac9cd4959-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cd104996f5aa6d60a56779546653f49f-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "41fada3bd5703098b3e5fcb8cfffd3f3-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4a068c1693bace6be62c1963895f17d-17524680c00", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49e8e1945fdaaf4cb8142752f430c34e-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4920eedfbbf6be24e2ee84be9482635-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ecbbf0f5b30b5eeda90b023c6f4020c5-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "08d216a32c03f966c29c6846a73246d9-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a8e1b0344417b5151faf9d8b5cd33d19-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fc933947da15e930dc644d5fb6bc46fc-17524680c00", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dfaa266fcd69f2019345aee741a23a4-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abc340e1efc77d3d337345807e141f2d-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ba3b4d053462288991d5290ac927cbc3-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bbcf4fc26f84fdc0bfdbe72c989be32e-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "15ee0a88ee90d2b7580b07acac9b5f1b-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69ae0116af8d40cada9b4d5ea88613c2-17524680c00", + "startTime": "2020-10-14T00:00:00Z", + "lastTime": "2020-10-14T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Toronto", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1aea874fc0ca6e2fbe99df84a3165f85-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1642eb6d86861e418c7075b20f42b9e0-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3c82e25cae83b5ce2f5ad963663f0b69-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Miami", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bad1c0edff4d90c6fef2e7401b1aeae4-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d5567068353525322144eeacd8160c29-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d1bdb009093816c7aba13dc887e5634e-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccc85aa306b5513d185143ece364595a-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9de960fd7c61cf68555cf2fbb572e80c-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ccb829a409264234046436ed1c63ce6d-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6544d18a0f40354116ddf70e0484d84a-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c07bd4f8a8394dd3cc1b27af33661a18-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "35ab7ecd8a1311c7eef94ae46f9a78c7-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e74fb08f5e7a03e60e8d4bab964f704e-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0310a580f0f82fd1d79431ce2db7c942-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b23bb280dcb01a5659ee32528bdc8c8d-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6fc0430594b74d969c927e81023e243e-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "51ab81b89f1fc3b8915142b8f972660b-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d7e786a7205272dd67696e914a654290-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2f42af3f23e7ce77569be204afd2950f-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "be6d3a5715b22fa03d928a0ce78124bd-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ec0be0e9d095bcd8954b8fc8b723e3a6-1751f41b000", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57f38467e4c1e068fd932c92b27f9dfc-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a35fa6d35345d902ac521bbf0e86d0c-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0cc083ff7817c2f8283816c47122445b-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4baac09e0a59339ab86243fbbfdaed81-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e2b8a87c3b2c385d9988d08421ff9f0a-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f164c1d85ac42aadc14010a7b0dbf3e-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65bcd9db8f2bc0295efc6d67603e3a37-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a5e0d7b7b834edea1d902de5696f911e-1751f41b000", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2aa9372170c1d5b9b4bddb6543964388-1751f41b000", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2b03e492fd98f311dac5754867352e2f-1751f41b000", + "startTime": "2020-10-13T00:00:00Z", + "lastTime": "2020-10-13T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a3f58ccfa616d196842e926e30ed8f85-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4a1f909da791b36b6445cb71985298c1-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65b8e804a6616e9b20b18d5c319097e1-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "New York", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8a4069c27483585abb0a19d609c2c41f-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8cf4dafa01d26febdaec28fa6c759b96-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6fec1a9b7cf4993c0f824c3b8ee3b30c-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0793db3ee15abf3f3c3af73a8c82588c-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0e35351eda29cc9dec885eada9f16932-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6d2531f3e2da1ce53ace65badc8840ad-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e7f3657deeeb592a13856469bc70fbdc-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e1f38cdd488fc977261996450b5ffab8-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6a15150d65979308cbdfbec95f63c1a7-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8e15ec9459bdf2f60d0bee46ce0fd736-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Collectible Coins" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2bfae328944eb2f64bc7868087fab62b-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenyang", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a23e9367df34fe9aca238b05cf38f870-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a94c88bdea3764e2ae74f5fcb9644aac-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1b80f88226ec17081028bf923d0a557a-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "17ded81a9a05c567b6fda9c8ec2a9cb6-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "60b521443aa9756098de077b0071f76f-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e27bb01f001b349c952a19e37bc95de2-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3bb0ecde26a4a8b57039523efad1275e-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9c1fa392cee7cbe4f4f7c86cbacf6be1-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fbd5919aac0b6c6d447cb7c68ad3466-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7e7375c4abc92c23e6c3021a1af21377-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1ecbac99e3051fc101da2fcb839f22c4-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3fb28be52d159fcb38d1a2a8fcca0ee8-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2604518ebe5cdea23e42ba7c5c35fbd1-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1751a1b5400", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69ae0116af8d40cada9b4d5ea88613c2-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Toronto", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949c14a966f4e55f96d20f8724c021f0-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f0b8fda3844b8d12d646fadbad496347-1751a1b5400", + "startTime": "2020-10-12T00:00:00Z", + "lastTime": "2020-10-12T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d95dd01730e7f250ca27f3c68138956-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3983ddca15c011fc87fc082cac1fc335-17514f4f800", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2ae4172d8d55cc71d93fdc8f93047a7e-17514f4f800", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "63dcdfc3d8866824822afa1adb100483-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cae54dfab3037b4ef10e9da7fd11c477-17514f4f800", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "762c370409def3f2594d0c70d3e82af5-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "0f099f2089162cab683d305ad1a9cba8-17514f4f800", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "de4b7fa7670b4d92ced24c5d74661fee-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d2f36f6de7adff71ef075007fe95d1ec-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1dc8a28cad53ad3e76fb29267ab20c9f-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "046fa582d3914440b1314cfc1e0fca50-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Baghdad", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "65bcd9db8f2bc0295efc6d67603e3a37-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb0848c4b583385cf54a81a28a16e703-17514f4f800", + "startTime": "2020-10-11T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-17514f4f800", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-11T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f5997bd6037bdeb00ab57b915e734558-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8cf4dafa01d26febdaec28fa6c759b96-1750fce9c00", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-1750fce9c00", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db4849464d41ca43fe334c4fb30d2747-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "62862ac503b3e3b5506e3c1e5789a81b-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94a9e25fd34c38ac9b463f7410986147-1750fce9c00", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d6412d44d1617931a0dc3b3369abe48f-1750fce9c00", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1e6d36d6a30c7c7b64e6715a959e9f5a-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "907e266784742ab2dea0c8b057b6f2d5-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a68fc9ad6770f6c566f1d7c608f8b7c9-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b0239bec4f25225c204fab8df5fcf466-1750fce9c00", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d67e28e39ec7a3cf7d401c41e899657-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8a3521ced3a70346eb3232890e364e37-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tokyo", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5f08c6398d856d3a91106a76e88c2e5e-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fc933947da15e930dc644d5fb6bc46fc-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2604518ebe5cdea23e42ba7c5c35fbd1-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-1750fce9c00", + "startTime": "2020-10-10T00:00:00Z", + "lastTime": "2020-10-10T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ea6728225bfdaf0e7091d7c921146267-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9734c5465a6d0eaa098e7b7fdedb1d4c-1750aa84000", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f31359b1507ebc878b114be0c4340693-1750aa84000", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "faee45c26941382ad08db4b3a9076f33-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d1bdb009093816c7aba13dc887e5634e-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Philadelphia", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ac35caeb6b221d89b912f05cc50cdad6-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7db016d853d8201cf50ccc1d44f69ea-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "94af0c7216b765a9f384bd525e45e042-1750aa84000", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c09adefafacc0b7b73ceb5e5872c4d59-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "28bcdc34db507e15c6c57644f4cbbc5f-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Collectible Coins" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69d0458302310372fb903ff516b11b20-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c2d718db0a86ae4882f6e87003c44bfe-1750aa84000", + "startTime": "2020-10-09T00:00:00Z", + "lastTime": "2020-10-09T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6f3df524a1428092c1a4e795d821b7a7-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6a15150d65979308cbdfbec95f63c1a7-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5513c9cc9b1383b393f91898eae052ca-1750581e400", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "963d71dfb68eb797ca6d517c290d562b-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "079d28112f2ac9dea16b668a3255c49a-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Ho Chi Minh City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5623c280cbe234c954d77a09e7df7fcd-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Barcelona", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6544d18a0f40354116ddf70e0484d84a-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "12a45cd4b94c12a8649ea28c6163c4c6-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5d67e28e39ec7a3cf7d401c41e899657-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b4a068c1693bace6be62c1963895f17d-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "af20907756aee96d8b78ce4f28aff7f2-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff04ebbf317b45c5e32b5575a39b2f50-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "456063a2f5dcffb43f783dd15e640a63-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guadalajara", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a5e0d7b7b834edea1d902de5696f911e-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e239e64e65af425c1f0188b679487ca7-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-1750581e400", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-1750581e400", + "startTime": "2020-10-08T00:00:00Z", + "lastTime": "2020-10-08T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7aeb41547126fc9e80bccc9a0349b561-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cf0224a64a5c6c9f989ddcd85cc27e4a-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "135ee8ad95361f71ddd59f4d81c3ad65-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c48c719bf091db55ba7958caeb2d607e-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb66c9cb166bbcbcc0c3324cd43c8fb6-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "799fc2ae6d9c4ebaa7ca840df9e0cf8e-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "093fc352c4a54ae9feec82d3bd7789b7-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1d4a0db59deb5d9a40b43c2055ad4f13-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49e8e1945fdaaf4cb8142752f430c34e-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9f04f423f753c3e153a6b7f0b046bba7-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Sao Paulo", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ecbbf0f5b30b5eeda90b023c6f4020c5-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b7210ac40572a67db8e55cf2fddccdf8-175005b8800", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7f154ec1bee1d4bb969892de593593ff-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "363f19badfc8f7b5b58943ea5632245f-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Washington", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a316e53f0f1577fe8b6d58cb27a0ddc1-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ba3b4d053462288991d5290ac927cbc3-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2573abb3293bd75bb5dce037c88809ed-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "32a34cc5804bc57330e31f9a2c9b9ae1-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Haora", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bf90bc12db13484ac753ae30ff0c5f46-175005b8800", + "startTime": "2020-10-07T00:00:00Z", + "lastTime": "2020-10-07T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5a0692283edccf37ce825b3a8d475f4e-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "40351318b76c11fdec50b3927ef75e6c-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "80f6b3f0c810b443e5dbc152b694c953-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1e6d36d6a30c7c7b64e6715a959e9f5a-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7031da656cbb533b5d25f5d76f310bd-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9376a1e1299c86d3f86ca51f7a996386-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f78833e900db464feb76c526791cf5b3-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c852d9b2a7a8c3ee5c31c7076da84ae-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a4271137f594c263907ecea4c2e5f11d-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7520a58329ab63aa74aa29e620a7c968-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Miami", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f39a48fe629f49817202c028584fafad-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ca46ba86922052929ece3d4c8794c442-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d66d4ed0560e47fee1f9817db4b56f32-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "18ea6df8cc294a9fa2c77e4beca11de8-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "Software \u0026 Computer Games" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "45d35f1b0c832adf6a8772f6fae408a0-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tianjin", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4bbf2cc6e84528f93324107af59bf03f-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Miami", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "45f75920766e9970e7b59f34537beaa3-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "155a6e0dc2623d9103d64c7a101ac8f2-174fb352c00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bogota", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57f38467e4c1e068fd932c92b27f9dfc-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "abc340e1efc77d3d337345807e141f2d-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b38c77d6da1814c0c8f8b4b730aa6eaf-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2dd6aa1faa3325dddd62a90134371c3c-174fb352c00", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6f68c4e08d369e6a32bc08631032170b-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7165e3b4a0c7906bdace60fa7803d438-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db7dfc3962dcdd87945dc48703d7457d-174fb352c00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f07924e7f697c23ec47da669ccc6da1-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4c61a8f36d798cba96f1c2f3fea73f5f-174fb352c00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Paris", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bae7d0bc9f5d914627c20e7e8bfc48c6-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bd7b93d94a03c9198c35f78b349100dd-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e5c64d4c70044e83ec0bc535b2778899-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Camera \u0026 Photo" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c2d718db0a86ae4882f6e87003c44bfe-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c7c1852ae73bb8b9758e99dfdaf9fc75-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Personal Computers" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "f0b8fda3844b8d12d646fadbad496347-174fb352c00", + "startTime": "2020-10-06T00:00:00Z", + "lastTime": "2020-10-06T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "db1db3a183d1b84a72d25775e7ecc9c4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ea6728225bfdaf0e7091d7c921146267-174f60ed000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Cell Phones" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "023307f94f77b246043b6463c7805495-174f60ed000", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lagos", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "413f3b759eaa97e2fb39f46b08f5fab4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "1cf12bfc83e7a1e16b9b6b6614b664b4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "fbd95340a8ed1a3d4d1cafe9f452db04-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "63d4e3bafd7795efd1ed89a134d485e5-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8eefd604044a8a6ac061e5c73ed688a5-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c1950fdf88124ce07d795a142fd7edcb-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kolkata", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "734641c29c6a3cc0383b9309d410e471-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c9c44905bd50d69b774b4d5ab051ca9e-174f60ed000", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cd0596cc0b36b2d0729daa747dc5e76b-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hong Kong", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "24ebe25969caff02d1ed30c930375fac-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bc165d098b469e95698e022649b605a5-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Taipei", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c09adefafacc0b7b73ceb5e5872c4d59-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "885035e2e39f3e215c38d6fdaa682a94-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c3b1690cc5c7a724cb728eb74c084a4c-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "01a40a4ff4d82d310f99e659fec18668-174f60ed000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c179257194501c624db50d5702672bc-174f60ed000", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e2b8a87c3b2c385d9988d08421ff9f0a-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4e6cbd5cd047a731c0aef5662fe30895-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Delhi", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "69d0458302310372fb903ff516b11b20-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a5e0d7b7b834edea1d902de5696f911e-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b3e9393d37c796e675dc23f69f72e67c-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "cea3498732d848ef32e74c1041b53ed4-174f60ed000", + "startTime": "2020-10-05T00:00:00Z", + "lastTime": "2020-10-05T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2bba05489d718fb6f7ef6f00174c05fb-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "High", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a2a83ce3bcc351b957e116cf75c309c8-174f0e87400", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6fec1a9b7cf4993c0f824c3b8ee3b30c-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16975497a8d4bb0e31389f156cdc18a0-174f0e87400", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "62862ac503b3e3b5506e3c1e5789a81b-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ae4011b1f78a3d94f54dbeb5a79ed72-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dallas", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c4ea4e9deb852735d8ed8fffc347a866-174f0e87400", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Tehran", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6919b39f1b422ab67e079d3b05f3abf0-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chongqing", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "16a7cb1f5508e763d1e08bb95d1fe014-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6bfd4291d3d10247373f65afb1cf659d-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "49084e61e37facc0d4da5627ff2ccf80-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "Baby Products (Excluding Apparel)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3d8d3a99625c12c968035f207845fde1-174f0e87400", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Belo Horizonte", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "949c14a966f4e55f96d20f8724c021f0-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ab0afb4cd2484d4b7e628a492c8fa9dc-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b38c77d6da1814c0c8f8b4b730aa6eaf-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e044d32da4e942266393b2e0ff1ca88b-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ade81d2ff75a21ac9f496133d1484c89-174f0e87400", + "startTime": "2020-10-04T00:00:00Z", + "lastTime": "2020-10-04T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Rio de Janeiro", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "e736a09cc4ced095b7317e1021789295-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9734c5465a6d0eaa098e7b7fdedb1d4c-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Jakarta", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "414e9b41841112c9dcd625c8adbd66ad-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Guangzhou", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bec73c0c6527b472bc399778396ffcae-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3b5cfcc85c7fc6cd23a1ad5fb7d6bf6d-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a9e6760fb4bcc221207cd46ad28d2571-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bae7d0bc9f5d914627c20e7e8bfc48c6-174ebc21800", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "be035daae25f019637043c41cd1a0235-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Office Products" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "91e015d201942853df795325001b6d80-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7031da656cbb533b5d25f5d76f310bd-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "10c3d7f9ee8ee19a309763dd78f3cd6b-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Beijing", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7ad534b2bf090f766b6555e0d2cf5d3a-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "9b0a0b980a538fbc6130f861e582c705-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Wuhan", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a7db016d853d8201cf50ccc1d44f69ea-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Karachi", + "category": "Jewelry" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57f38467e4c1e068fd932c92b27f9dfc-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lima", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2a35fa6d35345d902ac521bbf0e86d0c-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "4cc6dca4124f366bf312ce724b5e64c2-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Dhaka", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c3b1690cc5c7a724cb728eb74c084a4c-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Houston", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff04ebbf317b45c5e32b5575a39b2f50-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "3f07924e7f697c23ec47da669ccc6da1-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "45f75920766e9970e7b59f34537beaa3-174ebc21800", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Lahore", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "6de6c9b7e0c7f4016aee0a90970d6dc0-174ebc21800", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "885035e2e39f3e215c38d6fdaa682a94-174ebc21800", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "acda82ef87fa45d07a90b09fd609f16d-174ebc21800", + "startTime": "2020-10-03T00:00:00Z", + "lastTime": "2020-10-03T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Santiago", + "category": "Musical Instruments" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "5bdaa81b8f7651b1b07999b646a935e2-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Kinshasa", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8cf4dafa01d26febdaec28fa6c759b96-174e69bbc00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Seoul", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8d95dd01730e7f250ca27f3c68138956-174e69bbc00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "a34f9a23d559659883ffa34fc84e5abc-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2df3541c9f260b0bfff17b9b609d49f4-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Electronics (Accessories)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "498f12859c9a3d9d24ac8173b8faccfa-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "Device Accessories" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "d2f36f6de7adff71ef075007fe95d1ec-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b38c77d6da1814c0c8f8b4b730aa6eaf-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "26c99849d01c638a7a376ca480541e6f-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Singapore", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "42e5cac660c3e95e282b1720c6d9cae1-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shenzhen", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "57d804007cfbc4c6e53de62d0ad37bd4-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Manila", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "75044f1a2db2bee0ba0948ed9ccd3f0e-174e69bbc00", + "startTime": "2020-10-02T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Hyderabad", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "2014bd8c19ac0260659c15b8441e009b-174e69bbc00", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-02T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "20e97954b7aef346b7c225a3b73ca232-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mumbai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "c758c6ab717aa2f52ae7d888783c2909-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Moscow", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "bb2b731416527e874774829e0c7305ff-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Osaka", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "00494b4c369e4d4c827d5f18de321b9a-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Shanghai", + "category": "__SUM__" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "92130623458592523be8aafe51391d60-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Los Angeles", + "category": "Handmade" + } + }, + "property": { + "maxSeverity": "Medium", + "incidentStatus": "Active" + } + }, + { + "incidentId": "736eed64368bb6a372e855322a15a736-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Grocery \u0026 Gourmet Food" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "08308d350ed68527bc757f3b39bcd8b8-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "__SUM__", + "category": "Outdoors" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c57353af30496d64df2053f767a0104-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bangkok", + "category": "Industrial \u0026 Scientific" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "762fc8705c6a0b74ae844495a7973d54-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Home \u0026 Garden" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "8e94b799f4df837ab58ef95d1c5e6a55-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Bengaluru", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "eb2a54096ec6a1f978c40e4d1fa5f9e1-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "London", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "ff04ebbf317b45c5e32b5575a39b2f50-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Cairo", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "533c08e6a5360b5d97641eaca9a5c15e-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chicago", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "7c179257194501c624db50d5702672bc-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Chennai", + "category": "Electronics (Consumer)" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "b5466b5c733e26c2f04834145d2539c0-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Buenos Aires", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "543a225f33615789dd1768b60b1e7f5a-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Istanbul", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + }, + { + "incidentId": "740e015e72e8de201191854db904421b-174e1756000", + "startTime": "2020-10-01T00:00:00Z", + "lastTime": "2020-10-01T00:00:00Z", + "rootNode": { + "dimension": { + "city": "Mexico City", + "category": "Automotive \u0026 Powersports" + } + }, + "property": { + "maxSeverity": "Low", + "incidentStatus": "Active" + } + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "2112007125" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(False).json similarity index 94% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(False).json index 4dafcb76e257..0fad5040efa7 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(False).json @@ -8,9 +8,10 @@ "Content-Length": "187", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0da57ef1f97bde4a82442b1e219484f6-288bd058e4e40f46-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "0950f9a8c18e6fe4f3377ae6129b9623", + "x-ms-client-request-id": "6639609f282409f12f4e2e2a64e4dc59", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -33,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "156fd856-10f9-47aa-be12-b97f6afa3d1f", + "apim-request-id": "4bd3dc3a-0255-483b-9be8-3ddaeb35e96a", "Content-Length": "3089", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:35 GMT", + "Date": "Tue, 19 Jan 2021 17:42:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "208", - "x-request-id": "156fd856-10f9-47aa-be12-b97f6afa3d1f" + "x-envoy-upstream-service-time": "272", + "x-request-id": "4bd3dc3a-0255-483b-9be8-3ddaeb35e96a" }, "ResponseBody": { "value": [ @@ -300,6 +301,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "907853945" + "RandomSeed": "1025225745" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesDataAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(False)Async.json similarity index 94% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesDataAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(False)Async.json index 4c29d11d9063..a368e73ea6ae 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesDataAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "187", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-08cb88eee84e3948b7c16f588d2f053e-12f0785ef6658545-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "007de53483de606df182c849a5159835", + "x-ms-client-request-id": "9e05a31f518359a72525d25d66ac3b56", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -33,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0531848e-fdd9-4d80-8637-a394d313d275", + "apim-request-id": "32ae79c2-180c-4cd8-99b7-f2670a16222a", "Content-Length": "3089", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:39 GMT", + "Date": "Tue, 19 Jan 2021 17:42:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "261", - "x-request-id": "0531848e-fdd9-4d80-8637-a394d313d275" + "x-envoy-upstream-service-time": "209", + "x-request-id": "32ae79c2-180c-4cd8-99b7-f2670a16222a" }, "ResponseBody": { "value": [ @@ -300,6 +301,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "378704390" + "RandomSeed": "2008936427" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(True).json new file mode 100644 index 000000000000..85e5f40483d3 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(True).json @@ -0,0 +1,303 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/series/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "187", + "Content-Type": "application/json", + "traceparent": "00-4211a497a613694581442601507fac22-d68c8858b67afb42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c51c541ad7435173bdf03a9224a7adfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "series": [ + { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + { + "dimension": { + "city": "Koltaka", + "category": "__SUM__" + } + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ccce2dae-f36e-4970-9d06-556fc6b0c8fb", + "Content-Length": "3089", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159", + "x-request-id": "ccce2dae-f36e-4970-9d06-556fc6b0c8fb" + }, + "ResponseBody": { + "value": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "timestampList": [ + "2020-10-01T00:00:00Z", + "2020-10-02T00:00:00Z", + "2020-10-03T00:00:00Z", + "2020-10-04T00:00:00Z", + "2020-10-05T00:00:00Z", + "2020-10-06T00:00:00Z", + "2020-10-07T00:00:00Z", + "2020-10-08T00:00:00Z", + "2020-10-09T00:00:00Z", + "2020-10-10T00:00:00Z", + "2020-10-11T00:00:00Z", + "2020-10-12T00:00:00Z", + "2020-10-13T00:00:00Z", + "2020-10-14T00:00:00Z", + "2020-10-15T00:00:00Z", + "2020-10-16T00:00:00Z", + "2020-10-17T00:00:00Z", + "2020-10-18T00:00:00Z", + "2020-10-19T00:00:00Z", + "2020-10-20T00:00:00Z", + "2020-10-21T00:00:00Z", + "2020-10-22T00:00:00Z", + "2020-10-23T00:00:00Z", + "2020-10-24T00:00:00Z", + "2020-10-25T00:00:00Z", + "2020-10-26T00:00:00Z", + "2020-10-27T00:00:00Z", + "2020-10-28T00:00:00Z", + "2020-10-29T00:00:00Z", + "2020-10-30T00:00:00Z" + ], + "valueList": [ + 646400.8, + 591698.8, + 393672.8, + 461016.4, + 671330.0, + 663083.8, + 652174.0, + 652647.2, + 602663.2, + 405481.2, + 460825.6, + 648188.4, + 639784.2, + 629455.0, + 622654.2, + 575832.6, + 376714.8, + 423373.6, + 595968.4, + 591052.6, + 585573.4, + 591703.2, + 535243.2, + 385288.2, + 391302.2, + 527925.6, + 543222.8, + 545699.2, + 513455.6, + 503106.4 + ], + "isAnomalyList": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false, + false, + true, + true, + true, + true, + true, + true, + true, + true + ], + "periodList": [ + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7 + ], + "expectedValueList": [ + 639841.41659923911, + 593988.65694304474, + 406904.42575976794, + 468582.4306800373, + 651100.31689623953, + 653907.80749789369, + 649388.10475532978, + 650261.48521728278, + 598233.03672833683, + 405034.32113478496, + 464950.18477452273, + 644979.96202732914, + 642600.37326538528, + 628513.53523696074, + 624318.847227793, + 567354.0504453046, + 368844.75571440952, + 425882.59950280725, + 605028.02480125893, + 601921.3158975268, + 587514.03329893062, + 584109.19142256991, + 535764.72356415493, + 345875.75775733317, + 411264.18596229109, + 598760.19567730289, + 602399.09709896054, + 594737.42482575425, + 596967.90257180436, + 548623.43471338938 + ], + "lowerBoundaryList": [ + 639841.41659923911, + 591698.8, + 393672.8, + 461016.4, + 651100.31689623953, + 653907.80749789369, + 649388.10475532978, + 650261.48521728278, + 598233.03672833683, + 405034.32113478496, + 460825.6, + 644979.96202732914, + 639784.2, + 628513.53523696074, + 622654.2, + 567354.0504453046, + 368844.75571440952, + 423373.6, + 595968.4, + 601921.3158975268, + 585573.4, + 584109.19142256991, + 535764.72356415493, + 345875.75775733317, + 411264.18596229109, + 598760.19567730289, + 602399.09709896054, + 594737.42482575425, + 596967.90257180436, + 548623.43471338938 + ], + "upperBoundaryList": [ + 646400.8, + 593988.65694304474, + 406904.42575976794, + 468582.4306800373, + 671330.0, + 663083.8, + 652174.0, + 652647.2, + 602663.2, + 405481.2, + 464950.18477452273, + 648188.4, + 642600.37326538528, + 629455.0, + 624318.847227793, + 575832.6, + 376714.8, + 425882.59950280725, + 605028.02480125893, + 601921.3158975268, + 587514.03329893062, + 591703.2, + 535764.72356415493, + 345875.75775733317, + 411264.18596229109, + 598760.19567730289, + 602399.09709896054, + 594737.42482575425, + 596967.90257180436, + 548623.43471338938 + ] + }, + { + "series": { + "dimension": { + "city": "Koltaka", + "category": "__SUM__" + } + }, + "timestampList": [], + "valueList": [], + "isAnomalyList": [], + "periodList": [], + "expectedValueList": [], + "lowerBoundaryList": [], + "upperBoundaryList": [] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1608313806" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(True)Async.json new file mode 100644 index 000000000000..e80d7e88a60f --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetMetricEnrichedSeriesData(True)Async.json @@ -0,0 +1,303 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/series/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "187", + "Content-Type": "application/json", + "traceparent": "00-ee9d58dc326fef4582388c99126ef10b-482632f7163bbb40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7a6779bf5eef6b461d3ef94f4adb15fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "series": [ + { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + { + "dimension": { + "city": "Koltaka", + "category": "__SUM__" + } + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b7e12c2-f1f3-49c5-92a1-aa56ed94f6b8", + "Content-Length": "3089", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131", + "x-request-id": "6b7e12c2-f1f3-49c5-92a1-aa56ed94f6b8" + }, + "ResponseBody": { + "value": [ + { + "series": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "timestampList": [ + "2020-10-01T00:00:00Z", + "2020-10-02T00:00:00Z", + "2020-10-03T00:00:00Z", + "2020-10-04T00:00:00Z", + "2020-10-05T00:00:00Z", + "2020-10-06T00:00:00Z", + "2020-10-07T00:00:00Z", + "2020-10-08T00:00:00Z", + "2020-10-09T00:00:00Z", + "2020-10-10T00:00:00Z", + "2020-10-11T00:00:00Z", + "2020-10-12T00:00:00Z", + "2020-10-13T00:00:00Z", + "2020-10-14T00:00:00Z", + "2020-10-15T00:00:00Z", + "2020-10-16T00:00:00Z", + "2020-10-17T00:00:00Z", + "2020-10-18T00:00:00Z", + "2020-10-19T00:00:00Z", + "2020-10-20T00:00:00Z", + "2020-10-21T00:00:00Z", + "2020-10-22T00:00:00Z", + "2020-10-23T00:00:00Z", + "2020-10-24T00:00:00Z", + "2020-10-25T00:00:00Z", + "2020-10-26T00:00:00Z", + "2020-10-27T00:00:00Z", + "2020-10-28T00:00:00Z", + "2020-10-29T00:00:00Z", + "2020-10-30T00:00:00Z" + ], + "valueList": [ + 646400.8, + 591698.8, + 393672.8, + 461016.4, + 671330.0, + 663083.8, + 652174.0, + 652647.2, + 602663.2, + 405481.2, + 460825.6, + 648188.4, + 639784.2, + 629455.0, + 622654.2, + 575832.6, + 376714.8, + 423373.6, + 595968.4, + 591052.6, + 585573.4, + 591703.2, + 535243.2, + 385288.2, + 391302.2, + 527925.6, + 543222.8, + 545699.2, + 513455.6, + 503106.4 + ], + "isAnomalyList": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false, + false, + true, + true, + true, + true, + true, + true, + true, + true + ], + "periodList": [ + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7, + 7 + ], + "expectedValueList": [ + 639841.41659923911, + 593988.65694304474, + 406904.42575976794, + 468582.4306800373, + 651100.31689623953, + 653907.80749789369, + 649388.10475532978, + 650261.48521728278, + 598233.03672833683, + 405034.32113478496, + 464950.18477452273, + 644979.96202732914, + 642600.37326538528, + 628513.53523696074, + 624318.847227793, + 567354.0504453046, + 368844.75571440952, + 425882.59950280725, + 605028.02480125893, + 601921.3158975268, + 587514.03329893062, + 584109.19142256991, + 535764.72356415493, + 345875.75775733317, + 411264.18596229109, + 598760.19567730289, + 602399.09709896054, + 594737.42482575425, + 596967.90257180436, + 548623.43471338938 + ], + "lowerBoundaryList": [ + 639841.41659923911, + 591698.8, + 393672.8, + 461016.4, + 651100.31689623953, + 653907.80749789369, + 649388.10475532978, + 650261.48521728278, + 598233.03672833683, + 405034.32113478496, + 460825.6, + 644979.96202732914, + 639784.2, + 628513.53523696074, + 622654.2, + 567354.0504453046, + 368844.75571440952, + 423373.6, + 595968.4, + 601921.3158975268, + 585573.4, + 584109.19142256991, + 535764.72356415493, + 345875.75775733317, + 411264.18596229109, + 598760.19567730289, + 602399.09709896054, + 594737.42482575425, + 596967.90257180436, + 548623.43471338938 + ], + "upperBoundaryList": [ + 646400.8, + 593988.65694304474, + 406904.42575976794, + 468582.4306800373, + 671330.0, + 663083.8, + 652174.0, + 652647.2, + 602663.2, + 405481.2, + 464950.18477452273, + 648188.4, + 642600.37326538528, + 629455.0, + 624318.847227793, + 575832.6, + 376714.8, + 425882.59950280725, + 605028.02480125893, + 601921.3158975268, + 587514.03329893062, + 591703.2, + 535764.72356415493, + 345875.75775733317, + 411264.18596229109, + 598760.19567730289, + 602399.09709896054, + 594737.42482575425, + 596967.90257180436, + 548623.43471338938 + ] + }, + { + "series": { + "dimension": { + "city": "Koltaka", + "category": "__SUM__" + } + }, + "timestampList": [], + "valueList": [], + "isAnomalyList": [], + "periodList": [], + "expectedValueList": [], + "lowerBoundaryList": [], + "upperBoundaryList": [] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1791234010" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(False).json similarity index 85% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(False).json index 669223612e79..9353e50cac79 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(False).json @@ -8,9 +8,10 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-990c595a8f4482408877099108ea7ffb-8fd475cfc2c4d24e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "35dce90b9ed4f2ecc24cc47b65d452a9", + "x-ms-client-request-id": "38a83e304094ff90ceb319601b84e4de", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,14 +21,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc9a47ab-c677-48d7-98ce-44738033d327", + "apim-request-id": "01b73c96-c7de-4ac1-ba05-9ec2e0b2adb6", "Content-Length": "692", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:39 GMT", + "Date": "Tue, 19 Jan 2021 17:42:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "305", - "x-request-id": "cc9a47ab-c677-48d7-98ce-44738033d327" + "x-envoy-upstream-service-time": "249", + "x-request-id": "01b73c96-c7de-4ac1-ba05-9ec2e0b2adb6" }, "ResponseBody": { "value": [ @@ -103,6 +104,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "184341703" + "RandomSeed": "210253401" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(False)Async.json similarity index 85% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(False)Async.json index cf187e08a8d3..c187fc080379 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-23b198edadc7104e8c2f60b908bf5820-d47ebe046a904c42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "fae2d52c62f73dc3a7638114c762e4f4", + "x-ms-client-request-id": "1b3201153b6a0425b654c9297dbf44bb", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,14 +21,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02fa128f-9c2a-4093-88fc-b4e33b4dc7a2", + "apim-request-id": "990bff87-ed6d-44b8-bd1e-8829877f1443", "Content-Length": "692", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:35 GMT", + "Date": "Tue, 19 Jan 2021 17:42:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "219", - "x-request-id": "02fa128f-9c2a-4093-88fc-b4e33b4dc7a2" + "x-envoy-upstream-service-time": "234", + "x-request-id": "990bff87-ed6d-44b8-bd1e-8829877f1443" }, "ResponseBody": { "value": [ @@ -103,6 +104,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "294335221" + "RandomSeed": "123767726" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(True).json new file mode 100644 index 000000000000..1e97ea56d3f1 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(True).json @@ -0,0 +1,106 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/anomalies/dimension/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "92", + "Content-Type": "application/json", + "traceparent": "00-e857918d38fe174897869ff74acce0ef-cceea62baf733d45-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "11b15dd584359f3249c01600a8fedb99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "dimensionName": "city" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4972faa8-c0fb-4408-83d8-7cda437890dc", + "Content-Length": "692", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124", + "x-request-id": "4972faa8-c0fb-4408-83d8-7cda437890dc" + }, + "ResponseBody": { + "value": [ + "__SUM__", + "Karachi", + "Los Angeles", + "Delhi", + "Manila", + "Seoul", + "Mumbai", + "Beijing", + "New York", + "Miami", + "Mexico City", + "Tianjin", + "Philadelphia", + "Osaka", + "Santiago", + "Istanbul", + "Taipei", + "Moscow", + "Kolkata", + "Madrid", + "Shenzhen", + "Lahore", + "Dallas", + "Belo Horizonte", + "Jakarta", + "Lima", + "Wuhan", + "Hyderabad", + "Cairo", + "Bogota", + "Shanghai", + "Paris", + "Bangkok", + "Houston", + "London", + "Chennai", + "Kinshasa", + "Dhaka", + "Buenos Aires", + "Bengaluru", + "Tokyo", + "Lagos", + "Hong Kong", + "Guangzhou", + "Chicago", + "Tehran", + "Sao Paulo", + "Chongqing", + "Rio de Janeiro", + "Boston", + "Ho Chi Minh City", + "Barcelona", + "Washington", + "Shenyang", + "Saint Petersburg", + "Guadalajara", + "Singapore", + "Dongguan", + "Luanda", + "Baghdad", + "Haora", + "Toronto" + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1018134812" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..e62aaec509ef --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/AnomalyDetectionLiveTests/GetValuesOfDimensionWithAnomaliesWithMinimumSetup(True)Async.json @@ -0,0 +1,106 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/enrichment/anomalyDetection/configurations/fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c/anomalies/dimension/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "92", + "Content-Type": "application/json", + "traceparent": "00-c8900e218d9f6045b95cd1f8217b3bc1-0d2cfce97a3e144f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e57fbf5659278075d2a85f55bd2c8a16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "dimensionName": "city" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c4f2457-e9c9-4a75-b1b3-bc24571fc90c", + "Content-Length": "692", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "153", + "x-request-id": "4c4f2457-e9c9-4a75-b1b3-bc24571fc90c" + }, + "ResponseBody": { + "value": [ + "__SUM__", + "Karachi", + "Los Angeles", + "Delhi", + "Manila", + "Seoul", + "Mumbai", + "Beijing", + "New York", + "Miami", + "Mexico City", + "Tianjin", + "Philadelphia", + "Osaka", + "Santiago", + "Istanbul", + "Taipei", + "Moscow", + "Kolkata", + "Madrid", + "Shenzhen", + "Lahore", + "Dallas", + "Belo Horizonte", + "Jakarta", + "Lima", + "Wuhan", + "Hyderabad", + "Cairo", + "Bogota", + "Shanghai", + "Paris", + "Bangkok", + "Houston", + "London", + "Chennai", + "Kinshasa", + "Dhaka", + "Buenos Aires", + "Bengaluru", + "Tokyo", + "Lagos", + "Hong Kong", + "Guangzhou", + "Chicago", + "Tehran", + "Sao Paulo", + "Chongqing", + "Rio de Janeiro", + "Boston", + "Ho Chi Minh City", + "Barcelona", + "Washington", + "Shenyang", + "Saint Petersburg", + "Guadalajara", + "Singapore", + "Dongguan", + "Luanda", + "Baghdad", + "Haora", + "Toronto" + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1934061348" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(False).json similarity index 64% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(False).json index a1728e35e0ce..98025867b0e7 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(False).json @@ -6,27 +6,27 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-17713e74772cee48881876ac2bd45a89-54ba548a45138b4d-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b4d56dc362566e409b77698452813dab-49318a0c69d1a44c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c6c601c756e57020afc7470ae767591f", + "x-ms-client-request-id": "272c8225e133b1735a808f74907f6a40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ece9281d-3354-476d-8108-317a9d1074cf", + "apim-request-id": "1cd710e4-af2f-4ba6-92e0-36e5d808bc65", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 07 Jan 2021 20:34:10 GMT", + "Date": "Tue, 19 Jan 2021 17:58:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1046", - "x-request-id": "ece9281d-3354-476d-8108-317a9d1074cf" + "x-envoy-upstream-service-time": "285", + "x-request-id": "1cd710e4-af2f-4ba6-92e0-36e5d808bc65" }, "ResponseBody": { - "latestSuccessTimestamp": "2021-01-06T00:00:00Z", - "latestActiveTimestamp": "2021-01-06T00:00:00Z" + "latestSuccessTimestamp": "2021-01-18T00:00:00Z", + "latestActiveTimestamp": "2021-01-18T00:00:00Z" } } ], @@ -35,6 +35,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "899704594" + "RandomSeed": "1601974836" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgressAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(False)Async.json similarity index 64% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgressAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(False)Async.json index 5b51bfc49d1b..c929b525274b 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgressAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(False)Async.json @@ -6,27 +6,27 @@ "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ecdeb126a977ec45b0479665883edab5-71e14545d31e514e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a0d93f6477eb474681bf4bccd3dc7d6c-d65bace5d20c1f4c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "541b4611223229948b2203679915b9dc", + "x-ms-client-request-id": "50ab3fbd6913e01d85d3d4769b5c4579", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cab25fb-9889-4294-9393-c3369a4a72b1", + "apim-request-id": "37f960b0-af65-4de1-8f42-636ffd11cf8e", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 07 Jan 2021 20:34:16 GMT", + "Date": "Tue, 19 Jan 2021 17:58:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "593", - "x-request-id": "1cab25fb-9889-4294-9393-c3369a4a72b1" + "x-envoy-upstream-service-time": "203", + "x-request-id": "37f960b0-af65-4de1-8f42-636ffd11cf8e" }, "ResponseBody": { - "latestSuccessTimestamp": "2021-01-06T00:00:00Z", - "latestActiveTimestamp": "2021-01-06T00:00:00Z" + "latestSuccessTimestamp": "2021-01-18T00:00:00Z", + "latestActiveTimestamp": "2021-01-18T00:00:00Z" } } ], @@ -35,6 +35,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1890506209" + "RandomSeed": "840940998" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(True).json new file mode 100644 index 000000000000..fe230ca6fa17 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(True).json @@ -0,0 +1,37 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9860df01-e740-40ec-94a2-6351813552ba/ingestionProgress", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-14448f3a3e00154d857a5876dab31b04-67e8c5fec24d5b43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cd8993d699f721c396af28d5b3c289a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "179fb22b-6117-428d-a46a-ad651b8b7937", + "Content-Length": "96", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "160", + "x-request-id": "179fb22b-6117-428d-a46a-ad651b8b7937" + }, + "ResponseBody": { + "latestSuccessTimestamp": "2021-01-18T00:00:00Z", + "latestActiveTimestamp": "2021-01-18T00:00:00Z" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "2110187818" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(True)Async.json new file mode 100644 index 000000000000..96d4c79808d1 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionProgress(True)Async.json @@ -0,0 +1,37 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9860df01-e740-40ec-94a2-6351813552ba/ingestionProgress", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-eccf0c3e1802e3488aacc8197b6d7570-f5654c53d0122147-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5d65e7683e0f31ddaafcf10700eff848", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "637462a6-b635-4f46-a6a4-c66fdbc0dfda", + "Content-Length": "96", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136", + "x-request-id": "637462a6-b635-4f46-a6a4-c66fdbc0dfda" + }, + "ResponseBody": { + "latestSuccessTimestamp": "2021-01-18T00:00:00Z", + "latestActiveTimestamp": "2021-01-18T00:00:00Z" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "391354298" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatusesAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(False).json similarity index 91% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatusesAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(False).json index 9db01b1f477a..d76835a45009 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatusesAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(False).json @@ -8,9 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7da0b3e2d0c73743b1719e50dcb16491-6ff6136c07bc3b41-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "262ae5ba77552f0216be80fd6ce1c131", + "x-ms-client-request-id": "ead9fe52d2bf84c0992f1338fc12c166", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,14 +20,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b72586b-66c0-44ed-b632-78e9ac51ab8e", + "apim-request-id": "63b7d1dd-3229-4359-bc99-64bf795fb0bb", "Content-Length": "2158", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 07 Jan 2021 20:34:16 GMT", + "Date": "Tue, 19 Jan 2021 17:58:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "231", - "x-request-id": "7b72586b-66c0-44ed-b632-78e9ac51ab8e" + "x-envoy-upstream-service-time": "238", + "x-request-id": "63b7d1dd-3229-4359-bc99-64bf795fb0bb" }, "ResponseBody": { "value": [ @@ -190,6 +191,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "543981153" + "RandomSeed": "1789414703" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(False)Async.json similarity index 91% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(False)Async.json index 779ba86b94da..4dc4c0e5c0a6 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-347bf3fec7b7364d8a277cfe516b6cb9-7f9b41551a95ba44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "72be21812f91031a3516279fe75e2cc3", + "x-ms-client-request-id": "02e964a2a9a32dead4f159d37b5b0823", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,14 +20,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60f9a1df-99a3-433a-93bc-3a986605315d", + "apim-request-id": "d92b196d-c392-4c31-a652-92d9e66cd60e", "Content-Length": "2158", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 07 Jan 2021 20:34:13 GMT", + "Date": "Tue, 19 Jan 2021 17:58:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "308", - "x-request-id": "60f9a1df-99a3-433a-93bc-3a986605315d" + "x-envoy-upstream-service-time": "186", + "x-request-id": "d92b196d-c392-4c31-a652-92d9e66cd60e" }, "ResponseBody": { "value": [ @@ -190,6 +191,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1492286745" + "RandomSeed": "377340545" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(True).json new file mode 100644 index 000000000000..a8b57df624e1 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(True).json @@ -0,0 +1,193 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9860df01-e740-40ec-94a2-6351813552ba/ingestionStatus/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-cf78620c7924d940b956c580aa5a9ec2-7b0836335ea4ab40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "18c45ea9819c7e520ea996a24446b811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "21d0b97b-996d-47e8-8a2f-6e83d81c8db9", + "Content-Length": "2158", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182", + "x-request-id": "21d0b97b-996d-47e8-8a2f-6e83d81c8db9" + }, + "ResponseBody": { + "value": [ + { + "timestamp": "2020-10-30T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-11T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-10T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-09T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-08T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-07T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-06T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-05T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-04T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-03T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-02T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-01T00:00:00Z", + "status": "Succeeded", + "message": "" + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "988456112" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(True)Async.json new file mode 100644 index 000000000000..bc5345a9a3aa --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/GetDataFeedIngestionStatuses(True)Async.json @@ -0,0 +1,193 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9860df01-e740-40ec-94a2-6351813552ba/ingestionStatus/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-a9a6622cf4cf4f47a052077eea2b3e4f-d953728f34159a45-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "535e34a0f82b434a15bf6b69f1e52796", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d84b7b93-8806-4252-903d-fde0a91a2f62", + "Content-Length": "2158", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141", + "x-request-id": "d84b7b93-8806-4252-903d-fde0a91a2f62" + }, + "ResponseBody": { + "value": [ + { + "timestamp": "2020-10-30T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-23T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-11T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-10T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-09T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-08T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-07T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-06T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-05T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-04T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-03T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-02T00:00:00Z", + "status": "Succeeded", + "message": "" + }, + { + "timestamp": "2020-10-01T00:00:00Z", + "status": "Succeeded", + "message": "" + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "346909882" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(False).json similarity index 71% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(False).json index f44df88c6185..19f413ae2926 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(False).json @@ -8,10 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a6f9df59a72e8a4395519fe418b9a116-fd9f108be731f14a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fdef3a1eb11a8048b3fc2c58bed51c85-449afe5fbaeaa947-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "239c087daad35fb770603e5cd789ef3c", + "x-ms-client-request-id": "8f5d7b8b3d527fcdc3247a05787ed140", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,13 +20,13 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "26d3af66-7aa7-4842-804f-399c020f8a09", + "apim-request-id": "7cb06045-c874-4e4b-8bfe-3cfdea4a143d", "Content-Length": "0", - "Date": "Thu, 07 Jan 2021 20:34:15 GMT", + "Date": "Tue, 19 Jan 2021 17:58:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2353", - "x-request-id": "26d3af66-7aa7-4842-804f-399c020f8a09" + "x-envoy-upstream-service-time": "264", + "x-request-id": "7cb06045-c874-4e4b-8bfe-3cfdea4a143d" }, "ResponseBody": [] } @@ -36,6 +36,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "497133580" + "RandomSeed": "1775400950" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestionAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(False)Async.json similarity index 71% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestionAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(False)Async.json index c06f40f8d7c0..1794b57581ca 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestionAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-29becdb3c7ae414a8dca3616c1e0eab1-f0e0bfc71c544544-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-444574692df5ae4a8735dc9e51d39c09-c280ac27aec2ff46-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5e42de74216324af7772132380295dc2", + "x-ms-client-request-id": "0dc379d62e6e0967e7d845d02f16ac69", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,13 +20,13 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "9e485a44-aa9f-4b1a-9d11-22831430b196", + "apim-request-id": "2df175df-8114-4601-b84a-e97cbe7ba572", "Content-Length": "0", - "Date": "Thu, 07 Jan 2021 20:34:17 GMT", + "Date": "Tue, 19 Jan 2021 17:58:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "233", - "x-request-id": "9e485a44-aa9f-4b1a-9d11-22831430b196" + "x-envoy-upstream-service-time": "225", + "x-request-id": "2df175df-8114-4601-b84a-e97cbe7ba572" }, "ResponseBody": [] } @@ -36,6 +36,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "2003070997" + "RandomSeed": "1553010757" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(True).json new file mode 100644 index 000000000000..b5d6a160510b --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(True).json @@ -0,0 +1,38 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9860df01-e740-40ec-94a2-6351813552ba/ingestionProgress/reset", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-42d9606271a5064483d349b2fbcf1c98-d12e9a0df7959445-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cb50c1768479bc4f709789a00f177bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-09-01T00:00:00Z", + "endTime": "2020-09-02T00:00:00Z" + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "b93b4c17-0881-4228-b8bc-ef48097908ca", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156", + "x-request-id": "b93b4c17-0881-4228-b8bc-ef48097908ca" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1056408371" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(True)Async.json new file mode 100644 index 000000000000..8a46d9fd531a --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedIngestionLiveTests/RefreshDataIngestion(True)Async.json @@ -0,0 +1,38 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9860df01-e740-40ec-94a2-6351813552ba/ingestionProgress/reset", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-c0bc1f5b50652f47a24a2ebb4919debd-b15223cd3d941b42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d0ebd17fa560dffabbb7d0d5edcb2f2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-09-01T00:00:00Z", + "endTime": "2020-09-02T00:00:00Z" + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "932797c9-1400-4866-8ec6-8a9c3ab24f15", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124", + "x-request-id": "932797c9-1400-4866-8ec6-8a9c3ab24f15" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1140777540" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(False).json similarity index 68% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(False).json index 3eb682f253d7..dea9436d80a3 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(False).json @@ -8,10 +8,10 @@ "Content-Length": "284", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5788b2f7eadad441881f600aa574e7bb-2124e8bdb52d2646-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8a64b03d483c2344a3005a201fc3306f-cf3e4a62d7ed7f48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "f2844b8e90e33732129a6bd521328d8c", + "x-ms-client-request-id": "960de25187b0c9dc7b91d3f003fcde80", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,7 +22,7 @@ "query": "query" }, "dataSourceType": "AzureApplicationInsights", - "dataFeedName": "dataFeedO0rkekY2", + "dataFeedName": "dataFeed2N0mXplz", "granularityName": "Daily", "metrics": [ { @@ -33,47 +33,47 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "4750e2cd-363e-4f1e-b38a-8bed402a15be", + "apim-request-id": "640efdf0-92fb-449f-8ad0-d0fc249c8472", "Content-Length": "0", - "Date": "Tue, 29 Dec 2020 21:40:45 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9fc449e6-97c0-461c-b807-d42b86dae436", + "Date": "Tue, 19 Jan 2021 17:58:24 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/1683c901-76a3-460f-9a34-af789f741784", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "558", - "x-request-id": "4750e2cd-363e-4f1e-b38a-8bed402a15be" + "x-envoy-upstream-service-time": "487", + "x-request-id": "640efdf0-92fb-449f-8ad0-d0fc249c8472" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9fc449e6-97c0-461c-b807-d42b86dae436", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/1683c901-76a3-460f-9a34-af789f741784", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-181fc09718c5934395dd2244110c971a-6788c658f42b3a4a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-30de0d35279f784496eb46670686ea2d-a2372a859e7f0c47-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "efc3cb1fa70971924539e492370a38b3", + "x-ms-client-request-id": "07e0653b80c8cad6418ec6f62298e230", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b0c97a5e-5184-4a14-97b1-7332e4bea59c", + "apim-request-id": "8399298a-0ac3-4e45-b8b3-490314935ac2", "Content-Length": "996", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 29 Dec 2020 21:40:45 GMT", + "Date": "Tue, 19 Jan 2021 17:58:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174", - "x-request-id": "b0c97a5e-5184-4a14-97b1-7332e4bea59c" + "x-envoy-upstream-service-time": "190", + "x-request-id": "8399298a-0ac3-4e45-b8b3-490314935ac2" }, "ResponseBody": { - "dataFeedId": "9fc449e6-97c0-461c-b807-d42b86dae436", - "dataFeedName": "dataFeedO0rkekY2", + "dataFeedId": "1683c901-76a3-460f-9a34-af789f741784", + "dataFeedName": "dataFeed2N0mXplz", "metrics": [ { - "metricId": "ce02e009-78ef-4bcf-86e3-28d0cf57a6ba", + "metricId": "8cf5c2e0-8153-4a34-968d-c93327410297", "metricName": "cost", "metricDisplayName": "cost", "metricDescription": "" @@ -104,7 +104,7 @@ "viewers": [], "creator": "foo@contoso.com", "status": "Active", - "createdTime": "2020-12-29T21:40:46Z", + "createdTime": "2021-01-19T17:58:25Z", "isAdmin": true, "actionLinkTemplate": "", "dataSourceParameter": { @@ -116,37 +116,37 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9fc449e6-97c0-461c-b807-d42b86dae436", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/1683c901-76a3-460f-9a34-af789f741784", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a6d0674f1706d349bdfb0f14973d0d60-1128e5ed2058924a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-59c0b8b90f4586488530bb7775182f87-923d3037a1f81b42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "3f2af6bbfd40bd35ebc5d32178136169", + "x-ms-client-request-id": "2d50f82cd01559ff4562fa9c89706f9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "0b166bab-fbd4-445e-af0f-a71bfca0acc0", + "apim-request-id": "3453ba94-5bdf-4e2e-985e-16de7990c39f", "Content-Length": "0", - "Date": "Tue, 29 Dec 2020 21:40:46 GMT", + "Date": "Tue, 19 Jan 2021 17:58:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "350", - "x-request-id": "0b166bab-fbd4-445e-af0f-a71bfca0acc0" + "x-envoy-upstream-service-time": "394", + "x-request-id": "3453ba94-5bdf-4e2e-985e-16de7990c39f" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2020-12-29T13:40:46.6626468-08:00", + "DateTimeOffsetNow": "2021-01-19T09:58:25.7541035-08:00", "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "338497086" + "RandomSeed": "979416786" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(False)Async.json similarity index 68% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(False)Async.json index 4b77fcb2f73a..6f837dbc0159 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "284", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3e718ac6be3144799149578cb944e83-765c08e1b5660542-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-76dfea2313760b43a07a27524fe77092-39509e8d0d10ac48-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "6427eb82240aac27051bc4d9db53f425", + "x-ms-client-request-id": "bf6787e350cb73ea3769ee77c55d7d2c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,7 +22,7 @@ "query": "query" }, "dataSourceType": "AzureApplicationInsights", - "dataFeedName": "dataFeed0pvNYXMc", + "dataFeedName": "dataFeed4jeFaH09", "granularityName": "Daily", "metrics": [ { @@ -33,47 +33,47 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "07db053f-55c1-4091-827d-c94e4d5fb4a8", + "apim-request-id": "161e92e2-2270-43aa-86d1-913d777c6cfa", "Content-Length": "0", - "Date": "Tue, 29 Dec 2020 21:40:07 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/8e9071ab-b06c-49b2-a759-5513944a8cee", + "Date": "Tue, 19 Jan 2021 17:58:38 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d3658d6b-c6be-440e-b290-d1d0f83543e7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "947", - "x-request-id": "07db053f-55c1-4091-827d-c94e4d5fb4a8" + "x-envoy-upstream-service-time": "397", + "x-request-id": "161e92e2-2270-43aa-86d1-913d777c6cfa" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/8e9071ab-b06c-49b2-a759-5513944a8cee", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d3658d6b-c6be-440e-b290-d1d0f83543e7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1448d64151fa434eb9994605bb530a57-559adb11a1283d42-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-65d83c4a236d1f4bb68d44399bb37aa1-0398f217d6b2e04e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c24a9bd2277231ba8ad1b66e51068428", + "x-ms-client-request-id": "79fe5161952eb59ceeb9b890a595b36b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd1b7c40-b7c2-422f-a557-87a5cc89b5ba", + "apim-request-id": "92157130-b878-411a-897e-fdd395f3c8cd", "Content-Length": "996", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 29 Dec 2020 21:40:08 GMT", + "Date": "Tue, 19 Jan 2021 17:58:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1238", - "x-request-id": "fd1b7c40-b7c2-422f-a557-87a5cc89b5ba" + "x-envoy-upstream-service-time": "167", + "x-request-id": "92157130-b878-411a-897e-fdd395f3c8cd" }, "ResponseBody": { - "dataFeedId": "8e9071ab-b06c-49b2-a759-5513944a8cee", - "dataFeedName": "dataFeed0pvNYXMc", + "dataFeedId": "d3658d6b-c6be-440e-b290-d1d0f83543e7", + "dataFeedName": "dataFeed4jeFaH09", "metrics": [ { - "metricId": "780dfce0-2cb0-403c-be8e-606fa6d042f9", + "metricId": "953ad126-7956-4f72-9cbc-f9361f0d2c9d", "metricName": "cost", "metricDisplayName": "cost", "metricDescription": "" @@ -104,7 +104,7 @@ "viewers": [], "creator": "foo@contoso.com", "status": "Active", - "createdTime": "2020-12-29T21:40:07Z", + "createdTime": "2021-01-19T17:58:38Z", "isAdmin": true, "actionLinkTemplate": "", "dataSourceParameter": { @@ -116,37 +116,37 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/8e9071ab-b06c-49b2-a759-5513944a8cee", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d3658d6b-c6be-440e-b290-d1d0f83543e7", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0be6a49e014e4d42a6a89704b69487e4-b346e43d4d7c1542-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c5abe3767a437b4582131ded6db8d2cf-af5c4596474e5d40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "2073c098bf8ad8a9770c55f46b0a9963", + "x-ms-client-request-id": "209375786de55d278d7c307802ef8726", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "ee9769a1-00c6-4fb6-a1a1-62a50ce30eb3", + "apim-request-id": "c2d549d0-9bb7-4eae-89ba-2618725c6476", "Content-Length": "0", - "Date": "Tue, 29 Dec 2020 21:40:10 GMT", + "Date": "Tue, 19 Jan 2021 17:58:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2369", - "x-request-id": "ee9769a1-00c6-4fb6-a1a1-62a50ce30eb3" + "x-envoy-upstream-service-time": "289", + "x-request-id": "c2d549d0-9bb7-4eae-89ba-2618725c6476" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2020-12-29T13:40:09.1066235-08:00", + "DateTimeOffsetNow": "2021-01-19T09:58:39.0338824-08:00", "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1576067489" + "RandomSeed": "1263123069" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(True).json new file mode 100644 index 000000000000..216d3c91d05d --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(True).json @@ -0,0 +1,147 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "284", + "Content-Type": "application/json", + "traceparent": "00-af705df6fd9b214982180dbc30ed587f-8dbf5ddc8bfc8240-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "06930980e0303e7e5bbfaa7e5bb2f53a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "azureCloud": "cloud", + "applicationId": "appId", + "apiKey": "Sanitized", + "query": "query" + }, + "dataSourceType": "AzureApplicationInsights", + "dataFeedName": "dataFeedXs4S4CWD", + "granularityName": "Daily", + "metrics": [ + { + "metricName": "cost" + } + ], + "dataStartFrom": "2020-08-01T00:00:00Z" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "64eaa15a-7e67-46f0-a3e3-241a8f30f19d", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:23 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/92e10a29-5289-4428-86ae-a6bedfa5311c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "706", + "x-request-id": "64eaa15a-7e67-46f0-a3e3-241a8f30f19d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/92e10a29-5289-4428-86ae-a6bedfa5311c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-88423ff1ea49d044adb512959aa1565a-36b5830a65da0241-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f48bf5b7234fbdfd517670c3d7370e7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ee8227a-00b4-4f1c-a8e9-1430fb3c7932", + "Content-Length": "1038", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "85", + "x-request-id": "2ee8227a-00b4-4f1c-a8e9-1430fb3c7932" + }, + "ResponseBody": { + "dataFeedId": "92e10a29-5289-4428-86ae-a6bedfa5311c", + "dataFeedName": "dataFeedXs4S4CWD", + "metrics": [ + { + "metricId": "daa55382-f5dc-4f86-8465-01192aafca2c", + "metricName": "cost", + "metricDisplayName": "cost", + "metricDescription": "" + } + ], + "dimension": [], + "dataStartFrom": "2020-08-01T00:00:00Z", + "dataSourceType": "AzureApplicationInsights", + "timestampColumn": "", + "startOffsetInSeconds": 0, + "maxQueryPerMinute": 30.0, + "granularityName": "Daily", + "granularityAmount": null, + "allUpIdentification": null, + "needRollup": "NoRollup", + "fillMissingPointType": "PreviousValue", + "fillMissingPointValue": 0.0, + "rollUpMethod": "None", + "rollUpColumns": [], + "dataFeedDescription": "", + "stopRetryAfterInSeconds": -1, + "minRetryIntervalInSeconds": -1, + "maxConcurrency": -1, + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "creator": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "status": "Active", + "createdTime": "2021-01-19T17:58:24Z", + "isAdmin": true, + "actionLinkTemplate": "", + "dataSourceParameter": { + "apiKey": "Sanitized", + "query": "query", + "azureCloud": "cloud", + "applicationId": "appId" + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/92e10a29-5289-4428-86ae-a6bedfa5311c", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ae443a12081d824da2d4e76e310268ad-ad282c8971dc324c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fe8aa41680dff9b20ee1a06f2d5733c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "d4d3944a-d60d-48a0-9b32-3cb7e8a27f65", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "252", + "x-request-id": "d4d3944a-d60d-48a0-9b32-3cb7e8a27f65" + }, + "ResponseBody": [] + } + ], + "Variables": { + "DateTimeOffsetNow": "2021-01-19T09:58:24.4819129-08:00", + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "529661973" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..3b728cffa664 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/CreateAndGetAzureApplicationInsightsDataFeedWithMinimumSetup(True)Async.json @@ -0,0 +1,147 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "284", + "Content-Type": "application/json", + "traceparent": "00-09dd16a57ec9f94ca29f7d4c6b5cee86-5e12458ff2fff04c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "869b9914fe5403d29879afdb111d84bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "azureCloud": "cloud", + "applicationId": "appId", + "apiKey": "Sanitized", + "query": "query" + }, + "dataSourceType": "AzureApplicationInsights", + "dataFeedName": "dataFeedj0jLNAjX", + "granularityName": "Daily", + "metrics": [ + { + "metricName": "cost" + } + ], + "dataStartFrom": "2020-08-01T00:00:00Z" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "9b99eacb-b594-4728-af65-7061fcdcc9d9", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:37 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/825cf134-db68-4153-a6f8-3ee9b2a3f428", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1866", + "x-request-id": "9b99eacb-b594-4728-af65-7061fcdcc9d9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/825cf134-db68-4153-a6f8-3ee9b2a3f428", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-33828621c0191e429772d6906358e27e-2eec62b10cc2e04d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f90c6eb3170bdc1103ac4784e7ac835f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2c98b14e-82fe-4321-bc8c-7030bcefc984", + "Content-Length": "1038", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "137", + "x-request-id": "2c98b14e-82fe-4321-bc8c-7030bcefc984" + }, + "ResponseBody": { + "dataFeedId": "825cf134-db68-4153-a6f8-3ee9b2a3f428", + "dataFeedName": "dataFeedj0jLNAjX", + "metrics": [ + { + "metricId": "e5cabe3f-9b6a-495b-ab26-a70786c1a827", + "metricName": "cost", + "metricDisplayName": "cost", + "metricDescription": "" + } + ], + "dimension": [], + "dataStartFrom": "2020-08-01T00:00:00Z", + "dataSourceType": "AzureApplicationInsights", + "timestampColumn": "", + "startOffsetInSeconds": 0, + "maxQueryPerMinute": 30.0, + "granularityName": "Daily", + "granularityAmount": null, + "allUpIdentification": null, + "needRollup": "NoRollup", + "fillMissingPointType": "PreviousValue", + "fillMissingPointValue": 0.0, + "rollUpMethod": "None", + "rollUpColumns": [], + "dataFeedDescription": "", + "stopRetryAfterInSeconds": -1, + "minRetryIntervalInSeconds": -1, + "maxConcurrency": -1, + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "creator": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "status": "Active", + "createdTime": "2021-01-19T17:58:37Z", + "isAdmin": true, + "actionLinkTemplate": "", + "dataSourceParameter": { + "apiKey": "Sanitized", + "query": "query", + "azureCloud": "cloud", + "applicationId": "appId" + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/825cf134-db68-4153-a6f8-3ee9b2a3f428", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d14ba02b6f2b4848963b8d2fa6e29394-261a7c5a9b92f341-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "598efcc21ab9237b1ee1279c253bb44d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "cd1b7f64-9489-49ff-9469-eddfc69929ea", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "278", + "x-request-id": "cd1b7f64-9489-49ff-9469-eddfc69929ea" + }, + "ResponseBody": [] + } + ], + "Variables": { + "DateTimeOffsetNow": "2021-01-19T09:58:38.0787737-08:00", + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "483269164" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(False).json similarity index 63% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(False).json index e0571680166a..2b7724c0d4ba 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(False).json @@ -8,10 +8,10 @@ "Content-Length": "234", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b00981c8d6958f49a1d2d1a631d9afc3-561ba116c2915949-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e8f3fb2b79916147bd11821c38e2393c-68116f3c1812cb44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "76509c257c00d7dd31ba2ec51505a766", + "x-ms-client-request-id": "67d348e02d972942f8c2b559ee0427ab", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,7 +20,7 @@ "query": "query" }, "dataSourceType": "SqlServer", - "dataFeedName": "dataFeed9WFb0xAq", + "dataFeedName": "dataFeedHrv1im9C", "granularityName": "Daily", "metrics": [ { @@ -31,65 +31,65 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "441a4052-fe3e-4363-b920-065de871c088", + "apim-request-id": "6177c7ed-791a-4e10-a9af-7efc5edbb621", "Content-Length": "0", - "Date": "Thu, 31 Dec 2020 18:10:29 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/6114373b-eea5-4fe1-8740-8d4381ac3356", + "Date": "Tue, 19 Jan 2021 17:58:28 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/ab742b15-1398-48fc-a7c4-3dcf69226f04", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "691", - "x-request-id": "441a4052-fe3e-4363-b920-065de871c088" + "x-envoy-upstream-service-time": "559", + "x-request-id": "6177c7ed-791a-4e10-a9af-7efc5edbb621" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/6114373b-eea5-4fe1-8740-8d4381ac3356", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/ab742b15-1398-48fc-a7c4-3dcf69226f04", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c12f67b4895ef14f9d509d1c8d0d8fd3-95aa7f92d9ee5248-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bdf7c1e851851642ad2313e964cde881-78e91a44ab521646-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9896f10fa7ce22120ff3d1d9f6f40702", + "x-ms-client-request-id": "984fac857201dbcd3b8f83335ba3f8e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "bd963e62-944f-476a-8ac7-727f86fca589", + "apim-request-id": "6699c04b-2028-4325-9c9b-dd810039708e", "Content-Length": "0", - "Date": "Thu, 31 Dec 2020 18:10:30 GMT", + "Date": "Tue, 19 Jan 2021 17:58:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "297", - "x-request-id": "bd963e62-944f-476a-8ac7-727f86fca589" + "x-envoy-upstream-service-time": "308", + "x-request-id": "6699c04b-2028-4325-9c9b-dd810039708e" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/6114373b-eea5-4fe1-8740-8d4381ac3356", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/ab742b15-1398-48fc-a7c4-3dcf69226f04", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c128c85632f97f4eb5e70c62375cb512-637b766bb02edb40-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8e9cecf6ef83ab4a8a7fd0779d0c803d-9712586e61c6a146-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "daf66ed1a9573e2d0238047a70648932", + "x-ms-client-request-id": "3b7cd2884bdfdccb74941718fefa80cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "286ad8da-6ee5-4164-8aa9-78ee7b465cf3", + "apim-request-id": "1f1f420d-2bec-4d28-bbc0-08e1ec825e8c", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 31 Dec 2020 18:10:30 GMT", + "Date": "Tue, 19 Jan 2021 17:58:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74", - "x-request-id": "286ad8da-6ee5-4164-8aa9-78ee7b465cf3" + "x-envoy-upstream-service-time": "66", + "x-request-id": "1f1f420d-2bec-4d28-bbc0-08e1ec825e8c" }, "ResponseBody": { "code": "ERROR_INVALID_PARAMETER", @@ -102,6 +102,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "214886990" + "RandomSeed": "68464677" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeedAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(False)Async.json similarity index 63% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeedAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(False)Async.json index ec097a91e0ee..ee88b492565c 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeedAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "234", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-684500bfa558334bb2f3805320569656-cc84e79f09a7c94a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-60ebe615a55f1e4f8c32025238b6da69-2adbda5fa1cb7c44-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "81568c3b128c66c71e4df5909dd3e538", + "x-ms-client-request-id": "80d63b359f10dfe4f3bd5e50db3806e4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -20,7 +20,7 @@ "query": "query" }, "dataSourceType": "SqlServer", - "dataFeedName": "dataFeedAn2sYqq9", + "dataFeedName": "dataFeedMjZEzaS6", "granularityName": "Daily", "metrics": [ { @@ -31,65 +31,65 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2da57968-8e13-4205-b58e-bf532e09f8fd", + "apim-request-id": "2d7ad0a7-1da0-4c51-a579-a6e290745805", "Content-Length": "0", - "Date": "Wed, 30 Dec 2020 23:22:14 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/a504c8f7-ae9e-4622-86d8-db90f0a3b843", + "Date": "Tue, 19 Jan 2021 17:58:41 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/59f18e6f-1a4b-46b3-ac9a-fda9d469947d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "855", - "x-request-id": "2da57968-8e13-4205-b58e-bf532e09f8fd" + "x-envoy-upstream-service-time": "585", + "x-request-id": "2d7ad0a7-1da0-4c51-a579-a6e290745805" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/a504c8f7-ae9e-4622-86d8-db90f0a3b843", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/59f18e6f-1a4b-46b3-ac9a-fda9d469947d", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1365f8019a7c847b97850a45cb0fc4f-4f36ef230fbc304e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6504051a3822fe4e836b46649a30e4b3-c5c5e9295e80094e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "6b8028f254fba7db7268ec98cf24c80c", + "x-ms-client-request-id": "af34881edcd1314dfccfa525e13a546a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "1ae801ed-8d36-4006-ae23-3ebdccf344d4", + "apim-request-id": "abd33d44-26c5-41e3-b71a-afa2905aaa52", "Content-Length": "0", - "Date": "Wed, 30 Dec 2020 23:22:14 GMT", + "Date": "Tue, 19 Jan 2021 17:58:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "438", - "x-request-id": "1ae801ed-8d36-4006-ae23-3ebdccf344d4" + "x-envoy-upstream-service-time": "294", + "x-request-id": "abd33d44-26c5-41e3-b71a-afa2905aaa52" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/a504c8f7-ae9e-4622-86d8-db90f0a3b843", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/59f18e6f-1a4b-46b3-ac9a-fda9d469947d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-054e89407f36bc4c926830397ce1a017-46a9d022b44c9248-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bffab1ffe01cfd4088fae7f14af38b4e-5547cd70e4b0cd47-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "644c649aa67b48db54891e30116fd0fd", + "x-ms-client-request-id": "f3a78a0c0c586bcd422bcee58ee640ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "a1dc5bfd-c521-4527-ba7b-454b59887e9d", + "apim-request-id": "0051d5e4-b8d4-4a29-a822-49d8d24da0bb", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Dec 2020 23:22:14 GMT", + "Date": "Tue, 19 Jan 2021 17:58:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "185", - "x-request-id": "a1dc5bfd-c521-4527-ba7b-454b59887e9d" + "x-envoy-upstream-service-time": "68", + "x-request-id": "0051d5e4-b8d4-4a29-a822-49d8d24da0bb" }, "ResponseBody": { "code": "ERROR_INVALID_PARAMETER", @@ -102,6 +102,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1667713347" + "RandomSeed": "478749501" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(True).json new file mode 100644 index 000000000000..3e1e9155cf21 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(True).json @@ -0,0 +1,102 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "234", + "Content-Type": "application/json", + "traceparent": "00-b36ff32ca14ecc459144b18bcf6e5585-63628a2f88ebf449-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5b0768768ba3f75a62575722ab3537cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "connectionString": "Sanitized", + "query": "query" + }, + "dataSourceType": "SqlServer", + "dataFeedName": "dataFeedQiyqzxMe", + "granularityName": "Daily", + "metrics": [ + { + "metricName": "cost" + } + ], + "dataStartFrom": "2020-08-01T00:00:00Z" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "03ac8bfd-00a0-40a6-acdf-7318de67f528", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:27 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9c424b93-a198-409d-8c55-35f7a6d8df8a", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "883", + "x-request-id": "03ac8bfd-00a0-40a6-acdf-7318de67f528" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9c424b93-a198-409d-8c55-35f7a6d8df8a", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-99657c4a78f3ee4cba582c2e25389453-d307f6ddafb79046-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ed53de3a9bf3616c642ea84f75cbd465", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "63f9ab94-a149-4c7e-bfa0-9785690ca01b", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215", + "x-request-id": "63f9ab94-a149-4c7e-bfa0-9785690ca01b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/9c424b93-a198-409d-8c55-35f7a6d8df8a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-74f0c08337174443a3ce45da6c866eff-ef810f547ee28249-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3134f3710fe1d0a2ef8975f897affa6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "02539b8d-7fd6-49c8-80f8-97c0cf80b931", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "29", + "x-request-id": "02539b8d-7fd6-49c8-80f8-97c0cf80b931" + }, + "ResponseBody": { + "code": "ERROR_INVALID_PARAMETER", + "message": "datafeedId is invalid." + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1930293648" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(True)Async.json new file mode 100644 index 000000000000..7f604a15eff0 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/DeleteDataFeed(True)Async.json @@ -0,0 +1,102 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "234", + "Content-Type": "application/json", + "traceparent": "00-37b8ed3ebbf0bc4fae575fa524b65afb-311464120e7ee447-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "18f6101557ae7840a8bc664a03f72f42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "connectionString": "Sanitized", + "query": "query" + }, + "dataSourceType": "SqlServer", + "dataFeedName": "dataFeedQld2fqKd", + "granularityName": "Daily", + "metrics": [ + { + "metricName": "cost" + } + ], + "dataStartFrom": "2020-08-01T00:00:00Z" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "1bac20c9-9879-4ce6-8c04-37f811f065cf", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:40 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d2490d57-6ff0-4d76-a0d7-bed2c99cbb46", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "552", + "x-request-id": "1bac20c9-9879-4ce6-8c04-37f811f065cf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d2490d57-6ff0-4d76-a0d7-bed2c99cbb46", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-246c852b9aec2c429c055e7647d394a8-272cdb4790ad9b49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1be646d7b86746eeb5227828fd7ff908", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "24999c1a-7851-41de-bc7f-f5c91c7d0791", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "214", + "x-request-id": "24999c1a-7851-41de-bc7f-f5c91c7d0791" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d2490d57-6ff0-4d76-a0d7-bed2c99cbb46", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-799170fac678d2408da2d004a3a6d402-8c28e7e946ece349-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6c79e16836d021dcb434f8e375ee0f1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "5b25c23f-aac7-4baa-9763-f176acb7386f", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15", + "x-request-id": "5b25c23f-aac7-4baa-9763-f176acb7386f" + }, + "ResponseBody": { + "code": "ERROR_INVALID_PARAMETER", + "message": "datafeedId is invalid." + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "380366579" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/GetDataFeeds.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/GetDataFeeds.json deleted file mode 100644 index 639059bf8978..000000000000 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/GetDataFeeds.json +++ /dev/null @@ -1,318 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "b112e5edfb3c2f2db7c5db982e4a1f49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b2221a11-c216-4873-97b4-d9998d9dc24d", - "Content-Length": "5769", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 06 Jan 2021 19:48:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "743", - "x-request-id": "b2221a11-c216-4873-97b4-d9998d9dc24d" - }, - "ResponseBody": { - "value": [ - { - "dataFeedId": "d9bb5d8a-4ade-4b41-a912-a3f82ee93c14", - "dataFeedName": "SqlServerDatafeed", - "metrics": [ - { - "metricId": "81582df6-0272-40bf-994d-eb497b74d13b", - "metricName": "cost", - "metricDisplayName": "cost", - "metricDescription": "" - }, - { - "metricId": "507eaf33-3a65-4664-a7d6-5cdcc2dda6ff", - "metricName": "revenue", - "metricDisplayName": "revenue", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "category", - "dimensionDisplayName": "category" - }, - { - "dimensionName": "city", - "dimensionDisplayName": "city" - } - ], - "dataStartFrom": "2020-08-11T00:00:00Z", - "dataSourceType": "SqlServer", - "timestampColumn": "timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": "__SUM__", - "needRollup": "NeedRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "Sum", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-16T17:35:24Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "connectionString": "Sanitized", - "query": "select * from adsample2 where Timestamp = @StartTime" - } - }, - { - "dataFeedId": "b23b7c41-4c49-4ad6-a0b8-cbb91f11cd33", - "dataFeedName": "BlobDataFeed", - "metrics": [ - { - "metricId": "27b31c03-7057-4322-bb44-4ab780251528", - "metricName": "Metric1", - "metricDisplayName": "Metric1", - "metricDescription": "" - }, - { - "metricId": "1c957231-7597-4023-8dbb-7de182929e21", - "metricName": "Metric2", - "metricDisplayName": "Metric2", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "Dim1", - "dimensionDisplayName": "Dim1" - }, - { - "dimensionName": "Dim2", - "dimensionDisplayName": "Dim2" - } - ], - "dataStartFrom": "2020-08-09T00:00:00Z", - "dataSourceType": "AzureBlob", - "timestampColumn": "Timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": null, - "needRollup": "NoRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "None", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-16T17:34:40Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "container": "adsample", - "connectionString": "Sanitized", - "blobTemplate": "%Y/%m/%d/%h/JsonFormatV2.json", - "jsonFormatVersion": "V2" - } - }, - { - "dataFeedId": "9860df01-e740-40ec-94a2-6351813552ba", - "dataFeedName": "azsqlDatafeed", - "metrics": [ - { - "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", - "metricName": "cost", - "metricDisplayName": "cost", - "metricDescription": "" - }, - { - "metricId": "a98a72e6-18ab-4dab-bac4-3db605691bca", - "metricName": "revenue", - "metricDisplayName": "revenue", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "category", - "dimensionDisplayName": "category" - }, - { - "dimensionName": "city", - "dimensionDisplayName": "city" - } - ], - "dataStartFrom": "2020-08-30T00:00:00Z", - "dataSourceType": "SqlServer", - "timestampColumn": "timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": "__SUM__", - "needRollup": "NeedRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "Sum", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-05T18:56:43Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "connectionString": "Sanitized", - "query": "select * from adsample2 where Timestamp = @StartTime" - } - }, - { - "dataFeedId": "a4030af9-4419-4d3a-a2cc-49022cf54914", - "dataFeedName": "testDataFeed1", - "metrics": [ - { - "metricId": "efa9adb3-7342-494b-a6f1-427021e75ad6", - "metricName": "Metric1", - "metricDisplayName": "Metric1", - "metricDescription": "" - }, - { - "metricId": "a1948021-0002-4c37-be71-eaaa29f1e2e7", - "metricName": "Metric2", - "metricDisplayName": "Metric2", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "Dim1", - "dimensionDisplayName": "Dim1" - }, - { - "dimensionName": "Dim2", - "dimensionDisplayName": "Dim2" - } - ], - "dataStartFrom": "2020-01-01T00:00:00Z", - "dataSourceType": "AzureBlob", - "timestampColumn": "Timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": "__SUM__", - "needRollup": "NeedRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "Sum", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-02T19:20:53Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "container": "adsample", - "connectionString": "Sanitized", - "blobTemplate": "%Y/%m/%d/%h/JsonFormatV2.json", - "jsonFormatVersion": "v2" - } - } - ], - "@nextLink": null - } - } - ], - "Variables": { - "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", - "METRICSADVISOR_ENDPOINT_SUFFIX": null, - "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", - "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "417459558" - } -} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/GetDataFeedsAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/GetDataFeedsAsync.json deleted file mode 100644 index cc34919f446b..000000000000 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/GetDataFeedsAsync.json +++ /dev/null @@ -1,318 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210106.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "f2740bb79f1d5d154cf97770d55c89a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a8c59c3e-d9ca-4830-bd47-a3759f765ef6", - "Content-Length": "5769", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 06 Jan 2021 19:47:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1994", - "x-request-id": "a8c59c3e-d9ca-4830-bd47-a3759f765ef6" - }, - "ResponseBody": { - "value": [ - { - "dataFeedId": "d9bb5d8a-4ade-4b41-a912-a3f82ee93c14", - "dataFeedName": "SqlServerDatafeed", - "metrics": [ - { - "metricId": "81582df6-0272-40bf-994d-eb497b74d13b", - "metricName": "cost", - "metricDisplayName": "cost", - "metricDescription": "" - }, - { - "metricId": "507eaf33-3a65-4664-a7d6-5cdcc2dda6ff", - "metricName": "revenue", - "metricDisplayName": "revenue", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "category", - "dimensionDisplayName": "category" - }, - { - "dimensionName": "city", - "dimensionDisplayName": "city" - } - ], - "dataStartFrom": "2020-08-11T00:00:00Z", - "dataSourceType": "SqlServer", - "timestampColumn": "timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": "__SUM__", - "needRollup": "NeedRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "Sum", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-16T17:35:24Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "connectionString": "Sanitized", - "query": "select * from adsample2 where Timestamp = @StartTime" - } - }, - { - "dataFeedId": "b23b7c41-4c49-4ad6-a0b8-cbb91f11cd33", - "dataFeedName": "BlobDataFeed", - "metrics": [ - { - "metricId": "27b31c03-7057-4322-bb44-4ab780251528", - "metricName": "Metric1", - "metricDisplayName": "Metric1", - "metricDescription": "" - }, - { - "metricId": "1c957231-7597-4023-8dbb-7de182929e21", - "metricName": "Metric2", - "metricDisplayName": "Metric2", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "Dim1", - "dimensionDisplayName": "Dim1" - }, - { - "dimensionName": "Dim2", - "dimensionDisplayName": "Dim2" - } - ], - "dataStartFrom": "2020-08-09T00:00:00Z", - "dataSourceType": "AzureBlob", - "timestampColumn": "Timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": null, - "needRollup": "NoRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "None", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-16T17:34:40Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "container": "adsample", - "connectionString": "Sanitized", - "blobTemplate": "%Y/%m/%d/%h/JsonFormatV2.json", - "jsonFormatVersion": "V2" - } - }, - { - "dataFeedId": "9860df01-e740-40ec-94a2-6351813552ba", - "dataFeedName": "azsqlDatafeed", - "metrics": [ - { - "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", - "metricName": "cost", - "metricDisplayName": "cost", - "metricDescription": "" - }, - { - "metricId": "a98a72e6-18ab-4dab-bac4-3db605691bca", - "metricName": "revenue", - "metricDisplayName": "revenue", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "category", - "dimensionDisplayName": "category" - }, - { - "dimensionName": "city", - "dimensionDisplayName": "city" - } - ], - "dataStartFrom": "2020-08-30T00:00:00Z", - "dataSourceType": "SqlServer", - "timestampColumn": "timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": "__SUM__", - "needRollup": "NeedRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "Sum", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-05T18:56:43Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "connectionString": "Sanitized", - "query": "select * from adsample2 where Timestamp = @StartTime" - } - }, - { - "dataFeedId": "a4030af9-4419-4d3a-a2cc-49022cf54914", - "dataFeedName": "testDataFeed1", - "metrics": [ - { - "metricId": "efa9adb3-7342-494b-a6f1-427021e75ad6", - "metricName": "Metric1", - "metricDisplayName": "Metric1", - "metricDescription": "" - }, - { - "metricId": "a1948021-0002-4c37-be71-eaaa29f1e2e7", - "metricName": "Metric2", - "metricDisplayName": "Metric2", - "metricDescription": "" - } - ], - "dimension": [ - { - "dimensionName": "Dim1", - "dimensionDisplayName": "Dim1" - }, - { - "dimensionName": "Dim2", - "dimensionDisplayName": "Dim2" - } - ], - "dataStartFrom": "2020-01-01T00:00:00Z", - "dataSourceType": "AzureBlob", - "timestampColumn": "Timestamp", - "startOffsetInSeconds": 0, - "maxQueryPerMinute": 30.0, - "granularityName": "Daily", - "granularityAmount": null, - "allUpIdentification": "__SUM__", - "needRollup": "NeedRollup", - "fillMissingPointType": "SmartFilling", - "fillMissingPointValue": 0.0, - "rollUpMethod": "Sum", - "rollUpColumns": [], - "dataFeedDescription": "", - "stopRetryAfterInSeconds": -1, - "minRetryIntervalInSeconds": -1, - "maxConcurrency": -1, - "viewMode": "Private", - "admins": [ - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com", - "foo@contoso.com" - ], - "viewers": [], - "creator": "foo@contoso.com", - "status": "Active", - "createdTime": "2020-10-02T19:20:53Z", - "isAdmin": true, - "actionLinkTemplate": "", - "dataSourceParameter": { - "container": "adsample", - "connectionString": "Sanitized", - "blobTemplate": "%Y/%m/%d/%h/JsonFormatV2.json", - "jsonFormatVersion": "v2" - } - } - ], - "@nextLink": null - } - } - ], - "Variables": { - "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", - "METRICSADVISOR_ENDPOINT_SUFFIX": null, - "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", - "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1266304587" - } -} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstanceAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(False).json similarity index 70% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstanceAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(False).json index c8b1f31cf600..d34b8a5d0fd9 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstanceAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(False).json @@ -8,10 +8,10 @@ "Content-Length": "268", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-11262dcee214e745a063835122ed665c-6672c017da07f440-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4acc973067514c40adc864bd8b9c4042-b9e020a232351e4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "0856026a22731e56a6de956af2260200", + "x-ms-client-request-id": "ea4ed28b9ebfb36c040e35deeb7e0fb8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -21,7 +21,7 @@ "blobTemplate": "template" }, "dataSourceType": "AzureBlob", - "dataFeedName": "dataFeedcYx42hKN", + "dataFeedName": "dataFeed0ppyfHby", "granularityName": "Daily", "metrics": [ { @@ -32,47 +32,47 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "cd267491-e757-4a62-9e41-f973086358bb", + "apim-request-id": "6ec254d9-e737-4966-af87-b32e1f04502c", "Content-Length": "0", - "Date": "Wed, 30 Dec 2020 23:22:16 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/c323ae4c-427b-4d84-8d1a-5608d61aa527", + "Date": "Tue, 19 Jan 2021 17:58:32 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b94724fd-ad45-461f-9a65-05e3743b259e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "553", - "x-request-id": "cd267491-e757-4a62-9e41-f973086358bb" + "x-envoy-upstream-service-time": "411", + "x-request-id": "6ec254d9-e737-4966-af87-b32e1f04502c" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/c323ae4c-427b-4d84-8d1a-5608d61aa527", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b94724fd-ad45-461f-9a65-05e3743b259e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-059a53b7ab1e6042b305fccb946b7408-3ed42748708b3943-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-04c420288efc234e9890fe9879cc1d14-6b94e9a4c962cc42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "eab1671b3e3cc55aae1ab0116858eab3", + "x-ms-client-request-id": "d1f36c28391f199fcf8db42b49de2a45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4c82370-c65e-43da-8b84-0e3785bfd515", + "apim-request-id": "2a1ab85e-81f4-458d-9e56-05be10e15901", "Content-Length": "980", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Dec 2020 23:22:16 GMT", + "Date": "Tue, 19 Jan 2021 17:58:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "157", - "x-request-id": "f4c82370-c65e-43da-8b84-0e3785bfd515" + "x-envoy-upstream-service-time": "154", + "x-request-id": "2a1ab85e-81f4-458d-9e56-05be10e15901" }, "ResponseBody": { - "dataFeedId": "c323ae4c-427b-4d84-8d1a-5608d61aa527", - "dataFeedName": "dataFeedcYx42hKN", + "dataFeedId": "b94724fd-ad45-461f-9a65-05e3743b259e", + "dataFeedName": "dataFeed0ppyfHby", "metrics": [ { - "metricId": "7814a23c-094c-4439-97bc-492f23085c6b", + "metricId": "c2ba288e-e44f-4cb2-828a-9a4fd30f4788", "metricName": "cost", "metricDisplayName": "cost", "metricDescription": "" @@ -103,7 +103,7 @@ "viewers": [], "creator": "foo@contoso.com", "status": "Active", - "createdTime": "2020-12-30T23:22:16Z", + "createdTime": "2021-01-19T17:58:32Z", "isAdmin": true, "actionLinkTemplate": "", "dataSourceParameter": { @@ -114,17 +114,17 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/c323ae4c-427b-4d84-8d1a-5608d61aa527", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b94724fd-ad45-461f-9a65-05e3743b259e", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "619", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2b3982a3c4f38640b94315f86a51451d-f2d12e87a06e4d4e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-939f7dc515ec8b42b01582d15f75a966-40d38ed6a4097b49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "4f8133ceec04760b153af7647400b46a", + "x-ms-client-request-id": "1eb14278c0cabc195111b3d621354203", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -134,7 +134,7 @@ "blobTemplate": "template" }, "dataSourceType": "AzureBlob", - "dataFeedName": "dataFeedcYx42hKN", + "dataFeedName": "dataFeed0ppyfHby", "dataFeedDescription": "This data feed was created to test the .NET client.", "timestampColumn": "", "dataStartFrom": "2020-08-01T00:00:00Z", @@ -156,46 +156,46 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "25cc4a32-4d73-4226-9345-f74b00b649cf", + "apim-request-id": "95476e8b-98d8-4ab7-9036-725a286d8d57", "Content-Length": "0", - "Date": "Wed, 30 Dec 2020 23:22:17 GMT", + "Date": "Tue, 19 Jan 2021 17:58:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "640", - "x-request-id": "25cc4a32-4d73-4226-9345-f74b00b649cf" + "x-envoy-upstream-service-time": "679", + "x-request-id": "95476e8b-98d8-4ab7-9036-725a286d8d57" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/c323ae4c-427b-4d84-8d1a-5608d61aa527", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b94724fd-ad45-461f-9a65-05e3743b259e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-534649a07b15e248ab327a2c3f41de2a-fc654be24c3e7e42-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4ddaa435052f4746861d9157c3375c56-ff6fdf90502d894e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9f4557dc86ad2cafa89059587244b64e", + "x-ms-client-request-id": "4eff48b54e10516c33351a32ea416925", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07711ad1-2090-460a-a2e3-8bd9c3e06b0f", + "apim-request-id": "85805454-c10e-4eb5-a70c-a731219f02bd", "Content-Length": "1031", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Dec 2020 23:22:17 GMT", + "Date": "Tue, 19 Jan 2021 17:58:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "153", - "x-request-id": "07711ad1-2090-460a-a2e3-8bd9c3e06b0f" + "x-envoy-upstream-service-time": "175", + "x-request-id": "85805454-c10e-4eb5-a70c-a731219f02bd" }, "ResponseBody": { - "dataFeedId": "c323ae4c-427b-4d84-8d1a-5608d61aa527", - "dataFeedName": "dataFeedcYx42hKN", + "dataFeedId": "b94724fd-ad45-461f-9a65-05e3743b259e", + "dataFeedName": "dataFeed0ppyfHby", "metrics": [ { - "metricId": "7814a23c-094c-4439-97bc-492f23085c6b", + "metricId": "c2ba288e-e44f-4cb2-828a-9a4fd30f4788", "metricName": "cost", "metricDisplayName": "cost", "metricDescription": "" @@ -226,7 +226,7 @@ "viewers": [], "creator": "foo@contoso.com", "status": "Active", - "createdTime": "2020-12-30T23:22:16Z", + "createdTime": "2021-01-19T17:58:32Z", "isAdmin": true, "actionLinkTemplate": "", "dataSourceParameter": { @@ -237,37 +237,37 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/c323ae4c-427b-4d84-8d1a-5608d61aa527", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b94724fd-ad45-461f-9a65-05e3743b259e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec41a881009bac4da61cdc3585b546e5-e5c33358984b9c4c-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f982ac034368304c9e2918ce266225d6-9f70d776309f6244-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "be9ce1f3b3a42efb5c3ad50246f551ae", + "x-ms-client-request-id": "a965f0e4f1cd67ee53367f0e86c9f89a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "5aa05ea0-eed2-4503-943f-6f654b3e5317", + "apim-request-id": "16d246c1-4d79-4a5d-a139-3ae7b42ba046", "Content-Length": "0", - "Date": "Wed, 30 Dec 2020 23:22:18 GMT", + "Date": "Tue, 19 Jan 2021 17:58:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "286", - "x-request-id": "5aa05ea0-eed2-4503-943f-6f654b3e5317" + "x-envoy-upstream-service-time": "398", + "x-request-id": "16d246c1-4d79-4a5d-a139-3ae7b42ba046" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2020-12-30T15:22:17.9723451-08:00", + "DateTimeOffsetNow": "2021-01-19T09:58:33.6691916-08:00", "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1002827387" + "RandomSeed": "855577628" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(False)Async.json similarity index 70% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(False)Async.json index d9f3458e6402..a3bd5c0a2286 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "268", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d88d30cc65cac1478e9a96471a9c9f15-bb757d30a914804a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-243ffad2f9dd9c4a8142780f6e3c5ff5-ec110e047adce749-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5c342c12792273fce9607f025a0c4b4a", + "x-ms-client-request-id": "3ec8125165b7b09911fba127d5c0f6c2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -21,7 +21,7 @@ "blobTemplate": "template" }, "dataSourceType": "AzureBlob", - "dataFeedName": "dataFeedW7RszRKr", + "dataFeedName": "dataFeedJUUoOyzs", "granularityName": "Daily", "metrics": [ { @@ -32,47 +32,47 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "621fa2ad-dcb2-4d9a-916f-e70a626b8d33", + "apim-request-id": "bb2da358-fb9e-4903-a296-98bc514a89d0", "Content-Length": "0", - "Date": "Thu, 31 Dec 2020 18:09:08 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d6fc9141-aa9a-4020-9103-2464d7f57ee1", + "Date": "Tue, 19 Jan 2021 17:58:44 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "765", - "x-request-id": "621fa2ad-dcb2-4d9a-916f-e70a626b8d33" + "x-envoy-upstream-service-time": "646", + "x-request-id": "bb2da358-fb9e-4903-a296-98bc514a89d0" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d6fc9141-aa9a-4020-9103-2464d7f57ee1", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-abc925b3cc669346a197db96662125d4-f5bf3e3ca5ce4246-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0c5e502c3f88f54ab96d769e28c87b85-42b3771370285946-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "0b0be49fda79ead112c6cb60acdd8e4a", + "x-ms-client-request-id": "09a50511a9b7078bced7617cde7a6413", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3fa36230-b1cb-4070-95ac-92fee844b98b", + "apim-request-id": "f2dbb722-3ffc-4932-8f6c-10b2705cd6fa", "Content-Length": "980", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 31 Dec 2020 18:09:08 GMT", + "Date": "Tue, 19 Jan 2021 17:58:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "309", - "x-request-id": "3fa36230-b1cb-4070-95ac-92fee844b98b" + "x-envoy-upstream-service-time": "159", + "x-request-id": "f2dbb722-3ffc-4932-8f6c-10b2705cd6fa" }, "ResponseBody": { - "dataFeedId": "d6fc9141-aa9a-4020-9103-2464d7f57ee1", - "dataFeedName": "dataFeedW7RszRKr", + "dataFeedId": "d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", + "dataFeedName": "dataFeedJUUoOyzs", "metrics": [ { - "metricId": "280f02e4-a654-4e6c-a80c-ab2a5dd7c147", + "metricId": "a5714b06-d53c-4d1a-b972-ffae1bd25841", "metricName": "cost", "metricDisplayName": "cost", "metricDescription": "" @@ -103,7 +103,7 @@ "viewers": [], "creator": "foo@contoso.com", "status": "Active", - "createdTime": "2020-12-31T18:09:08Z", + "createdTime": "2021-01-19T17:58:45Z", "isAdmin": true, "actionLinkTemplate": "", "dataSourceParameter": { @@ -114,17 +114,17 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d6fc9141-aa9a-4020-9103-2464d7f57ee1", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "619", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-55bab2d6de7375438d6b6b1bb283ee61-95bb5185f436e048-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-375a9ab138a23f48a67879d068ddebb8-730c3ac9f39d3542-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "ae954af166edffe48de53006623a4552", + "x-ms-client-request-id": "c08bc879a8e6257e25eaa9541d2a870d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -134,7 +134,7 @@ "blobTemplate": "template" }, "dataSourceType": "AzureBlob", - "dataFeedName": "dataFeedW7RszRKr", + "dataFeedName": "dataFeedJUUoOyzs", "dataFeedDescription": "This data feed was created to test the .NET client.", "timestampColumn": "", "dataStartFrom": "2020-08-01T00:00:00Z", @@ -156,46 +156,46 @@ }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "db58249b-2fcc-44fb-b3c4-9a1cf3688296", + "apim-request-id": "dffdb49b-7246-4eff-a503-922eafce58d0", "Content-Length": "0", - "Date": "Thu, 31 Dec 2020 18:09:10 GMT", + "Date": "Tue, 19 Jan 2021 17:58:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1598", - "x-request-id": "db58249b-2fcc-44fb-b3c4-9a1cf3688296" + "x-envoy-upstream-service-time": "540", + "x-request-id": "dffdb49b-7246-4eff-a503-922eafce58d0" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d6fc9141-aa9a-4020-9103-2464d7f57ee1", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cb93d3114325c447a2a0a51317f7084c-32ed31fde9246446-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c791391b7453df46af8594b3d19e9653-9408ee6f7d1f844a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "31e9a829a3a438c95b494a5cae9bc60c", + "x-ms-client-request-id": "541e67037f47a7c186c070df041cd196", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "264c07cf-6779-4ebe-9e01-f4832f76b5c2", + "apim-request-id": "60c18e65-c492-4a13-bc66-01f186550ae1", "Content-Length": "1031", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 31 Dec 2020 18:09:10 GMT", + "Date": "Tue, 19 Jan 2021 17:58:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "159", - "x-request-id": "264c07cf-6779-4ebe-9e01-f4832f76b5c2" + "x-request-id": "60c18e65-c492-4a13-bc66-01f186550ae1" }, "ResponseBody": { - "dataFeedId": "d6fc9141-aa9a-4020-9103-2464d7f57ee1", - "dataFeedName": "dataFeedW7RszRKr", + "dataFeedId": "d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", + "dataFeedName": "dataFeedJUUoOyzs", "metrics": [ { - "metricId": "280f02e4-a654-4e6c-a80c-ab2a5dd7c147", + "metricId": "a5714b06-d53c-4d1a-b972-ffae1bd25841", "metricName": "cost", "metricDisplayName": "cost", "metricDescription": "" @@ -226,7 +226,7 @@ "viewers": [], "creator": "foo@contoso.com", "status": "Active", - "createdTime": "2020-12-31T18:09:08Z", + "createdTime": "2021-01-19T17:58:45Z", "isAdmin": true, "actionLinkTemplate": "", "dataSourceParameter": { @@ -237,37 +237,37 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d6fc9141-aa9a-4020-9103-2464d7f57ee1", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/d243aa66-73e1-4a11-8bd8-94c9b9a8fd7a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c09589b8251fe14fa219aeb19c78b103-f1bf523fbd347247-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201223.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c8adfb1c68a5d345918fac0112f87fc2-1704eaadbae2484a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "101134d29d77395c000c7d94a9cb88d7", + "x-ms-client-request-id": "0dad8d96353569db8680e3cd0037eaa4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "25e06cb9-54b4-453a-9e0f-92a7f4f51433", + "apim-request-id": "449e08ba-b141-4103-8dd3-650747bbaf0f", "Content-Length": "0", - "Date": "Thu, 31 Dec 2020 18:09:10 GMT", + "Date": "Tue, 19 Jan 2021 17:58:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "321", - "x-request-id": "25e06cb9-54b4-453a-9e0f-92a7f4f51433" + "x-envoy-upstream-service-time": "376", + "x-request-id": "449e08ba-b141-4103-8dd3-650747bbaf0f" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2020-12-31T10:09:10.7118328-08:00", + "DateTimeOffsetNow": "2021-01-19T09:58:46.4166352-08:00", "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "750920589" + "RandomSeed": "38656891" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(True).json new file mode 100644 index 000000000000..69cb94744c15 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(True).json @@ -0,0 +1,266 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "268", + "Content-Type": "application/json", + "traceparent": "00-1df54d0823740b41b476908cdb1c171a-85b38777e918f645-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "304ca13cb81bf305729e6779b2901acf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "connectionString": "Sanitized", + "container": "container", + "blobTemplate": "template" + }, + "dataSourceType": "AzureBlob", + "dataFeedName": "dataFeed0RtRApf2", + "granularityName": "Daily", + "metrics": [ + { + "metricName": "cost" + } + ], + "dataStartFrom": "2020-08-01T00:00:00Z" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "11d39c96-f8be-44ea-a9d2-730263c140a4", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:30 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/0024b523-a476-49fa-917a-298a00179a80", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "358", + "x-request-id": "11d39c96-f8be-44ea-a9d2-730263c140a4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/0024b523-a476-49fa-917a-298a00179a80", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a1243caa5b7fa5469bd405cbcd01d6b9-465e00b7438f9a43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5a80e04d07e916d69a4896caeb3b7b6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6c073a51-d3fc-45b2-9fc9-47169d39a122", + "Content-Length": "1022", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77", + "x-request-id": "6c073a51-d3fc-45b2-9fc9-47169d39a122" + }, + "ResponseBody": { + "dataFeedId": "0024b523-a476-49fa-917a-298a00179a80", + "dataFeedName": "dataFeed0RtRApf2", + "metrics": [ + { + "metricId": "27e4dbc4-6c6d-4630-93a5-8793ef7bd9d5", + "metricName": "cost", + "metricDisplayName": "cost", + "metricDescription": "" + } + ], + "dimension": [], + "dataStartFrom": "2020-08-01T00:00:00Z", + "dataSourceType": "AzureBlob", + "timestampColumn": "", + "startOffsetInSeconds": 0, + "maxQueryPerMinute": 30.0, + "granularityName": "Daily", + "granularityAmount": null, + "allUpIdentification": null, + "needRollup": "NoRollup", + "fillMissingPointType": "PreviousValue", + "fillMissingPointValue": 0.0, + "rollUpMethod": "None", + "rollUpColumns": [], + "dataFeedDescription": "", + "stopRetryAfterInSeconds": -1, + "minRetryIntervalInSeconds": -1, + "maxConcurrency": -1, + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "creator": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "status": "Active", + "createdTime": "2021-01-19T17:58:30Z", + "isAdmin": true, + "actionLinkTemplate": "", + "dataSourceParameter": { + "container": "container", + "connectionString": "Sanitized", + "blobTemplate": "template" + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/0024b523-a476-49fa-917a-298a00179a80", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "640", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-1c350bb5a81b5c4ea6658d8ff5c5fd52-7f5d54981da3e94a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4e8fa3088d90b06ff0ab5f720a017dc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "connectionString": "Sanitized", + "container": "container", + "blobTemplate": "template" + }, + "dataSourceType": "AzureBlob", + "dataFeedName": "dataFeed0RtRApf2", + "dataFeedDescription": "This data feed was created to test the .NET client.", + "timestampColumn": "", + "dataStartFrom": "2020-08-01T00:00:00Z", + "startOffsetInSeconds": 0, + "maxConcurrency": -1, + "minRetryIntervalInSeconds": -1, + "stopRetryAfterInSeconds": -1, + "needRollup": "NoRollup", + "rollUpMethod": "None", + "rollUpColumns": [], + "fillMissingPointType": "PreviousValue", + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "status": "Active", + "actionLinkTemplate": "" + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "051a9c8e-56df-4053-9d04-1ff2399879b9", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "587", + "x-request-id": "051a9c8e-56df-4053-9d04-1ff2399879b9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/0024b523-a476-49fa-917a-298a00179a80", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9862ce0b71ee824ea6713b5fdd32ddeb-ae869591ec0f0049-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cd1d79afab82356aca3595d3223a0737", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e4316c10-b8fa-4551-b666-892e6bea3640", + "Content-Length": "1073", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71", + "x-request-id": "e4316c10-b8fa-4551-b666-892e6bea3640" + }, + "ResponseBody": { + "dataFeedId": "0024b523-a476-49fa-917a-298a00179a80", + "dataFeedName": "dataFeed0RtRApf2", + "metrics": [ + { + "metricId": "27e4dbc4-6c6d-4630-93a5-8793ef7bd9d5", + "metricName": "cost", + "metricDisplayName": "cost", + "metricDescription": "" + } + ], + "dimension": [], + "dataStartFrom": "2020-08-01T00:00:00Z", + "dataSourceType": "AzureBlob", + "timestampColumn": "", + "startOffsetInSeconds": 0, + "maxQueryPerMinute": 30.0, + "granularityName": "Daily", + "granularityAmount": null, + "allUpIdentification": null, + "needRollup": "NoRollup", + "fillMissingPointType": "PreviousValue", + "fillMissingPointValue": 0.0, + "rollUpMethod": "None", + "rollUpColumns": [], + "dataFeedDescription": "This data feed was created to test the .NET client.", + "stopRetryAfterInSeconds": -1, + "minRetryIntervalInSeconds": -1, + "maxConcurrency": -1, + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "creator": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "status": "Active", + "createdTime": "2021-01-19T17:58:30Z", + "isAdmin": true, + "actionLinkTemplate": "", + "dataSourceParameter": { + "container": "container", + "connectionString": "Sanitized", + "blobTemplate": "template" + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/0024b523-a476-49fa-917a-298a00179a80", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-bc9af84f8827bc4c91cac3edba1944fc-79172fe823a1d848-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0e70f923cc00bf3f71d06a3da8640c99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "cf9d24cb-42cd-4181-b6f1-b4c4874860aa", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "220", + "x-request-id": "cf9d24cb-42cd-4181-b6f1-b4c4874860aa" + }, + "ResponseBody": [] + } + ], + "Variables": { + "DateTimeOffsetNow": "2021-01-19T09:58:31.7985190-08:00", + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "675060581" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(True)Async.json new file mode 100644 index 000000000000..b729c23d689a --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/DataFeedLiveTests/UpdateAzureBlobDataFeedWithMinimumSetupAndGetInstance(True)Async.json @@ -0,0 +1,266 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "268", + "Content-Type": "application/json", + "traceparent": "00-2c6854eab643f648a3ffc14a8891a79f-96964b187bcf704e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e74690bd8dfdd07f3d060ec80e327b64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "connectionString": "Sanitized", + "container": "container", + "blobTemplate": "template" + }, + "dataSourceType": "AzureBlob", + "dataFeedName": "dataFeedhYXjOKuv", + "granularityName": "Daily", + "metrics": [ + { + "metricName": "cost" + } + ], + "dataStartFrom": "2020-08-01T00:00:00Z" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "af938cc3-fa2c-4b0b-b9f6-4c986abc2c84", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:43 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "358", + "x-request-id": "af938cc3-fa2c-4b0b-b9f6-4c986abc2c84" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f9a2c644600a5e448519890bafb6daea-63bca1bd714c344c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3b359614de49edaae1d3656a5bbcde52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d4596fd-e3e5-4dcd-bc9b-a7e4c2842041", + "Content-Length": "1022", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "112", + "x-request-id": "6d4596fd-e3e5-4dcd-bc9b-a7e4c2842041" + }, + "ResponseBody": { + "dataFeedId": "b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "dataFeedName": "dataFeedhYXjOKuv", + "metrics": [ + { + "metricId": "1dc5a77e-9795-41a3-a2ce-e5ea76a02f22", + "metricName": "cost", + "metricDisplayName": "cost", + "metricDescription": "" + } + ], + "dimension": [], + "dataStartFrom": "2020-08-01T00:00:00Z", + "dataSourceType": "AzureBlob", + "timestampColumn": "", + "startOffsetInSeconds": 0, + "maxQueryPerMinute": 30.0, + "granularityName": "Daily", + "granularityAmount": null, + "allUpIdentification": null, + "needRollup": "NoRollup", + "fillMissingPointType": "PreviousValue", + "fillMissingPointValue": 0.0, + "rollUpMethod": "None", + "rollUpColumns": [], + "dataFeedDescription": "", + "stopRetryAfterInSeconds": -1, + "minRetryIntervalInSeconds": -1, + "maxConcurrency": -1, + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "creator": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "status": "Active", + "createdTime": "2021-01-19T17:58:43Z", + "isAdmin": true, + "actionLinkTemplate": "", + "dataSourceParameter": { + "container": "container", + "connectionString": "Sanitized", + "blobTemplate": "template" + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "640", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-0d9fa6c324555c4da7dde08f7518e547-9ed36a2a76ef4846-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8e436af77c6f71bb21b9f1da2ea2633d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dataSourceParameter": { + "connectionString": "Sanitized", + "container": "container", + "blobTemplate": "template" + }, + "dataSourceType": "AzureBlob", + "dataFeedName": "dataFeedhYXjOKuv", + "dataFeedDescription": "This data feed was created to test the .NET client.", + "timestampColumn": "", + "dataStartFrom": "2020-08-01T00:00:00Z", + "startOffsetInSeconds": 0, + "maxConcurrency": -1, + "minRetryIntervalInSeconds": -1, + "stopRetryAfterInSeconds": -1, + "needRollup": "NoRollup", + "rollUpMethod": "None", + "rollUpColumns": [], + "fillMissingPointType": "PreviousValue", + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "status": "Active", + "actionLinkTemplate": "" + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "b276ff7d-57d1-45c8-91c0-f755181ff8dd", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "594", + "x-request-id": "b276ff7d-57d1-45c8-91c0-f755181ff8dd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-10759093a2c1694a929ae1c7e059d33f-50afdcf36e3be646-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e2fbc91d23eade6ae658052a27157581", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "05e714b6-a018-49a3-a018-07c419f4133d", + "Content-Length": "1073", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69", + "x-request-id": "05e714b6-a018-49a3-a018-07c419f4133d" + }, + "ResponseBody": { + "dataFeedId": "b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "dataFeedName": "dataFeedhYXjOKuv", + "metrics": [ + { + "metricId": "1dc5a77e-9795-41a3-a2ce-e5ea76a02f22", + "metricName": "cost", + "metricDisplayName": "cost", + "metricDescription": "" + } + ], + "dimension": [], + "dataStartFrom": "2020-08-01T00:00:00Z", + "dataSourceType": "AzureBlob", + "timestampColumn": "", + "startOffsetInSeconds": 0, + "maxQueryPerMinute": 30.0, + "granularityName": "Daily", + "granularityAmount": null, + "allUpIdentification": null, + "needRollup": "NoRollup", + "fillMissingPointType": "PreviousValue", + "fillMissingPointValue": 0.0, + "rollUpMethod": "None", + "rollUpColumns": [], + "dataFeedDescription": "This data feed was created to test the .NET client.", + "stopRetryAfterInSeconds": -1, + "minRetryIntervalInSeconds": -1, + "maxConcurrency": -1, + "viewMode": "Private", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "viewers": [], + "creator": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "status": "Active", + "createdTime": "2021-01-19T17:58:43Z", + "isAdmin": true, + "actionLinkTemplate": "", + "dataSourceParameter": { + "container": "container", + "connectionString": "Sanitized", + "blobTemplate": "template" + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/dataFeeds/b9e9092f-3525-4c2f-b2d1-bd4fd8badc30", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1829745117e5b94e8220f95cc1c7fd7c-e1fe2312a737374a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a3d1bc27edee98f4dbc3198fedd0be3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "b0d27cbb-0620-4a09-8179-f84e40514370", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "264", + "x-request-id": "b0d27cbb-0620-4a09-8179-f84e40514370" + }, + "ResponseBody": [] + } + ], + "Variables": { + "DateTimeOffsetNow": "2021-01-19T09:58:44.3989560-08:00", + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "853461122" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(False).json similarity index 68% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(False).json index fc04801aa4df..8bfe8edda7d8 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(False).json @@ -8,10 +8,10 @@ "Content-Length": "253", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1331c92b728f994b8acaef34b8328f17-7a4a143319e1274e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2c50d86a70f7fc459d6fdf5b745c1369-50297dbf5656a84a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5cd9c9665a32524a463dc7dcd75a5bee", + "x-ms-client-request-id": "e65921c29d0f6e5f5164c5b578dd5daa", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -31,44 +31,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "d3cd474f-a3e6-4fa7-ba40-252db80e6cd9", + "apim-request-id": "3d1c8620-1702-4502-8a00-5e30170dafdb", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:40 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/52d96f56-5e37-4967-ab2a-5f4dbdffbb68", + "Date": "Tue, 19 Jan 2021 17:42:44 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/47a18850-ffbd-480c-88d7-5fc5366268d3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "354", - "x-request-id": "d3cd474f-a3e6-4fa7-ba40-252db80e6cd9" + "x-envoy-upstream-service-time": "330", + "x-request-id": "3d1c8620-1702-4502-8a00-5e30170dafdb" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/52d96f56-5e37-4967-ab2a-5f4dbdffbb68", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/47a18850-ffbd-480c-88d7-5fc5366268d3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0fae1009185a624cb2696281048c8384-14ef07648566ff42-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e10e2d915041954fb8b67f90544d0f2a-65ac93de006b1c40-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "623f258c6c9f12cf42cf1ecef83b29d4", + "x-ms-client-request-id": "1d5f3b51e9e8aa3b4a6b134145ca740e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b473d2e-2147-400c-91f3-8e8a93945866", + "apim-request-id": "e541b4bd-690a-4831-834d-57e4e3c73cfe", "Content-Length": "464", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:40 GMT", + "Date": "Tue, 19 Jan 2021 17:42:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "127", - "x-request-id": "6b473d2e-2147-400c-91f3-8e8a93945866" + "x-envoy-upstream-service-time": "149", + "x-request-id": "e541b4bd-690a-4831-834d-57e4e3c73cfe" }, "ResponseBody": { - "feedbackId": "52d96f56-5e37-4967-ab2a-5f4dbdffbb68", - "createdTime": "2020-12-15T01:34:41.002Z", + "feedbackId": "47a18850-ffbd-480c-88d7-5fc5366268d3", + "createdTime": "2021-01-19T17:42:45.632Z", "userPrincipal": "foo@contoso.com", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "dimensionFilter": { @@ -89,11 +89,11 @@ } ], "Variables": { - "DateTimeOffsetNow": "2020-12-14T17:34:41.2377008-08:00", + "DateTimeOffsetNow": "2021-01-19T09:42:45.9319218-08:00", "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1523943939" + "RandomSeed": "917803497" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(False)Async.json similarity index 67% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(False)Async.json index 31adfd5023fa..62930c28de69 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "253", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-85e9b68ec70e594a9a35a53759cc0219-9dbc318f27680149-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b9793c43dbfb7b4e8b7bd0be98fb5932-e91bf3e5840f2a46-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9eed43dd3ddbae30a9a0146bfa858c3d", + "x-ms-client-request-id": "c7b1134784660d8014ead549346daece", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -31,44 +31,44 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "961d545e-fdd1-4c7e-b3fb-26e6e7314775", + "apim-request-id": "a230021c-edb8-4768-9c3a-a3fd1e2a3477", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:45 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/bd411ea6-d52c-4e7f-aa0f-9193bfbc9a46", + "Date": "Tue, 19 Jan 2021 17:42:53 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/8935fa65-b9a2-4332-92ac-ceaed102e385", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "269", - "x-request-id": "961d545e-fdd1-4c7e-b3fb-26e6e7314775" + "x-envoy-upstream-service-time": "336", + "x-request-id": "a230021c-edb8-4768-9c3a-a3fd1e2a3477" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/bd411ea6-d52c-4e7f-aa0f-9193bfbc9a46", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/8935fa65-b9a2-4332-92ac-ceaed102e385", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a699ab41c5031f43ac3148e97ddfcbdc-e76c82a2a57c3c47-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-cfaea4cfc05a7740b57219d0ab2ed069-5593f0a72b0bbe46-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "3f110beb3a1ad642ed226e1c8a8695c8", + "x-ms-client-request-id": "b84e0369d6f7d934338f4bae9fa2e7bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47bec9f0-387c-4306-a8f7-00825cb4e78c", - "Content-Length": "463", + "apim-request-id": "e94af438-d8b0-427d-b0bf-7d516ef4e2d3", + "Content-Length": "464", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:45 GMT", + "Date": "Tue, 19 Jan 2021 17:42:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85", - "x-request-id": "47bec9f0-387c-4306-a8f7-00825cb4e78c" + "x-envoy-upstream-service-time": "126", + "x-request-id": "e94af438-d8b0-427d-b0bf-7d516ef4e2d3" }, "ResponseBody": { - "feedbackId": "bd411ea6-d52c-4e7f-aa0f-9193bfbc9a46", - "createdTime": "2020-12-15T01:34:46.09Z", + "feedbackId": "8935fa65-b9a2-4332-92ac-ceaed102e385", + "createdTime": "2021-01-19T17:42:54.662Z", "userPrincipal": "foo@contoso.com", "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", "dimensionFilter": { @@ -89,11 +89,11 @@ } ], "Variables": { - "DateTimeOffsetNow": "2020-12-14T17:34:46.2758672-08:00", + "DateTimeOffsetNow": "2021-01-19T09:42:54.9123835-08:00", "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1488993613" + "RandomSeed": "1925022022" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(True).json new file mode 100644 index 000000000000..86a628690422 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(True).json @@ -0,0 +1,95 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "253", + "Content-Type": "application/json", + "traceparent": "00-f5ff1dbbeb4cd84492875e4560a3646c-36d1c527c2867747-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fe62ba1d7b3c9ee21e9cd684d94de05c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "feedbackType": "Anomaly", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "fa8d0930-701f-4ffa-8bac-d7a5d6b4f25b", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:42:44 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/008612a2-6724-4a17-b760-5f86d8d02f2f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "243", + "x-request-id": "fa8d0930-701f-4ffa-8bac-d7a5d6b4f25b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/008612a2-6724-4a17-b760-5f86d8d02f2f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b6d5158edec5394f861cd7b32816ae72-9976eab5eae3a741-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1e0be7a3deb62437ce671289808bd4dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fbfcad44-7a9a-42ee-babd-8865f0ec8ea0", + "Content-Length": "485", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69", + "x-request-id": "fbfcad44-7a9a-42ee-babd-8865f0ec8ea0" + }, + "ResponseBody": { + "feedbackId": "008612a2-6724-4a17-b760-5f86d8d02f2f", + "createdTime": "2021-01-19T17:42:45.087Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + } + } + ], + "Variables": { + "DateTimeOffsetNow": "2021-01-19T09:42:45.3749534-08:00", + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1044213925" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..fe1d6789498c --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/AddAndGetAnomalyFeedbackWithMinimumSetup(True)Async.json @@ -0,0 +1,95 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "253", + "Content-Type": "application/json", + "traceparent": "00-b0815976c3c8cc41b034e883b33bb683-91a8a47ff7ccaa4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d158882604fd0be29554ed4653a47f50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "feedbackType": "Anomaly", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "a6dd6f25-dd14-4a9d-aff3-22dd0aeeac4d", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:42:53 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/cd53110c-065b-4dd3-95b2-b39072112df2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "218", + "x-request-id": "a6dd6f25-dd14-4a9d-aff3-22dd0aeeac4d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/cd53110c-065b-4dd3-95b2-b39072112df2", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-55853821f4dae7478939aab70b325830-02b8cef00a7f2046-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9acc63bac172c5d6d763153455b0ab24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d58a3bf-605e-440c-b6fe-22880bed3e4e", + "Content-Length": "485", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51", + "x-request-id": "8d58a3bf-605e-440c-b6fe-22880bed3e4e" + }, + "ResponseBody": { + "feedbackId": "cd53110c-065b-4dd3-95b2-b39072112df2", + "createdTime": "2021-01-19T17:42:54.172Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + } + } + ], + "Variables": { + "DateTimeOffsetNow": "2021-01-19T09:42:54.3514159-08:00", + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1437913726" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(False).json similarity index 55% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(False).json index 49571579aadb..8f1de5e5f36f 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(False).json @@ -8,9 +8,10 @@ "Content-Length": "51", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-dfceb101de8a9f48a91868c953277f22-cabf343cacf3b045-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5cfa7cf60635d77a0bbd85c6ab3ef32d", + "x-ms-client-request-id": "215335a1d9ec24896c4d081d1650cb60", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -18,17 +19,54816 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6fda2e1-7c59-43b4-9a4c-0e7d0d6d096e", - "Content-Length": "1488413", + "apim-request-id": "fa24ca7d-2542-412c-b63f-8704d2c0a1bd", + "Content-Length": "2690396", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:48 GMT", + "Date": "Tue, 19 Jan 2021 17:42:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "366", - "x-request-id": "b6fda2e1-7c59-43b4-9a4c-0e7d0d6d096e" + "x-envoy-upstream-service-time": "504", + "x-request-id": "fa24ca7d-2542-412c-b63f-8704d2c0a1bd" }, "ResponseBody": { "value": [ + { + "feedbackId": "47a18850-ffbd-480c-88d7-5fc5366268d3", + "createdTime": "2021-01-19T17:42:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "008612a2-6724-4a17-b760-5f86d8d02f2f", + "createdTime": "2021-01-19T17:42:45.087Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ede44c96-2193-4d80-b81a-d6183215fb5d", + "createdTime": "2021-01-19T14:00:57.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1015a268-3ee0-4135-878a-3f6059a99558", + "createdTime": "2021-01-19T13:58:56.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3cb5140c-0d33-4c24-a790-57f93557634d", + "createdTime": "2021-01-19T14:00:56.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bee3b9b-778e-4a3d-8b7c-00a29aa8ebca", + "createdTime": "2021-01-19T14:00:55.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8422038-0e71-4487-b17b-53633b2b9378", + "createdTime": "2021-01-19T14:00:54.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9d0de277-14a1-4bf8-a754-6c18ad1b0ad3", + "createdTime": "2021-01-19T13:56:52.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cbcafbfb-8582-48d3-af3b-649cc9e19602", + "createdTime": "2021-01-19T14:00:53.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9aa1d4cd-ddaf-43c8-8086-8c32f19794a9", + "createdTime": "2021-01-19T14:00:52.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "febcf3f5-b9f6-4711-9df4-d889dd4f3d1e", + "createdTime": "2021-01-19T14:00:48.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "08b88acb-8688-4308-bc0d-3455b6559456", + "createdTime": "2021-01-19T13:57:47.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "347631bc-5265-411a-a2d9-c0fc1ec1ea04", + "createdTime": "2021-01-19T14:00:47.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0806cb5-451c-4ce0-9771-30582cfe35b9", + "createdTime": "2021-01-19T14:00:47.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "15bcfb63-bc14-42ec-aee9-061839326752", + "createdTime": "2021-01-19T14:00:46.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "917acc72-86ef-4e6e-9adc-15df2cacfc5c", + "createdTime": "2021-01-19T14:00:45.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "28f8535d-6378-43d5-9f6e-f5d232c6a7b5", + "createdTime": "2021-01-19T14:00:45.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b0c1c7d-477e-42c4-8ce7-c5502d45e1e4", + "createdTime": "2021-01-19T13:57:42.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d367f764-e2d7-4b28-a5f3-74cee2895fb7", + "createdTime": "2021-01-19T13:56:39.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "697baf50-a35e-4744-b648-c0c461006f86", + "createdTime": "2021-01-19T13:58:32.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "294c76f4-ef62-4538-b940-b590fa8496a2", + "createdTime": "2021-01-19T13:59:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7df6e3fc-19fe-4349-974a-e6646dd85813", + "createdTime": "2021-01-19T13:58:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "63fba0dd-4137-40f9-9740-076f7c556d8c", + "createdTime": "2021-01-19T13:58:28.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6481394f-7249-42d2-9005-9d5b6e5f7bc3", + "createdTime": "2021-01-19T13:59:22.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3d1df1bd-072a-4c32-962c-86e6f5474bab", + "createdTime": "2021-01-19T13:58:17.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9ccf6e9-0470-4fb7-9231-314c7ef2f7df", + "createdTime": "2021-01-19T13:59:02.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9341c2b-c759-408f-ab33-9b9cb6f8024f", + "createdTime": "2021-01-19T13:56:59.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d6aea3f0-9c36-40a3-8229-5124633136c3", + "createdTime": "2021-01-19T13:59:28.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5e9ea17-9c54-4676-a275-6b83f77fb4ba", + "createdTime": "2021-01-19T13:59:28.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1e40a33c-f757-4a58-841d-896f5d818057", + "createdTime": "2021-01-19T13:59:27.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a3527c98-0e5a-4bd7-8bbd-ffa8e00292c9", + "createdTime": "2021-01-19T13:59:26.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "09f5c613-d0bc-433c-8acb-c2266f2790ea", + "createdTime": "2021-01-19T13:59:26.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b7cd843-8394-4074-a60a-510d3a718295", + "createdTime": "2021-01-19T13:59:21.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a83f1b1-5e50-48dc-9cb9-b2d121dd2271", + "createdTime": "2021-01-19T13:59:20.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c4777788-244c-41a9-aed0-48f8ab2a1833", + "createdTime": "2021-01-19T13:59:20.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7893084d-e15c-4313-9ed1-883b871ab0d0", + "createdTime": "2021-01-19T13:59:19.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "af8ba216-402f-4d14-87ab-28b2f2c7213c", + "createdTime": "2021-01-19T13:59:18.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b419dd53-fcf9-4fda-9102-2a0d2e8c1122", + "createdTime": "2021-01-19T13:59:01.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b2887c32-1721-4dba-9338-c03bb97efd91", + "createdTime": "2021-01-19T13:59:01.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30d865ed-4024-46f6-9f03-0f3fcc00906a", + "createdTime": "2021-01-19T13:59:00.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "874db9f6-b4f8-4846-b993-9617c821fbd0", + "createdTime": "2021-01-19T13:59:00.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "346715b1-9065-4d99-802e-27ffebf88787", + "createdTime": "2021-01-19T13:58:59.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1009a511-6fc7-41c9-b055-1d14d11c946c", + "createdTime": "2021-01-19T13:58:55.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad7fe893-4057-459d-b2e0-918ede832075", + "createdTime": "2021-01-19T13:58:54.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "65c8f3ee-ff50-4df0-8053-458efce117a6", + "createdTime": "2021-01-19T13:58:54.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74a8fb65-8ce0-4c3f-ba8b-6193acc9795a", + "createdTime": "2021-01-19T13:58:53.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1eb74126-cecf-4c98-99be-fffb3f80cb0c", + "createdTime": "2021-01-19T13:58:52.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d3da7e5-dd6e-4b04-ac53-c7e3d10b8f20", + "createdTime": "2021-01-19T13:58:31.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f9b93775-d528-41f6-89a6-a96b16d9faae", + "createdTime": "2021-01-19T13:58:31.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "848ed39c-e513-43ab-9054-db022d31d0d5", + "createdTime": "2021-01-19T13:58:30.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "69677d63-a330-48f7-9d00-39f63a52391c", + "createdTime": "2021-01-19T13:58:30.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5a548f36-47b2-493d-b0e4-eff6a4befd89", + "createdTime": "2021-01-19T13:58:29.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "492f4b22-32d6-4137-9dc5-d906e5dbcb96", + "createdTime": "2021-01-19T13:58:27.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cb3ae15-36c0-4d37-8f4d-6d8aa8215159", + "createdTime": "2021-01-19T13:58:27.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "039781d3-ad58-4b87-98f2-85be18785d2b", + "createdTime": "2021-01-19T13:58:27.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85ec2cdd-2603-461a-86ae-02c34fcb1fce", + "createdTime": "2021-01-19T13:58:26.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e72d127c-6637-4872-8751-85c8d53edc52", + "createdTime": "2021-01-19T13:58:26.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2be22f8-59ff-4c31-b42a-04f992409eff", + "createdTime": "2021-01-19T13:58:26.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "497df40f-09a9-4d89-8e24-edc9f13be9f4", + "createdTime": "2021-01-19T13:58:26.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "599dd42a-428f-49b0-be60-dea735103d86", + "createdTime": "2021-01-19T13:58:21.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d48bbdc3-6f15-4ea7-97c4-324153b6a4c2", + "createdTime": "2021-01-19T13:58:20.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a04486f-3165-4d04-ae26-1523ca58df36", + "createdTime": "2021-01-19T13:58:19.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e9f3ddbb-f3b5-4bad-b91c-c572aca698ec", + "createdTime": "2021-01-19T13:58:17.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a43b85c-40f0-4fe9-825b-33e45c10132c", + "createdTime": "2021-01-19T13:58:16.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "57c8339a-73f2-42bd-88f0-c66c5a8f2e9c", + "createdTime": "2021-01-19T13:58:15.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "64cb7e02-126b-4820-9448-9d0c2d0dccef", + "createdTime": "2021-01-19T13:58:15.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a08f3fc4-19c1-47c6-a4b4-9ac75f1a0f33", + "createdTime": "2021-01-19T13:58:14.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ad65cfa-ecc8-4922-8dca-c0046f994b2f", + "createdTime": "2021-01-19T13:57:46.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "52477c92-e87e-419f-a9e9-ffa465cb2357", + "createdTime": "2021-01-19T13:57:45.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbdba9f4-523c-4c36-be5a-856942cd705a", + "createdTime": "2021-01-19T13:57:45.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "95e09ad0-0d5a-4a4a-8625-cd963fa324c3", + "createdTime": "2021-01-19T13:57:44.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "44448b96-8ac6-47fe-8168-15391c41f6ed", + "createdTime": "2021-01-19T13:57:43.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c55df2c-fa46-4ce2-8fe8-aedd79e648f8", + "createdTime": "2021-01-19T13:57:41.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "09a7c3cc-5d33-4a7d-bd9c-a448ec473d3b", + "createdTime": "2021-01-19T13:57:41.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2205c32c-ca6c-4803-b1dc-5027694a1fc0", + "createdTime": "2021-01-19T13:57:40.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0da17f6a-4c32-4423-a307-06ecfb336535", + "createdTime": "2021-01-19T13:57:40.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4878bdbd-098d-41e4-94fd-4a9515248699", + "createdTime": "2021-01-19T13:57:39.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb6086a2-c70d-4df6-b846-2c40f9da9e59", + "createdTime": "2021-01-19T13:56:59.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d0fa41be-d2fc-4496-ae94-beac708855fc", + "createdTime": "2021-01-19T13:56:58.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8b0f8a2-7a0f-4cba-a1a5-07ed3ee034e4", + "createdTime": "2021-01-19T13:56:57.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "baa237db-ab51-42ca-971e-e6bd0c1fb8eb", + "createdTime": "2021-01-19T13:56:56.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6e7543d2-6281-45a8-a3fe-6017e57a5c40", + "createdTime": "2021-01-19T13:56:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1ea80d8-df5d-4b90-856f-aa9a7e0c8ece", + "createdTime": "2021-01-19T13:56:52.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b933dcd1-e3ce-4a15-9812-c9c2921f7669", + "createdTime": "2021-01-19T13:56:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afe3ac5a-7df3-499a-bf56-1848c38ce103", + "createdTime": "2021-01-19T13:56:50.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0450183-0ec4-46da-992b-07da1067cce2", + "createdTime": "2021-01-19T13:56:49.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "eb010e35-b77b-49c6-96f1-2510b41e7d24", + "createdTime": "2021-01-19T13:56:49.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9d7aab6-5925-4223-9ced-7a9988ff6a13", + "createdTime": "2021-01-19T13:56:38.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "04380f9a-4c5c-4f9c-9b63-8191f277c19d", + "createdTime": "2021-01-19T13:56:37.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8b44e4f1-6294-4926-861a-eb970a8da13b", + "createdTime": "2021-01-19T13:56:36.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "898ed7e4-e181-4b3f-9ad8-cfbc6a74362a", + "createdTime": "2021-01-19T13:56:35.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bbcc749c-7f5c-49d9-97ad-b2d73438bf9a", + "createdTime": "2021-01-19T13:56:35.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69d198b4-3d86-4d4a-856c-fb34c0b012c1", + "createdTime": "2021-01-19T13:56:30.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b00fba3-e39a-4ff7-ac62-e983778ec87d", + "createdTime": "2021-01-19T13:56:30.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0b507d2-8192-4db3-9e99-47c8dd97b7c6", + "createdTime": "2021-01-19T13:56:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9c827ea6-ed2a-4138-8e3c-b96b6f869e4a", + "createdTime": "2021-01-19T13:56:28.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8f811069-066c-43ba-b046-2db6e8179bb7", + "createdTime": "2021-01-19T13:56:27.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d957ad4-77ff-4edf-ae39-baf4741ae2fc", + "createdTime": "2021-01-19T13:56:26.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f3798d0-8f23-4e23-8ac2-81df405a4887", + "createdTime": "2021-01-19T13:53:52.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ae36ed2-fc09-4349-b4cc-a88ea0f1e08f", + "createdTime": "2021-01-19T13:51:59.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a8aa20-0c12-42e7-9a64-8f8c407135fd", + "createdTime": "2021-01-19T13:51:57.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb69c325-6ecf-4124-8512-edd78b28231c", + "createdTime": "2021-01-19T13:51:54.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ac5e48c-b6b5-46b6-930c-2715b987417c", + "createdTime": "2021-01-19T13:51:02.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "56fac71a-b794-48ff-b062-da1d396c67e7", + "createdTime": "2021-01-19T13:50:49.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d964bafc-c6ba-4309-8673-7e15e71f1685", + "createdTime": "2021-01-19T13:49:15.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3565340-d655-45b9-800f-d91e049c76f8", + "createdTime": "2021-01-19T13:48:49.272Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc3c5500-b908-4b7c-ab57-5f32b959b214", + "createdTime": "2021-01-19T09:10:05.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1b47c303-964f-4485-b638-3e1f59347001", + "createdTime": "2021-01-19T09:10:05.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8418d4a8-7952-497f-b99a-42fcdfe76e96", + "createdTime": "2021-01-19T09:10:04.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5dbe01a-4789-4684-a6e0-74b8bd9e12a4", + "createdTime": "2021-01-19T09:10:04.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "948a5f11-7cff-4c40-aa65-a40cbf8b3fe9", + "createdTime": "2021-01-19T09:06:10.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "26d5d32c-da25-4aec-b18c-92e11394113c", + "createdTime": "2021-01-19T09:06:09.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0b2a938d-11ad-471d-b2aa-83b5c08988a7", + "createdTime": "2021-01-19T09:06:09.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06055519-8385-4609-a994-0fcb4bfd9586", + "createdTime": "2021-01-19T09:06:08.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5855d515-f18a-49e5-b550-2742d977b17b", + "createdTime": "2021-01-19T08:58:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "748476b8-6937-46fb-a180-2ac88d0d74e7", + "createdTime": "2021-01-19T08:58:38.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6747aad3-7410-4284-82c6-1e60279a0974", + "createdTime": "2021-01-19T08:58:37.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "335205bf-97b6-4008-8b6e-7bf5924df34f", + "createdTime": "2021-01-19T08:58:36.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761564b8-7a84-4625-9bd4-bf2d0d93a97b", + "createdTime": "2021-01-19T08:54:59.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c1542c5-8d4f-42a8-bf5e-d93e0a1b323a", + "createdTime": "2021-01-19T08:54:58.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3387fd61-0bb8-4694-9026-1284bb7d7391", + "createdTime": "2021-01-19T08:54:58.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a2c4398-eb02-4a9d-a4ee-296d0f8e9ba1", + "createdTime": "2021-01-19T08:54:57.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3675b2c3-a11f-4aad-8402-7a0c71c105d2", + "createdTime": "2021-01-19T08:45:45.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45dbb823-45c6-4e67-8554-c18856404c86", + "createdTime": "2021-01-19T08:45:45.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe055248-219f-44ee-a16c-404bbf167d27", + "createdTime": "2021-01-19T08:45:44.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "df531156-b7ad-4469-9e5a-c463882dbc61", + "createdTime": "2021-01-19T08:45:43.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00b00aa3-2317-4678-b8ad-e5d6a2c15c15", + "createdTime": "2021-01-19T08:35:35.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23b1e4f5-2c9c-4b6d-8071-efeb18cf8a65", + "createdTime": "2021-01-19T08:31:26.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cda57caf-5533-497e-895a-1f2492fb02de", + "createdTime": "2021-01-19T08:24:00.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "93153303-1149-4252-8b14-d4a637585e01", + "createdTime": "2021-01-19T08:35:34.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b8c142f-1e9f-4506-8e4b-569ce88acbf9", + "createdTime": "2021-01-19T08:35:33.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2f57064c-8bcd-4863-82e4-c1151e007b74", + "createdTime": "2021-01-19T08:35:32.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dd116d1d-95ba-4415-bd69-25e85bd3f9b5", + "createdTime": "2021-01-19T08:31:25.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b161f8e0-6d9d-4581-aa93-590f07fbdb84", + "createdTime": "2021-01-19T08:31:25.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f39476fd-e1d1-410b-82ac-98184393e784", + "createdTime": "2021-01-19T08:31:24.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "275c3d77-c699-4ab0-b82f-8df43dfdf59e", + "createdTime": "2021-01-19T08:23:59.912Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a7a085b-a677-459d-bcf8-0b0ddb5f5942", + "createdTime": "2021-01-19T08:23:59.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "67ac83b7-7653-4762-849e-4ce0257adb23", + "createdTime": "2021-01-19T08:23:58.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93a4c768-3a6a-4fcc-b0a4-ce6f7d030e48", + "createdTime": "2021-01-19T08:20:28.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36373d9e-ef96-40f1-9f1a-6286448e91a0", + "createdTime": "2021-01-19T08:20:27.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "19ff0c44-54f4-499f-93c1-e8d895a8d05e", + "createdTime": "2021-01-19T08:20:26.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1af2aacb-2f8b-4932-9a5d-d56501640894", + "createdTime": "2021-01-19T08:20:25.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7315a56-e93c-4a17-a6bd-1595d36b1e1e", + "createdTime": "2021-01-19T01:07:39.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2a2feaf4-bb65-48cd-afb0-72f45abbaaee", + "createdTime": "2021-01-19T01:07:39.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e808d27-075b-4b47-85c7-b9e90e3eba71", + "createdTime": "2021-01-19T01:07:38.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9683141-a0b3-40ca-b49a-c20f05e81e7f", + "createdTime": "2021-01-19T01:07:38.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e280721-906e-4b0a-af2d-29446b7ee17f", + "createdTime": "2021-01-19T01:07:37.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe1f385d-6137-49b5-bc18-2324494c5ce5", + "createdTime": "2021-01-19T01:07:37.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "24d2947d-c23c-4566-8d2d-5a8c1cde840d", + "createdTime": "2021-01-19T01:07:33.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ae07c997-4a0c-47c1-90bf-2a0b525f77d2", + "createdTime": "2021-01-19T01:07:32.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c06aa8b0-1355-471e-bb7a-97d9bd61228d", + "createdTime": "2021-01-19T01:07:32.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2487e600-1fcd-48b4-a1a5-5426bec32877", + "createdTime": "2021-01-19T01:07:31.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd743465-f3c8-43ec-8ed4-848bd566ed9d", + "createdTime": "2021-01-19T01:07:31.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fac408f0-672f-48b7-85bf-497f2fc4419c", + "createdTime": "2021-01-19T01:07:30.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd2b4346-d161-4de2-a858-67b634036640", + "createdTime": "2021-01-19T01:07:01.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a9304316-1e78-48b0-9168-4b6a4274cac8", + "createdTime": "2021-01-19T01:07:00.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "121fbc8e-f0f4-41f4-8ab4-712f1ce7085e", + "createdTime": "2021-01-19T01:07:00.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7651503f-461a-477e-9729-c92b1ba74013", + "createdTime": "2021-01-19T01:06:59.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e05d6efe-fae3-4cc2-84ad-37f500714da8", + "createdTime": "2021-01-19T01:06:58.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "45aedc28-d13a-4731-9147-65405d081339", + "createdTime": "2021-01-19T01:06:58.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d1f4f3c-97ea-4d24-9052-cc6be9529ab0", + "createdTime": "2021-01-19T01:06:53.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a811584f-053c-4789-9eaa-d754e72577f9", + "createdTime": "2021-01-19T01:06:53.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1c8dc050-fc78-465e-8ad8-6ff80261e46d", + "createdTime": "2021-01-19T01:06:52.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0af352a-0ad9-494f-9860-f2535d6c9550", + "createdTime": "2021-01-19T01:06:51.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "28742aea-eed2-4416-88be-65dd5d40ae70", + "createdTime": "2021-01-19T01:06:51.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a44c8424-3977-474e-bbbd-bb0124f0eb30", + "createdTime": "2021-01-19T01:06:50.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7a82848-2a4b-46c3-aabe-c7dd92635c57", + "createdTime": "2021-01-19T01:06:49.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5939f944-879e-420a-9082-c1b8e8c622d4", + "createdTime": "2021-01-19T01:06:49.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "243043b9-446e-4526-86cb-f1e17d12243d", + "createdTime": "2021-01-19T01:06:48.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5111ce69-39c0-47b6-b1d3-e1022f67be4d", + "createdTime": "2021-01-19T01:06:47.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6aeb5f11-665c-4680-b395-30475f19a5fe", + "createdTime": "2021-01-19T01:06:47.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "367dde79-f8cb-49be-87e5-805ebd4240bb", + "createdTime": "2021-01-19T01:06:46.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ae5bd15-5ef8-4655-8e2e-2a369da8c1c4", + "createdTime": "2021-01-19T01:06:42.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "25e35e33-4dbc-41a9-87e5-200cc68a20c0", + "createdTime": "2021-01-19T01:06:42.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e9897081-dc5b-4521-8075-be7e719bbbda", + "createdTime": "2021-01-19T01:06:42.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b363b009-3f17-4e98-8bab-27bad07da52c", + "createdTime": "2021-01-19T01:06:41.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "49caaf15-00dd-489d-927c-c20621f17613", + "createdTime": "2021-01-19T01:06:41.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0511533-92a8-4bdf-ac16-8543e4f5cd5f", + "createdTime": "2021-01-19T01:06:40.922Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ac0d4586-fb21-4d48-abdf-f77e7cc65559", + "createdTime": "2021-01-19T01:06:40.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b4599f09-d209-423b-b030-2d6590fcbcf7", + "createdTime": "2021-01-19T01:06:40.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e5ed2cd9-3df7-4e55-b6af-29972bf07803", + "createdTime": "2021-01-19T01:06:40.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f25d3b8f-33a5-4363-ab36-74551409eb12", + "createdTime": "2021-01-19T01:06:39.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0e55feb1-60a1-4791-b661-5130c6bcc2c0", + "createdTime": "2021-01-19T01:06:39.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec7ef9b7-b606-4cf5-9c6f-ac9081d9e439", + "createdTime": "2021-01-19T01:06:38.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef352772-2821-4c20-9113-023fd9d9e8a6", + "createdTime": "2021-01-19T01:06:34.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1279c7c8-4d76-46bc-ab06-620923fd5768", + "createdTime": "2021-01-19T01:06:33.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "86317b4c-7c5b-41c5-83bb-c20f3da93686", + "createdTime": "2021-01-19T01:06:32.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dc284e2a-ffbe-461e-9658-8bdd6e5fac47", + "createdTime": "2021-01-19T01:06:31.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "65e59d89-efbb-4335-8acf-ca106f0d00c3", + "createdTime": "2021-01-19T01:06:31.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9afb068b-f48f-4084-8eec-b32f4da14a14", + "createdTime": "2021-01-19T01:06:30.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baa470a3-6222-43ff-a2bb-507145eca70b", + "createdTime": "2021-01-19T01:06:29.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4e62d072-99f5-4d43-befa-0b3bd28bf60f", + "createdTime": "2021-01-19T01:06:28.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "94cbfee6-d0d5-47e9-9cf3-7438498e374c", + "createdTime": "2021-01-19T01:06:27.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "076e455b-a29b-44ce-8c3d-aa550813168f", + "createdTime": "2021-01-19T01:06:27.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9665b1f3-dab0-4427-9de8-632d7c8e9ecb", + "createdTime": "2021-01-19T01:06:26.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "37cc7d7a-ef74-4f5b-b967-7a23b53fc7c4", + "createdTime": "2021-01-19T01:06:26.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f115db2-4994-4c33-87d7-0f682a62a961", + "createdTime": "2021-01-19T01:06:22.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "44c5cbe0-feba-450f-8263-0fe161072c5e", + "createdTime": "2021-01-19T01:06:21.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "82bde737-b216-4246-9ed7-cc65305296bf", + "createdTime": "2021-01-19T01:06:21.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e7e889fb-d1a4-4642-87ad-1abdd7aa1cd3", + "createdTime": "2021-01-19T01:06:20.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "27de048b-a8db-4e84-85f1-b483be33a89d", + "createdTime": "2021-01-19T01:06:20.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a89f88bf-ea3a-4345-a12e-ed9876417391", + "createdTime": "2021-01-19T01:06:19.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "546674b2-f3c6-47bc-97be-569b576e00d6", + "createdTime": "2021-01-19T01:05:56.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a7dc71d2-bf2a-4431-945d-9259cc6db368", + "createdTime": "2021-01-19T01:05:55.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7514b0e-94be-4ce6-879b-745bca8c6c24", + "createdTime": "2021-01-19T01:05:55.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54cbc164-b48b-4f24-9d59-9e3e86145b06", + "createdTime": "2021-01-19T01:05:54.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cdcc44cf-a69e-4b39-b843-acbf281286cf", + "createdTime": "2021-01-19T01:05:53.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2756fdd1-4f1b-4c6e-9607-a0ab67874027", + "createdTime": "2021-01-19T01:05:53.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ada6147f-ca9b-4936-81df-b1ee371c42f8", + "createdTime": "2021-01-19T01:05:49.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ce57b74e-7c3b-4028-be96-2549c73dafc6", + "createdTime": "2021-01-19T01:05:48.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cea1fdc7-f132-4f06-a0ff-476b94e5e509", + "createdTime": "2021-01-19T01:05:48.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5799355b-becf-47f6-99b4-bdb63795a49a", + "createdTime": "2021-01-19T01:05:47.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b57d961-f870-43e2-944b-8ce9c3bfc4e3", + "createdTime": "2021-01-19T01:05:46.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "baa75995-bbeb-4ab0-86d3-6c58d7355847", + "createdTime": "2021-01-19T01:05:46.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d20a2d9-2e07-4069-9bd6-1928b6d41939", + "createdTime": "2021-01-19T01:03:19.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2efe071c-7398-4633-94d9-2d7ae2826aae", + "createdTime": "2021-01-19T01:03:18.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "61b7ff71-415d-4907-979f-509fa7d846e1", + "createdTime": "2021-01-19T01:03:17.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3522e47-ea83-419d-a16d-0b4809b8cba8", + "createdTime": "2021-01-19T01:03:16.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bdb54d39-06cb-4605-b472-167767431d7e", + "createdTime": "2021-01-19T01:03:15.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "24d47030-9276-46e3-ad15-b2cf6b95e056", + "createdTime": "2021-01-19T01:03:14.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f76714c-b9fb-43a5-aef1-ba8b30069013", + "createdTime": "2021-01-19T01:03:11.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ee774ea-ea47-4979-8e8a-9542fd5398b1", + "createdTime": "2021-01-19T01:03:10.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d92c9d87-9cc0-48b8-8d5a-e3f393e26f46", + "createdTime": "2021-01-19T01:03:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "15298377-2281-4bc8-a20d-6eaa422ee8e4", + "createdTime": "2021-01-19T01:03:09.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "20ed5127-b5c1-4dc2-a7ce-7bb5fdef3547", + "createdTime": "2021-01-19T01:03:09.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "01efea0a-6ec6-4c54-901f-01b62d679678", + "createdTime": "2021-01-19T01:03:08.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43a0ccbf-078a-429d-bbc9-6419135bd0e0", + "createdTime": "2021-01-19T01:03:08.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "73ce71f6-cbc7-466c-b6f3-7394d04b7196", + "createdTime": "2021-01-19T01:03:08.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93588134-6ffa-454b-9df2-d7d2f0042479", + "createdTime": "2021-01-19T01:03:08.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d75ec0a0-6d07-4d23-a6ed-88b532cc4224", + "createdTime": "2021-01-19T01:03:07.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "957540ac-dff5-4a90-94f2-41b24ef33cd4", + "createdTime": "2021-01-19T01:03:06.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "206abe3d-4321-481b-9b7c-d13a504e74ef", + "createdTime": "2021-01-19T01:03:05.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4f3cb4c-43f6-4933-96ed-e733e24c84df", + "createdTime": "2021-01-19T01:03:01.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a03eb23-3b2b-4904-ab5c-4c2270ac2409", + "createdTime": "2021-01-19T01:03:01.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "303dee09-09b6-48b1-a873-47bfa00c73be", + "createdTime": "2021-01-19T01:03:00.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "746ef064-a093-4d36-a5ce-428a9c39eed9", + "createdTime": "2021-01-19T01:02:59.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5929eeb6-11ca-4ddc-a5c2-7431fd83dadb", + "createdTime": "2021-01-19T01:02:58.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0db045a1-8833-4d3a-81aa-72f6b89757d1", + "createdTime": "2021-01-19T01:02:57.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3aeb2208-c8c8-4741-8dd0-a86ff918d028", + "createdTime": "2021-01-19T01:01:00.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71134de1-f939-4fb5-9dbd-a238d586c637", + "createdTime": "2021-01-19T00:59:37.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8a54d6-bac8-45ba-814c-69b8c5b1c822", + "createdTime": "2021-01-19T00:59:19.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2889ddb1-e7a3-4e0d-9458-c122b88a43f7", + "createdTime": "2021-01-19T00:59:11.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf6a3b4c-13c2-4172-8ff7-7317802ecca0", + "createdTime": "2021-01-19T00:58:54.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "607b7c58-f4f5-4464-945d-98a38f4c4a94", + "createdTime": "2021-01-19T00:58:36.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f70b88af-8bf1-4f5f-ba0a-e5f32f7e8c1b", + "createdTime": "2021-01-19T00:55:42.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f201963-2b59-4eb7-bbab-9cb1f572389a", + "createdTime": "2021-01-19T00:55:40.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "447643f9-c3be-4891-85c4-60c70a5a0458", + "createdTime": "2021-01-19T00:26:16.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "69b90675-238c-4fde-a966-18f1dcaef637", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "315e935c-a01c-4e51-8080-e96642d86f5c", + "createdTime": "2021-01-19T00:26:08.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "023331b6-7d33-4b71-ac45-5ff246c565da", + "createdTime": "2021-01-19T00:25:07.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "095884b3-eab8-45f0-a344-ad06cd097e91", + "createdTime": "2021-01-19T00:26:07.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d3698c88-ec8d-4ddc-8ea4-33be8fa46819", + "createdTime": "2021-01-19T00:21:04.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "49f7dcef-d662-4727-b225-a3e5267b2f00", + "createdTime": "2021-01-19T00:25:00.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5d3bfd0f-9856-41f2-9efd-feb93259a221", + "createdTime": "2021-01-19T00:20:56.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bb84562f-9654-4d71-b3e0-60797d9cf6bb", + "createdTime": "2021-01-19T00:25:38.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "98da1c1f-22bc-45dd-8a3a-04081b6fe773", + "createdTime": "2021-01-19T00:25:37.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "35b1ba05-a532-4eb4-887d-b119f8729493", + "createdTime": "2021-01-19T00:25:31.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "fdfe9ba6-c7ac-4c4b-8868-7d6f96dc3f1f", + "createdTime": "2021-01-19T00:20:29.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "238c89f4-dc13-46db-9b94-24bbe8893c41", + "createdTime": "2021-01-19T00:25:30.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8239b457-436b-458c-9dd2-fac29bba3bb0", + "createdTime": "2021-01-19T00:26:27.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0300d75a-1208-43dd-96ec-46631fb7c93f", + "createdTime": "2021-01-19T00:26:26.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b1312aa-0b77-478b-8a3f-77096ae88bf9", + "createdTime": "2021-01-19T00:26:26.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3a11fcb-4b9b-4705-8ad2-5f7ddfa4016a", + "createdTime": "2021-01-19T00:26:25.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "554f3718-a580-4d6b-991b-4422fa3bfb22", + "createdTime": "2021-01-19T00:26:24.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5256ed10-ac40-4e54-99f6-eef5ba220914", + "createdTime": "2021-01-19T00:26:24.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67ca7e28-f386-422b-90cd-80611c770c56", + "createdTime": "2021-01-19T00:26:20.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "96747e4c-95b4-43e5-921c-dd02bcb30dde", + "createdTime": "2021-01-19T00:26:19.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b694a4da-e693-4f81-86d8-35afa3440e80", + "createdTime": "2021-01-19T00:26:19.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "80783a23-30c9-45fb-ae6a-05a028bd2d9f", + "createdTime": "2021-01-19T00:26:18.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "640753b7-b112-4eb7-8399-63544a8c1f7e", + "createdTime": "2021-01-19T00:26:18.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "78ffbb29-9d05-4b3e-9277-f9ee16450910", + "createdTime": "2021-01-19T00:26:17.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3206ea4-6299-4c1f-9f0f-57f0b9a53c75", + "createdTime": "2021-01-19T00:26:15.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8628b076-f53b-4d0b-ba25-24b4dca1a0c0", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "590d7d1c-00c3-447b-8200-18669c208d79", + "createdTime": "2021-01-19T00:26:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f47acb9e-1271-411c-9a90-c76f568323aa", + "createdTime": "2021-01-19T00:26:13.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3a97111-c591-4f78-97b6-63ffff8b6ba2", + "createdTime": "2021-01-19T00:26:13.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "18dcad3e-0518-4b47-b74e-2a893ddebeb1", + "createdTime": "2021-01-19T00:26:13.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "07533e43-0d3b-4e13-99dc-9db0f88b508f", + "createdTime": "2021-01-19T00:26:12.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbed8283-66f0-4287-a18d-d16fa706c6c2", + "createdTime": "2021-01-19T00:26:12.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8695075-c7cd-410e-a01f-63a756dfcb0e", + "createdTime": "2021-01-19T00:26:11.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e71b64ba-7d85-4b82-828b-539a4ba5d64f", + "createdTime": "2021-01-19T00:26:11.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1956d3da-2770-466c-b8ba-7747bf04b4e1", + "createdTime": "2021-01-19T00:26:07.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a03990f4-320e-4cfd-bf9f-213cd71f18c4", + "createdTime": "2021-01-19T00:26:06.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03b4edff-7680-4cad-a83b-b3bd4dff305a", + "createdTime": "2021-01-19T00:26:06.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "825b9bf9-f6b9-4d42-a621-d5ba28c18c77", + "createdTime": "2021-01-19T00:26:06.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0b36c050-a25f-4ea2-999d-d5c130fb9048", + "createdTime": "2021-01-19T00:26:06.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e83e5302-aff0-46a2-9721-2ce1eee7fb64", + "createdTime": "2021-01-19T00:26:05.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f24e52f2-085f-4611-bb48-0c30a5fc164c", + "createdTime": "2021-01-19T00:26:05.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81511988-652a-4b64-a42b-155cb9a86f46", + "createdTime": "2021-01-19T00:26:04.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d5a4c59e-0cab-453b-b73e-561012e02579", + "createdTime": "2021-01-19T00:26:04.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47a65df3-04cf-4e8a-8960-5911cfa60e33", + "createdTime": "2021-01-19T00:26:04.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e858c12e-2812-4441-abc1-41c6482d7814", + "createdTime": "2021-01-19T00:25:38.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "916f1954-ab5a-48a6-8323-4456a527f032", + "createdTime": "2021-01-19T00:25:37.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "05b956f2-812d-4dd6-9b22-d5ed73b126bb", + "createdTime": "2021-01-19T00:25:36.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3d1e8265-44f7-4b6f-8485-9fbef354aa2d", + "createdTime": "2021-01-19T00:25:36.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0aaa780a-7fd5-47da-8ba6-e99af7d097f7", + "createdTime": "2021-01-19T00:25:36.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "616f1dad-9e7a-43a1-b459-fc3f1fbf872c", + "createdTime": "2021-01-19T00:25:35.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9871867b-fc24-480f-919c-b834cf23271b", + "createdTime": "2021-01-19T00:25:35.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df41b57-f4ae-48ab-831b-a9eac26905ed", + "createdTime": "2021-01-19T00:25:35.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "08a138a3-1bd0-472e-9af3-68b3b7278bd2", + "createdTime": "2021-01-19T00:25:34.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f9c170e-a310-4c01-9b23-76de2a782ffe", + "createdTime": "2021-01-19T00:25:33.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f53a8c4-79a5-4b6f-a82d-e31a17c7c575", + "createdTime": "2021-01-19T00:25:31.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cdf0c68c-5631-48f3-a148-1aab94ee4edf", + "createdTime": "2021-01-19T00:25:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "524b18ff-ac3a-46b4-8209-d8407bcb9709", + "createdTime": "2021-01-19T00:25:30.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9877d6cb-016f-4a87-a822-e94a9e96dec9", + "createdTime": "2021-01-19T00:25:29.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d96cf73a-ae64-4537-9aad-1185c1fdc259", + "createdTime": "2021-01-19T00:25:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "acf5e6bd-61ed-490f-852e-eba6cc694b15", + "createdTime": "2021-01-19T00:25:29.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "43a7d62c-921d-4cfd-a14e-da5e1ab7ea1b", + "createdTime": "2021-01-19T00:25:28.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02308a30-b4ed-41b3-8cac-5d4b760dbe43", + "createdTime": "2021-01-19T00:25:28.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b2c9859-7b2e-4b75-a97e-49dbde6a023d", + "createdTime": "2021-01-19T00:25:27.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7f9b252-03ec-455c-85e5-eee4c727d2ce", + "createdTime": "2021-01-19T00:25:27.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07cbe92c-af47-4353-bbf5-d917462a4e18", + "createdTime": "2021-01-19T00:25:06.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5be02e6e-3a0c-49d3-80cb-16ea47e0a8dc", + "createdTime": "2021-01-19T00:25:06.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbc38873-cf2c-4bab-9f22-34f659658422", + "createdTime": "2021-01-19T00:25:05.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "db24ab6c-f112-4af8-91be-c3e049621820", + "createdTime": "2021-01-19T00:25:05.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "809a9c48-54e9-40ea-a80a-17ec6bd7583f", + "createdTime": "2021-01-19T00:25:04.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "508d452f-6003-452a-a1de-f0bb7a699932", + "createdTime": "2021-01-19T00:25:00.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe182ecf-bd7a-40f6-997f-381b3336c49f", + "createdTime": "2021-01-19T00:24:59.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67becf6a-e224-48dc-8704-65471e7c8cfc", + "createdTime": "2021-01-19T00:24:59.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "612d3a6a-e2c8-46d2-8cd5-1a458c24ed61", + "createdTime": "2021-01-19T00:24:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "88e9a13f-75fb-4c1c-9cba-f926711982f3", + "createdTime": "2021-01-19T00:24:57.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2c36b81-46c6-499e-892c-d40c07a68ae2", + "createdTime": "2021-01-19T00:21:04.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0a9a9894-39b5-4426-b68d-9faeaa97747e", + "createdTime": "2021-01-19T00:21:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5166bd87-6a0a-46e7-ae6b-d274f46f0ca7", + "createdTime": "2021-01-19T00:21:01.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "950f915c-b1f1-4c2f-a4ca-2b2252481b70", + "createdTime": "2021-01-19T00:21:00.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "27e68169-afc6-4b5c-96d9-cb3c974aef91", + "createdTime": "2021-01-19T00:21:00.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "361c40cb-a1e1-4c7a-93f7-16f69a86ed6b", + "createdTime": "2021-01-19T00:20:55.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a4dc67bd-ca4d-44c6-ad21-f87a3747be05", + "createdTime": "2021-01-19T00:20:55.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bd82df04-9352-431c-8e01-b7e08fbd41b1", + "createdTime": "2021-01-19T00:20:54.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "857c584d-7651-42a4-a90b-215e65712065", + "createdTime": "2021-01-19T00:20:53.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b8d26670-b552-43b0-b7ee-c201ab617f7f", + "createdTime": "2021-01-19T00:20:52.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16a95a06-fc02-4b66-9a07-237e13542e62", + "createdTime": "2021-01-19T00:20:28.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "25280544-5401-43c6-a610-0500628bc960", + "createdTime": "2021-01-19T00:20:28.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "be101e83-880f-45fa-9ef3-cf44247f0dd0", + "createdTime": "2021-01-19T00:20:27.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "efea6587-2f40-4a4b-b39d-f07aa82a8779", + "createdTime": "2021-01-19T00:20:27.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "65da6265-d6b9-4e0e-9a8b-b35cb5535548", + "createdTime": "2021-01-19T00:20:26.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5209c149-2e13-4465-91f0-f4e1285c4615", + "createdTime": "2021-01-19T00:20:24.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3b3f6df1-036a-4b2c-9174-bcc2e55ade1e", + "createdTime": "2021-01-19T00:20:23.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "640a0a2b-ccb9-45fd-b7de-0347ae8302e5", + "createdTime": "2021-01-19T00:20:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3ef50080-0ac0-4067-86ea-6927e556afe7", + "createdTime": "2021-01-19T00:20:22.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2ec9f8e0-412c-4966-9a31-57475cd3ac91", + "createdTime": "2021-01-19T00:20:21.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e58caf5a-3361-4150-8bb4-cc31246e4790", + "createdTime": "2021-01-19T00:20:21.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7f46c7b-b75e-4435-babc-b277e85e0bf2", + "createdTime": "2021-01-19T00:17:43.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6a601bc-b4f1-4dd2-b4aa-d5f827668762", + "createdTime": "2021-01-19T00:16:19.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d58358a-41af-4acb-9ea7-daf6c8cc5401", + "createdTime": "2021-01-19T00:16:10.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc596c7d-c338-4c70-b1b5-2adb19505ecb", + "createdTime": "2021-01-19T00:16:09.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88f50ab-3d12-4bd7-adf7-9d9e957f7a34", + "createdTime": "2021-01-19T00:16:04.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "895d5a3e-3c57-4c09-b472-160f28c05c1d", + "createdTime": "2021-01-19T00:15:03.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419ee12f-cbb5-4015-b318-c810ba9f1492", + "createdTime": "2021-01-19T00:13:20.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "581600d7-7c17-4f3e-913b-6b8aecad976a", + "createdTime": "2021-01-19T00:12:56.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d21e4462-5537-4daf-9559-118819b0b75d", + "createdTime": "2021-01-18T20:12:04.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64c5744d-82fc-43c9-91ba-78aea74a230c", + "createdTime": "2021-01-18T20:05:55.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f7adb0-bb01-494f-8589-342fe308567e", + "createdTime": "2021-01-18T20:05:49.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d0be9853-ca42-466c-b2a0-a5c55fc094f6", + "createdTime": "2021-01-18T20:09:38.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "eba3a6c5-a4cc-4197-b8b5-20a32e239daf", + "createdTime": "2021-01-18T20:05:22.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1d5786cc-d04d-47b9-bcca-2e6ed1672923", + "createdTime": "2021-01-18T20:07:09.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0e9607c2-41d6-4c58-baa2-b56648ba27d9", + "createdTime": "2021-01-18T20:12:04.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "60912236-9e07-41b2-ad3e-0e4e72ddea8a", + "createdTime": "2021-01-18T20:12:03.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c892741b-ddef-43f9-b38a-5330fb7d3858", + "createdTime": "2021-01-18T20:12:02.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9770ede0-8443-4968-bcec-76d987d855ba", + "createdTime": "2021-01-18T20:09:39.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a93e3eb0-16ee-4465-940c-de7ca38aa9ed", + "createdTime": "2021-01-18T20:09:38.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "79974548-0e76-467a-8a39-8e91f3e3c905", + "createdTime": "2021-01-18T20:09:37.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f663c25b-a759-4add-b6f6-36274ed8613a", + "createdTime": "2021-01-18T20:07:09.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b64690c-5c79-441a-a8aa-30f0d17ddfce", + "createdTime": "2021-01-18T20:07:08.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b291c4b-19e2-455b-9d1e-dd6f1f318da9", + "createdTime": "2021-01-18T20:07:08.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bff967f7-7ab3-471e-9761-f16666b3f1b5", + "createdTime": "2021-01-18T20:05:56.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d114f610-c1ce-4d08-95dd-f0d0a3b14964", + "createdTime": "2021-01-18T20:05:55.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d2504254-6aa7-443f-8008-5363a7f08b49", + "createdTime": "2021-01-18T20:05:54.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a72f005-e577-4f1d-9ff0-a7be8c91de53", + "createdTime": "2021-01-18T20:05:50.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c3a62520-b1c9-4261-b27f-5a415250ab9b", + "createdTime": "2021-01-18T20:05:48.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5ef2c20-6f09-47d1-97e6-fe08ebc73e8a", + "createdTime": "2021-01-18T20:05:48.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbb4d554-4711-4af5-9a6f-88246289ae59", + "createdTime": "2021-01-18T20:05:23.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ec432ed-2b0e-4f3b-a1a4-95a319c983fa", + "createdTime": "2021-01-18T20:05:22.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1a4b4e34-1892-4416-8634-4152d55e5309", + "createdTime": "2021-01-18T20:05:22.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eedfa818-3872-46a3-9f51-9000697eabac", + "createdTime": "2021-01-18T20:05:17.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fea1758e-9142-47df-a8fb-f44a2957c1cb", + "createdTime": "2021-01-18T20:05:16.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e218377b-d686-40bb-ac6c-cfd15e53c65d", + "createdTime": "2021-01-18T20:05:15.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "18485003-b52e-4d85-ab43-e04c12c17118", + "createdTime": "2021-01-18T20:05:15.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d74f3389-944a-44e1-9548-c44e8d612d13", + "createdTime": "2021-01-18T14:02:19.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e69f4669-e8c3-4e22-8616-f03907471634", + "createdTime": "2021-01-18T14:02:14.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fcd41dd-22fd-40fd-b47e-ff305692b292", + "createdTime": "2021-01-18T14:02:13.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3a6f4be3-fe1d-40b7-a985-c1bfde3025d5", + "createdTime": "2021-01-18T14:01:03.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3dc5d5a0-e6c5-4f4a-aee3-ed10cfbd67e4", + "createdTime": "2021-01-18T14:00:59.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b4a26b33-6dd8-4011-8fbb-9615106b12ac", + "createdTime": "2021-01-18T13:58:56.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5f59323e-5c19-4d6e-bdfd-be80214246ca", + "createdTime": "2021-01-18T14:01:43.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9c63c04a-3ebe-4d55-a79f-1e3ecc9c9806", + "createdTime": "2021-01-18T14:01:42.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cfe35f29-243f-4139-bea7-ce89695c6a9a", + "createdTime": "2021-01-18T14:01:37.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9faa75fc-4e5e-41ab-a380-9655d30390c9", + "createdTime": "2021-01-18T14:01:35.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b513e061-217e-4c21-b6e7-6001e505c0e0", + "createdTime": "2021-01-18T14:02:29.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d4c36006-54f9-42ce-a6f7-9f12281347e9", + "createdTime": "2021-01-18T14:02:26.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4f105b31-509b-4454-9f5f-67d530371632", + "createdTime": "2021-01-18T14:02:23.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "47e3cc17-7ed8-4779-a080-454c8cd2198c", + "createdTime": "2021-01-18T14:02:20.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a5bf795a-625c-4dfa-98fd-730ef6e427c0", + "createdTime": "2021-01-18T14:02:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23b9c8dd-208c-4725-8c83-3fc50899c2c7", + "createdTime": "2021-01-18T14:02:28.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9fed2197-4707-4841-b0a6-bebd9bd805c1", + "createdTime": "2021-01-18T14:02:28.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f2c27125-8ca2-467e-85b6-d706422022c9", + "createdTime": "2021-01-18T14:02:27.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6b5f985-4027-4820-935e-b7a96a054f9c", + "createdTime": "2021-01-18T14:02:27.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "648b8a42-8553-4398-8505-a6747ec8979f", + "createdTime": "2021-01-18T14:02:26.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81f088a6-ab52-42cd-893b-a5d3407f1bcd", + "createdTime": "2021-01-18T14:02:25.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33399602-eab0-48a7-802c-0d7e89f60a3d", + "createdTime": "2021-01-18T14:02:25.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "276f0864-875d-41a9-9045-fe401d9fb143", + "createdTime": "2021-01-18T14:02:24.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6ad2ed44-a693-4412-a50f-082374272493", + "createdTime": "2021-01-18T14:02:23.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "889c312e-40dc-471c-87ca-10bb954de1fa", + "createdTime": "2021-01-18T14:02:23.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f1085453-ba3a-4b86-a881-172407296a43", + "createdTime": "2021-01-18T14:02:22.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21266d7d-6989-405e-89dd-1fc0a896bc8c", + "createdTime": "2021-01-18T14:02:22.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "40ce6741-aa60-422e-93e3-eaf8094e60b6", + "createdTime": "2021-01-18T14:02:22.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "13d24587-68ca-46cd-8f2b-6ebb199118b8", + "createdTime": "2021-01-18T14:02:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c29a4d8b-ebf0-4c38-804a-d200b8d995de", + "createdTime": "2021-01-18T14:02:20.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f96ca7fd-ba29-445d-adee-678a586d35a9", + "createdTime": "2021-01-18T14:02:19.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "60632a38-9fde-4a48-8588-8badfde99a5b", + "createdTime": "2021-01-18T14:02:19.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23f08fb4-1192-41c3-b1ad-81d9679ed25f", + "createdTime": "2021-01-18T14:02:18.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "692fbc12-e56c-4745-8413-8df6fd134e55", + "createdTime": "2021-01-18T14:02:18.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5a60d43-6e8d-4bad-a5a1-4366dd79db2f", + "createdTime": "2021-01-18T14:02:18.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44fc4b0d-9c52-48b9-ae92-0f2d81460813", + "createdTime": "2021-01-18T14:02:18.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0afddd9-3596-4796-91ad-c6a53a186688", + "createdTime": "2021-01-18T14:02:17.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ce080e2-6a13-48e6-aa8c-271121ff158e", + "createdTime": "2021-01-18T14:02:17.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0c35506-9c36-4cd8-b3b1-1e2f66fea573", + "createdTime": "2021-01-18T14:02:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6350ae83-1bcb-4c9c-985f-23ac0d353684", + "createdTime": "2021-01-18T14:02:17.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b2f4b5d-47ff-4ca8-a04a-34e64d4e5578", + "createdTime": "2021-01-18T14:02:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ced8ff01-1731-4528-b34d-ac7a4c8a7330", + "createdTime": "2021-01-18T14:02:16.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d0b38b58-d825-42cf-93be-b529797bf0de", + "createdTime": "2021-01-18T14:02:16.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32552c46-42f1-4dc5-a5b1-7389f6622ecf", + "createdTime": "2021-01-18T14:02:15.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34c2db40-9d62-40a4-ac62-e3940be93210", + "createdTime": "2021-01-18T14:02:15.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d76825b-06e7-4c19-a052-1c88417f73d7", + "createdTime": "2021-01-18T14:02:14.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28e18a77-3bf3-4762-88c1-014f70bcb224", + "createdTime": "2021-01-18T14:02:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "74a1396c-72f8-4573-95e2-99426c535ab5", + "createdTime": "2021-01-18T14:02:13.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d5c7d407-a340-4707-a383-17de3304aae7", + "createdTime": "2021-01-18T14:02:12.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e6bf7af5-8476-42ed-adcf-e7210bb6f7c3", + "createdTime": "2021-01-18T14:02:12.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b56a31b-c2f3-4b9f-a7da-db7671d0c1aa", + "createdTime": "2021-01-18T14:02:12.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "617be967-b3d8-4f08-83ca-2c7a4c1c2048", + "createdTime": "2021-01-18T14:02:11.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0be038e-b5eb-4c7b-a422-9b105f021dc2", + "createdTime": "2021-01-18T14:02:11.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "822b1e15-bcee-417c-92b5-894d0fdfdb3e", + "createdTime": "2021-01-18T14:02:10.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4a2755f5-b6d8-4bc1-bc04-4fa5f7746f88", + "createdTime": "2021-01-18T14:02:10.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab20dd75-cf4b-4a94-9d46-e2384e8da92a", + "createdTime": "2021-01-18T14:01:42.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7aae7fab-6765-428d-b26f-a83ad1a09b76", + "createdTime": "2021-01-18T14:01:41.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ba19ce9c-79df-43b4-9ee5-84ebc41b5721", + "createdTime": "2021-01-18T14:01:41.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "daa8ae05-abd2-4e44-89ff-6b0f763efd5f", + "createdTime": "2021-01-18T14:01:41.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a160a02c-4aab-4c13-9050-f6d07ba699ce", + "createdTime": "2021-01-18T14:01:41.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5ef0899-b9f7-4d37-a6b2-f5b8df14f692", + "createdTime": "2021-01-18T14:01:40.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e3f22df-9eaa-4c97-aba6-f88d608f1ba3", + "createdTime": "2021-01-18T14:01:40.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7a0ab9e5-d109-44a3-93da-e3671246ff0b", + "createdTime": "2021-01-18T14:01:40.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8501051f-b446-48fc-b9e5-9c277c3d8c97", + "createdTime": "2021-01-18T14:01:39.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "46cff660-c023-47d6-a616-a831458dce4b", + "createdTime": "2021-01-18T14:01:39.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d73b49c-4c9f-4533-9940-5d6002c3f399", + "createdTime": "2021-01-18T14:01:37.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "287d1ad6-e48c-4d27-b2d6-bb9e409b05d5", + "createdTime": "2021-01-18T14:01:36.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "364da32c-aab7-4110-a6be-c41d6fa9e7ce", + "createdTime": "2021-01-18T14:01:36.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b375ff19-f964-4e40-bbbd-17057af52085", + "createdTime": "2021-01-18T14:01:35.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1bca4249-0009-4bb4-9230-84b75ff1ca7c", + "createdTime": "2021-01-18T14:01:34.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7c9c07d-311b-4436-aee9-820f5324ae44", + "createdTime": "2021-01-18T14:01:34.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff79f82-3407-4e76-acf1-a1769125ab36", + "createdTime": "2021-01-18T14:01:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1530866-8289-49df-b432-4485c7af29c8", + "createdTime": "2021-01-18T14:01:33.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2874c845-e947-4ebc-b842-670f184113ac", + "createdTime": "2021-01-18T14:01:32.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "df786a84-9afa-42a7-a8e1-9cc24e9d963b", + "createdTime": "2021-01-18T14:01:31.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5256282d-8c3c-4aad-8204-3c7aaa5e14fb", + "createdTime": "2021-01-18T14:01:03.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "37e094fa-1ac8-493f-8145-36adcd20ed1d", + "createdTime": "2021-01-18T14:01:02.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b38d251c-ffd7-400c-baf4-c890191bf771", + "createdTime": "2021-01-18T14:01:02.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e7203501-0347-473e-872d-5850083537cb", + "createdTime": "2021-01-18T14:01:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0822a8e6-3819-4fd5-8e23-289c063bc7c4", + "createdTime": "2021-01-18T14:01:01.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e03d045d-a6c2-44f1-a347-219b948b6628", + "createdTime": "2021-01-18T14:00:58.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3eba25fb-2de1-4543-96d1-cb0bebf7dcab", + "createdTime": "2021-01-18T14:00:57.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "90f62e07-1cd5-4189-8e98-ab999b7071f8", + "createdTime": "2021-01-18T14:00:57.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1878717e-e4e9-43e1-a46b-931e2e26a664", + "createdTime": "2021-01-18T14:00:56.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1db1380e-b91b-4a2f-b401-47147f212763", + "createdTime": "2021-01-18T14:00:56.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d6432868-f43e-4154-b443-bd77684c6a78", + "createdTime": "2021-01-18T13:58:19.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c951ad9b-b1ae-4b0d-9614-f12ee0403749", + "createdTime": "2021-01-18T13:58:18.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "427e78ae-f7ac-45d9-a400-b7db2ccb684e", + "createdTime": "2021-01-18T13:58:17.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "18d68ec0-4953-4daa-8491-d7059db94eb9", + "createdTime": "2021-01-18T13:58:17.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e03d7649-8a52-4c1b-a35a-7e4893887cdd", + "createdTime": "2021-01-18T13:58:16.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a4611545-02e6-4a82-9a0a-e87c41476678", + "createdTime": "2021-01-18T13:58:13.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2618ac21-b5c2-4224-8799-feef38e077f9", + "createdTime": "2021-01-18T13:58:13.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a95c5062-f254-4bb2-8789-d14482c4e8ff", + "createdTime": "2021-01-18T13:58:12.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f939b262-7e8e-4c72-ae82-e191ce6a36b2", + "createdTime": "2021-01-18T13:58:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f0ee4243-9437-43b1-9cff-85e87a4f1ee8", + "createdTime": "2021-01-18T13:58:11.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "87548cf0-976c-4bd8-b1a7-96b8bd1e1f46", + "createdTime": "2021-01-18T13:58:10.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65014fcd-bc80-4766-a80f-9e24e0288138", + "createdTime": "2021-01-18T13:52:53.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18bd04ef-e0e1-4f80-8199-f7a5fbaa6eb3", + "createdTime": "2021-01-18T13:52:46.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42e2e8cc-86f0-4020-bcf4-68a720b4d5e3", + "createdTime": "2021-01-18T13:52:34.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb5eaf4d-6880-420b-b16b-9f59453b41d7", + "createdTime": "2021-01-18T13:52:30.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23286deb-bc92-42f8-9e07-5844aac40f6c", + "createdTime": "2021-01-18T13:52:08.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8828c9e7-fdd0-40d0-beb0-adfb8ac8b2fb", + "createdTime": "2021-01-18T13:51:21.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53698aae-9d2e-4c30-a438-ee37bcce8101", + "createdTime": "2021-01-18T13:51:12.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ffcd3c7-5964-422e-a173-712ddeb56dd4", + "createdTime": "2021-01-18T13:49:12.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f6d04bf-0ca4-4044-82be-49b224814f31", + "createdTime": "2021-01-18T09:14:55.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c784ab00-25b7-43aa-8983-8baec5725eac", + "createdTime": "2021-01-18T09:14:54.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed68bdf-5137-4c5f-9ebd-dd399f9fbecc", + "createdTime": "2021-01-18T09:14:54.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5199b0b3-38c1-45c6-ad91-a4f987ec1d9e", + "createdTime": "2021-01-18T09:14:53.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb73c8fc-aba8-43f4-b166-24b0b342012f", + "createdTime": "2021-01-18T09:11:06.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8705feb0-2eef-42cb-a11a-6e84db470088", + "createdTime": "2021-01-18T09:11:06.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdc048b-e7db-48e0-85d6-b58f9331fa1b", + "createdTime": "2021-01-18T09:11:05.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47d57fb3-beea-4927-87f2-cc786900b3f6", + "createdTime": "2021-01-18T09:11:04.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6de583b7-d744-42c9-a95f-18373f17e69c", + "createdTime": "2021-01-18T09:03:31.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "df968310-5768-4bc4-8dd7-fa25b12b35b5", + "createdTime": "2021-01-18T09:03:30.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0d6526a4-93ad-46f8-a5ce-d4c04284a0eb", + "createdTime": "2021-01-18T09:03:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6d0c2aa7-e6c0-4b43-8a0a-0ed5f881b602", + "createdTime": "2021-01-18T09:03:28.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "677dbba1-72e6-4588-bd29-7c47e4653edc", + "createdTime": "2021-01-18T08:59:33.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e0d199a-c8f1-4326-9681-05d43fe47e72", + "createdTime": "2021-01-18T08:59:32.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1c1d49a-7ccd-4423-b2ef-d6a9636f5b8e", + "createdTime": "2021-01-18T08:59:31.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8d3a1709-2e09-4360-804c-23c9b4ce377c", + "createdTime": "2021-01-18T08:59:30.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5517ff8-10ad-47eb-8fe6-2ba530d81f70", + "createdTime": "2021-01-18T08:46:02.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be8aeae6-7f0f-44f8-a4f9-f6acdbdac860", + "createdTime": "2021-01-18T08:46:01.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "228bf853-674f-4d16-9b4b-a570063993e3", + "createdTime": "2021-01-18T08:46:01.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f3fcda7-ed32-4b32-8e05-29d541378220", + "createdTime": "2021-01-18T08:46:00.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea88d538-9e1c-4924-929a-c53100df4206", + "createdTime": "2021-01-18T08:23:29.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25e2a34b-ac95-459c-bb8f-a64c70f60097", + "createdTime": "2021-01-18T08:30:27.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb886c9d-b5aa-4f9c-b783-578409ab5f64", + "createdTime": "2021-01-18T08:34:25.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "627aafa8-bda8-4625-ac59-31509ce0c770", + "createdTime": "2021-01-18T08:34:24.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1efc463-668a-49e9-99a6-0cec894843e1", + "createdTime": "2021-01-18T08:34:23.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8f363d7-eebe-4885-aea9-e9166d8dc177", + "createdTime": "2021-01-18T08:34:22.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed0f68f1-9e13-48ee-952d-9ddc03b27399", + "createdTime": "2021-01-18T08:30:26.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e9c5050e-a428-4310-8794-9d53690a69bc", + "createdTime": "2021-01-18T08:30:25.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37ed9442-ff91-4d11-abcf-f87ab6a2e30a", + "createdTime": "2021-01-18T08:30:24.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47cff8a8-e64a-4dec-93b0-7dda05cee693", + "createdTime": "2021-01-18T08:23:29.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ecdd2489-ae25-4e10-84ee-c9798d76728a", + "createdTime": "2021-01-18T08:23:28.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e3f8e935-4c5a-4dfb-a50f-93c2ebaa660e", + "createdTime": "2021-01-18T08:23:28.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35b63a75-6650-44f0-addb-560a613dd3e3", + "createdTime": "2021-01-18T08:20:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3d35f2e-291e-40f0-b592-1c5229d6026e", + "createdTime": "2021-01-18T08:20:08.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29bbcc1b-1762-459d-adfc-910d1cda2a52", + "createdTime": "2021-01-18T08:20:07.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fb1b6a20-723a-45ea-ab84-3381dc6b5c53", + "createdTime": "2021-01-18T08:20:07.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2322f66d-6b84-4b1f-9b1e-09bf91588e49", + "createdTime": "2021-01-15T22:48:03.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "34039686-a399-49ac-997e-1ac8b1b94a0d", + "createdTime": "2021-01-15T22:48:02.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "609bda38-1b68-4c7b-a1e3-3d1784b9c449", + "createdTime": "2021-01-15T22:48:02.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a00b1fd-c0c3-4d09-b3e3-4bbba74d1e48", + "createdTime": "2021-01-15T22:48:01.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "48b4e84a-18bd-4ca3-8b0d-995776a4ea0a", + "createdTime": "2021-01-15T22:48:01.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "76faffa1-8e1f-4c12-861c-d5c3824eff3c", + "createdTime": "2021-01-15T22:48:01.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "152125f8-2bc3-4438-b75c-1ac2384c1caa", + "createdTime": "2021-01-15T22:48:00.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30c56c19-6dd7-4616-aaf8-e23640ba2afe", + "createdTime": "2021-01-15T22:48:00.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7274c248-d35a-48cd-89e3-6befd9e81203", + "createdTime": "2021-01-15T22:48:00.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "45158b85-5a3e-4fdb-8dec-a6abeff4c49b", + "createdTime": "2021-01-15T22:47:59.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "229bd3b4-9e28-4972-aee3-c640b92cf481", + "createdTime": "2021-01-15T22:47:59.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1f64e0a9-0c5c-4ab4-bfd0-c7e8e9388e12", + "createdTime": "2021-01-15T22:47:58.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e0de04bc-bd2a-44d5-991d-2ee58b94fb62", + "createdTime": "2021-01-15T22:47:57.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f45de2d-abb7-4cfa-b4e5-c01f2b281c70", + "createdTime": "2021-01-15T22:47:57.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d72e4b9-0e98-4d7f-ae10-3077b19e0881", + "createdTime": "2021-01-15T22:47:56.725Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e11ec43-a324-4da6-8b06-1dc686ba13bf", + "createdTime": "2021-01-15T22:47:56.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d57bd594-b0cf-4d1b-8b49-8fd03b3239ab", + "createdTime": "2021-01-15T22:47:55.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "397d4b15-7bdd-489b-a06a-d876195d7220", + "createdTime": "2021-01-15T22:47:54.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4262b3c7-80fc-4b32-b4cd-ad6e7e666c3d", + "createdTime": "2021-01-15T22:47:54.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee93e2ef-f5e8-44e9-8e44-d171069ef989", + "createdTime": "2021-01-15T22:47:54.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "442bcfbc-74d3-46b2-9d06-0d9c0181bd4c", + "createdTime": "2021-01-15T22:47:53.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe6a74e5-ca30-4963-a9bf-27e7661b65d2", + "createdTime": "2021-01-15T22:47:52.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7da25cf-08a4-44f9-bdee-89e1515e9fed", + "createdTime": "2021-01-15T22:47:52.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1af594a3-8c12-4db4-8055-ee1a88fedd45", + "createdTime": "2021-01-15T22:47:51.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0386269a-594a-424d-8518-73c5d607dd07", + "createdTime": "2021-01-15T22:47:47.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e00afb46-54fd-4bb5-89b3-6d1b8b8729fe", + "createdTime": "2021-01-15T22:47:46.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "392289a1-45f2-4bb9-aca8-880ef5ef042c", + "createdTime": "2021-01-15T22:47:46.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a451c7bb-60c6-4c7b-b5f2-c631ec0bf9ac", + "createdTime": "2021-01-15T22:47:45.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1138b388-7541-4d92-9fde-b84c3064fe52", + "createdTime": "2021-01-15T22:47:45.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2c5014d1-e27d-478d-9cc1-b61c2ec62968", + "createdTime": "2021-01-15T22:47:44.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d7b511c-4864-49cb-a597-c46d5fb7f898", + "createdTime": "2021-01-15T22:47:41.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f036f2c9-2ccb-46c6-9c87-acec2b1afadb", + "createdTime": "2021-01-15T22:47:40.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e86da520-1142-49d0-8405-f2c0730011bd", + "createdTime": "2021-01-15T22:47:40.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5fab0592-45fb-466a-b865-7983ad8f084a", + "createdTime": "2021-01-15T22:47:39.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88727778-f4bd-4274-8715-49dcd54fbf88", + "createdTime": "2021-01-15T22:47:39.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "595d260f-840e-423e-92a4-eefc4aeeb52d", + "createdTime": "2021-01-15T22:47:38.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "201e8bac-b1cb-43d5-b6a3-e2438b009792", + "createdTime": "2021-01-15T22:47:32.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e85c7dc2-0464-4e83-97e2-c8599776ce43", + "createdTime": "2021-01-15T22:47:32.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3786674-fa01-4df4-8c10-14244f7cab96", + "createdTime": "2021-01-15T22:47:31.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c1a8408-c23a-48f5-b4a1-bd99bedeb6a3", + "createdTime": "2021-01-15T22:47:31.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "30a58028-c501-45f8-9ac9-4a200bdd806d", + "createdTime": "2021-01-15T22:47:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "10cbf709-0298-4b76-85ef-c13c306f025a", + "createdTime": "2021-01-15T22:47:29.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "883d8fea-983b-42fb-8fe3-479917733af5", + "createdTime": "2021-01-15T22:47:26.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "692d1728-f52e-49be-be09-c8c7242b10b3", + "createdTime": "2021-01-15T22:47:26.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1cb5f785-3ad7-4206-a462-7807d73151e7", + "createdTime": "2021-01-15T22:47:25.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "467e33b1-8021-4ec4-a1c4-85bebcd84bca", + "createdTime": "2021-01-15T22:47:24.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "171a466b-67d1-479c-9de6-1b6518cf89e4", + "createdTime": "2021-01-15T22:47:24.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b862ac66-7563-4200-9eb1-5bafa15a54ca", + "createdTime": "2021-01-15T22:47:23.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b02cd29-5635-44f4-b569-f6d31f4dbd6f", + "createdTime": "2021-01-15T22:46:52.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1e261a38-a863-4ebf-b39b-d57bc5afaf36", + "createdTime": "2021-01-15T22:46:51.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b7eba64-43e3-4baa-bc13-c608a197c955", + "createdTime": "2021-01-15T22:46:51.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6b13d336-f31b-4b2c-a08b-440ed8ac9389", + "createdTime": "2021-01-15T22:46:50.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e442a937-efe6-4a98-b9f1-9bd88bc21d45", + "createdTime": "2021-01-15T22:46:50.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e91cb59-4aa1-4e50-bc76-9f042cb2ca62", + "createdTime": "2021-01-15T22:46:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8ebc80f8-e193-4f8b-98e9-404a022ae87f", + "createdTime": "2021-01-15T22:46:48.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "afc70d81-a0e2-427e-b6bf-c1811b0b2c68", + "createdTime": "2021-01-15T22:46:47.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ed152-709f-4318-af69-abf429218c98", + "createdTime": "2021-01-15T22:46:47.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a46d9c7c-80ae-4bc6-b195-4f6341e365fc", + "createdTime": "2021-01-15T22:46:47.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd6fff20-7031-4efb-ba27-759b01a63dfd", + "createdTime": "2021-01-15T22:46:46.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8198d335-3d22-42ce-b24d-68bf75d93094", + "createdTime": "2021-01-15T22:46:46.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5c230f1-3b66-4304-a9b4-8583b929cbc3", + "createdTime": "2021-01-15T22:46:45.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8e5bee3b-a5e0-4be3-a4ae-e7e89df7c290", + "createdTime": "2021-01-15T22:46:45.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "facf5ab6-dd6c-41b0-919e-31be5d650064", + "createdTime": "2021-01-15T22:45:58.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4fc467-b67f-400a-b1fc-6df0063e37f2", + "createdTime": "2021-01-15T22:45:56.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b0c72571-34b7-4b63-bfa5-16a02145ac55", + "createdTime": "2021-01-15T22:45:56.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93c2e442-c339-4234-af1b-22ef9ef34f1a", + "createdTime": "2021-01-15T22:45:56.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "11513dcb-a253-409c-958a-6f3612d2360c", + "createdTime": "2021-01-15T22:45:55.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "755c07f5-d983-4cd5-8678-ad136ab216c1", + "createdTime": "2021-01-15T22:45:55.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0e1aabb-7e7c-4f8a-bcf1-9b8a8a17a2c9", + "createdTime": "2021-01-15T22:45:54.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "00b428e7-0d0a-4e54-b7b5-d82a4eac95f2", + "createdTime": "2021-01-15T22:45:54.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a785b03-d927-4f3a-92d2-045b19e3f40d", + "createdTime": "2021-01-15T22:45:53.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e8cd296b-3351-4956-b1e0-c1e195c1256f", + "createdTime": "2021-01-15T22:45:52.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03afa5d1-894a-491d-98de-a7e453371075", + "createdTime": "2021-01-15T22:43:49.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8a0973e5-1739-49cb-8dd9-651df370448d", + "createdTime": "2021-01-15T22:43:49.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fc2f2ac-5186-46de-88c6-795438472356", + "createdTime": "2021-01-15T22:43:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "300448ea-4a5e-4091-a9a3-5073fe1afb76", + "createdTime": "2021-01-15T22:43:47.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a2166a97-903e-44f6-a1de-7672052dd729", + "createdTime": "2021-01-15T22:43:46.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "da8714a6-73d6-447e-be24-c177a9d5ff2b", + "createdTime": "2021-01-15T22:43:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7356751a-a52c-47bc-9a1c-27b32fa92d56", + "createdTime": "2021-01-15T22:43:41.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ec5129d-2fca-4c4e-9a43-7e07f13d67b2", + "createdTime": "2021-01-15T22:43:41.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33caf257-38c0-4d8f-b35f-ee0966410209", + "createdTime": "2021-01-15T22:43:40.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cf980399-a0e1-4014-b8e9-46955787c3a3", + "createdTime": "2021-01-15T22:43:39.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "36f4daea-e8d7-40ec-a27e-6fd42d36ee80", + "createdTime": "2021-01-15T22:43:38.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cc1c720c-3614-4d5b-9bf7-137df82e39be", + "createdTime": "2021-01-15T22:43:37.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f77f947-d93d-462d-99f6-50a1caddce23", + "createdTime": "2021-01-15T22:43:06.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "524cecb3-f84e-4475-8a75-dd1d3881ecd6", + "createdTime": "2021-01-15T22:43:05.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a2adc0d-abeb-439d-b24c-b89681a03612", + "createdTime": "2021-01-15T22:43:04.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a7ccf72-6719-47bc-8921-78a0be67226a", + "createdTime": "2021-01-15T22:43:03.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9dcce235-49f1-45aa-8e3d-28f0ccaa9e6f", + "createdTime": "2021-01-15T22:43:02.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec024541-1804-4a80-8252-30bb0f8fcfda", + "createdTime": "2021-01-15T22:42:56.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b5fa1e9-589b-4bb1-9a7a-8779d131d3a0", + "createdTime": "2021-01-15T22:42:52.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5a913dd1-5f68-41b2-b99d-5696cd297950", + "createdTime": "2021-01-15T22:42:51.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4a11b61c-77cc-4cf0-98e1-64c55bb4d89b", + "createdTime": "2021-01-15T22:42:50.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1f5f4aaf-360a-4ce5-a232-5396c2cc170c", + "createdTime": "2021-01-15T22:42:49.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4b392d2-f500-4cd4-8d81-d64a541d9ea0", + "createdTime": "2021-01-15T22:42:47.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec98072a-bcde-43ba-a2da-ad4faf2ade08", + "createdTime": "2021-01-15T22:42:46.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a47c29-8419-4cfb-bcca-d7a9e2e4c88d", + "createdTime": "2021-01-15T22:40:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b176878f-b1f1-4994-b854-8efe96c0a014", + "createdTime": "2021-01-15T22:40:10.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8facb3f8-1794-4161-8ae7-139cb2c78859", + "createdTime": "2021-01-15T22:40:07.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d23d2352-b69c-469c-9eea-032152d2bd32", + "createdTime": "2021-01-15T22:39:55.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6437ec39-7689-4a43-9436-201f816a664e", + "createdTime": "2021-01-15T22:39:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1827f012-1895-47d5-b1f5-c5a4a8eeb379", + "createdTime": "2021-01-15T22:39:27.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f960e154-81c6-42ae-9074-9afc8ba21b2e", + "createdTime": "2021-01-15T22:36:16.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2b2d6a2-911e-46f5-860b-72a55792c2e5", + "createdTime": "2021-01-15T22:35:55.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee2cc2ad-aee9-4674-bd68-958d08b0a047", + "createdTime": "2021-01-15T22:27:56.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6527cedf-82be-49e1-8ab4-c94e4bc66686", + "createdTime": "2021-01-15T22:29:53.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "192e0c44-92bf-4745-9b16-a10648bad0fa", + "createdTime": "2021-01-15T22:29:51.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d95d2873-54ef-43e0-ab1c-720f405ce7f8", + "createdTime": "2021-01-15T22:27:49.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6889ba40-0beb-4810-8767-2b9636576321", + "createdTime": "2021-01-15T22:29:46.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ce582de-eda2-4327-a684-bfaa5df2d42b", + "createdTime": "2021-01-15T22:29:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d613855d-9fc6-49af-b760-0f6ac8092b12", + "createdTime": "2021-01-15T22:27:39.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cf01a009-dea2-459f-8f5d-db73829c5736", + "createdTime": "2021-01-15T22:27:32.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8bfd1ed0-32a1-40e0-afac-8ae53f8d67b8", + "createdTime": "2021-01-15T22:30:30.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ecf94ca1-3fb5-4a19-b150-ee4a6effc4cd", + "createdTime": "2021-01-15T22:30:23.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "088877ba-9607-466a-ace8-94af26579ac5", + "createdTime": "2021-01-15T22:27:17.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "da4f898f-73c4-4d01-82ac-f667d38f0450", + "createdTime": "2021-01-15T22:30:29.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12c4d1d1-2ff2-4483-971b-a8ddc825bf0a", + "createdTime": "2021-01-15T22:30:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f2e912c-bff8-43e7-a2ce-ea50f34a3bbb", + "createdTime": "2021-01-15T22:30:28.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4c36e3f7-410e-49ae-b62d-b1a06dce1c29", + "createdTime": "2021-01-15T22:30:28.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "204a1558-506d-474b-a24b-1c16742c46c8", + "createdTime": "2021-01-15T22:30:27.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1f8f335-469c-49f3-b839-f226bb1571bb", + "createdTime": "2021-01-15T22:30:22.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2869a7ac-5a54-4fbb-a478-0ebd0fbaf2ae", + "createdTime": "2021-01-15T22:30:22.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ecfbe245-0791-4263-b5fb-1fad5048a316", + "createdTime": "2021-01-15T22:30:21.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "52b0d652-9193-4ee8-ae59-94484906cf99", + "createdTime": "2021-01-15T22:30:21.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b0d411b-c23e-4eee-8d68-24b320996e96", + "createdTime": "2021-01-15T22:30:20.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4816673e-58a3-4a84-957f-288a102c647c", + "createdTime": "2021-01-15T22:29:52.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a652f3dc-5643-42b1-8a23-d7565d2c6484", + "createdTime": "2021-01-15T22:29:51.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a3fe2677-d098-49e8-b4dc-f5ee5bd36f7e", + "createdTime": "2021-01-15T22:29:51.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "32b4c722-6ebd-442d-b7cf-c907d8694448", + "createdTime": "2021-01-15T22:29:50.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f7475f9-fadc-4008-87af-890e07991126", + "createdTime": "2021-01-15T22:29:50.753Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "87f7236a-a2c6-4ce0-925e-8c42ab011d84", + "createdTime": "2021-01-15T22:29:50.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f01d9c72-ee19-4057-aa2e-3ed53be42d0e", + "createdTime": "2021-01-15T22:29:50.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aa99d3da-2a6a-4032-aab9-775485c83666", + "createdTime": "2021-01-15T22:29:49.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92f9c74b-3081-408f-b8f0-3c1d11493af8", + "createdTime": "2021-01-15T22:29:48.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0ac083b8-d7ad-4f7a-a447-8104ad579344", + "createdTime": "2021-01-15T22:29:47.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d67a2ef-9aa3-4353-a12a-ddacf212ad0c", + "createdTime": "2021-01-15T22:29:46.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a2e557-f9bd-488d-a1b1-cba2a7d4873c", + "createdTime": "2021-01-15T22:29:45.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8e9c66c4-3684-4075-a8c3-c0044fcdf526", + "createdTime": "2021-01-15T22:29:44.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f84f825b-125d-4327-9bc4-4fcdf67d14db", + "createdTime": "2021-01-15T22:29:44.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "167abeed-4e74-4e98-8d5c-b1010cd9661a", + "createdTime": "2021-01-15T22:29:43.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0f1d968a-64f3-457d-b29b-5a73751bd829", + "createdTime": "2021-01-15T22:29:43.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b601310-2243-4509-917f-c124890b8484", + "createdTime": "2021-01-15T22:29:42.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d4d694ab-d049-4bd5-bdab-ed400f970490", + "createdTime": "2021-01-15T22:29:42.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b8e582d5-74e4-41b1-9409-4e7b148b5d39", + "createdTime": "2021-01-15T22:29:41.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1df622c5-06fd-4f09-bf0c-cca9f5de8a94", + "createdTime": "2021-01-15T22:29:41.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce3dfb30-6715-44a3-8c1c-4676009d9d20", + "createdTime": "2021-01-15T22:27:55.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c361221-42d7-4657-920a-4ce1aaf35708", + "createdTime": "2021-01-15T22:27:55.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c95260e8-0634-4940-9719-d8408a289106", + "createdTime": "2021-01-15T22:27:54.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3830677-734d-422e-8c69-fd6cda51b7c6", + "createdTime": "2021-01-15T22:27:53.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9fc2bafb-57af-44a7-9db1-be78d9b2bd6e", + "createdTime": "2021-01-15T22:27:52.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f383d74-2218-48d5-a799-53d5ee17b2b7", + "createdTime": "2021-01-15T22:27:48.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e7530fc-4231-40c2-bfc9-b5a04c7ff4d1", + "createdTime": "2021-01-15T22:27:47.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b40ea32e-33e2-4262-bbf8-993de0462aa4", + "createdTime": "2021-01-15T22:27:47.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4a61487-ce43-4778-9213-0f8111f1ca1e", + "createdTime": "2021-01-15T22:27:46.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f968dda-01fb-48ae-89d4-06d90de9579f", + "createdTime": "2021-01-15T22:27:45.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b439d1a-51a5-426a-96f3-e82533e7094d", + "createdTime": "2021-01-15T22:27:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "13956631-d901-44cd-9b90-e73b3e1eba4f", + "createdTime": "2021-01-15T22:27:38.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "153ffb2e-f51a-4782-9350-69ad968f3442", + "createdTime": "2021-01-15T22:27:37.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4305f5ba-800e-431e-b727-b35e02265fd0", + "createdTime": "2021-01-15T22:27:37.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15a94f3c-8a59-4136-8934-f2a2dea70541", + "createdTime": "2021-01-15T22:27:36.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23af3c7c-fcee-42c8-b083-d6449157eab1", + "createdTime": "2021-01-15T22:27:31.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b8e650fe-9e57-4f35-8da7-e851f127b85a", + "createdTime": "2021-01-15T22:27:30.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fcc526a-8472-4f5f-b93b-a1126fe6658a", + "createdTime": "2021-01-15T22:27:30.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2c2456d8-8698-4b9f-b0f4-5bb46f8e9b31", + "createdTime": "2021-01-15T22:27:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "20555efd-a294-44e8-99f2-a75d437bee59", + "createdTime": "2021-01-15T22:27:28.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33b68261-4e8f-483a-b173-771773777292", + "createdTime": "2021-01-15T22:27:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e48c087-d880-4d71-a09b-1473d9eddfb7", + "createdTime": "2021-01-15T22:27:16.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e8895d6a-e48c-4359-834b-3ad70b31867c", + "createdTime": "2021-01-15T22:27:15.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d6c22672-6978-42b7-8260-04e69791fd62", + "createdTime": "2021-01-15T22:27:14.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "341eb9c6-f04f-45f1-86e8-474fa8c18824", + "createdTime": "2021-01-15T22:27:14.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d590e7b5-4193-400f-bf6d-ab148d1625ec", + "createdTime": "2021-01-15T22:27:10.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "744d82ed-ceb7-4941-93f5-80ec4e4eff78", + "createdTime": "2021-01-15T22:27:09.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e6b69137-7945-4e45-8baa-ef1f4fa2f6b2", + "createdTime": "2021-01-15T22:27:09.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "88838bca-732f-451e-8e09-5cd0554b8246", + "createdTime": "2021-01-15T22:27:08.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f120eb57-b097-4e6d-ba2f-9edea0845b74", + "createdTime": "2021-01-15T22:27:07.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee610d7f-ded0-4654-bcb2-d320b3bd13d8", + "createdTime": "2021-01-15T22:27:07.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f11260cd-a4ed-41a1-8f06-d3126ff5c5f3", + "createdTime": "2021-01-15T22:24:09.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "16f3a4c7-7877-410c-8411-3bda237af183", + "createdTime": "2021-01-15T22:24:09.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5323fc78-fcca-4a5b-89df-eef786f3ca7d", + "createdTime": "2021-01-15T22:24:08.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2bd4d0c-7e2d-429a-9df3-d49cc2c3b285", + "createdTime": "2021-01-15T22:24:07.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cec37f31-0301-412b-add2-d9cdf9f56de6", + "createdTime": "2021-01-15T22:24:07.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "52fd5e69-be1c-41d8-8e89-985bc13cdeec", + "createdTime": "2021-01-15T22:24:06.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1be3d46a-200b-4a80-ad22-4a445a94181a", + "createdTime": "2021-01-15T22:24:02.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bc21fa80-6a6b-4cd9-ba44-f3795dc0ef87", + "createdTime": "2021-01-15T22:24:01.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ef027498-bec1-4972-9766-eaa887467ffd", + "createdTime": "2021-01-15T22:24:01.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2f8a948-dcd2-487c-aed2-08417ac41bee", + "createdTime": "2021-01-15T22:24:00.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cbd48fd1-371f-4b24-9625-647bd4acc32e", + "createdTime": "2021-01-15T22:23:59.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d2f3f80-e1ec-49f6-b6ff-1e52cca7129f", + "createdTime": "2021-01-15T22:23:59.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b966d731-8e42-4ac5-a4c9-b637bc64ed9f", + "createdTime": "2021-01-15T22:23:04.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "456afc45-fc42-43c8-9155-f5d02d7cb1db", + "createdTime": "2021-01-15T22:23:03.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "19b0d49d-4c33-45bb-b331-4a776b4dcbfc", + "createdTime": "2021-01-15T22:23:02.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea565676-2b18-4f1b-803e-5d73d9d5b5a8", + "createdTime": "2021-01-15T22:23:02.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d16afae9-dffa-449b-a150-937272d8bbde", + "createdTime": "2021-01-15T22:23:01.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8871ced3-ae2b-429f-ae6f-abe4c16e7f28", + "createdTime": "2021-01-15T22:23:00.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1b2f921-b034-4b3b-8cb9-ee1cc51b45c6", + "createdTime": "2021-01-15T22:22:57.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f005f466-1805-482e-9339-3f726b46feb2", + "createdTime": "2021-01-15T22:22:56.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "906634c0-67db-43c3-97da-7dc95757300d", + "createdTime": "2021-01-15T22:22:55.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f64adc53-d7b2-4826-84fd-f95a5c45fd36", + "createdTime": "2021-01-15T22:22:54.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ccb30ec-d4bb-4e8a-8f6e-f45509e42a8f", + "createdTime": "2021-01-15T22:22:53.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "41d0d1ba-ad70-4247-a535-a97bc8f8dc42", + "createdTime": "2021-01-15T22:22:52.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2b44dc7-4ff0-4932-8bb2-5cbc6fea7d65", + "createdTime": "2021-01-15T22:21:36.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78938f62-6d33-4589-be27-a7fe49d52509", + "createdTime": "2021-01-15T22:20:51.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9850f294-a5c5-444c-818b-5926bbeed74f", + "createdTime": "2021-01-15T22:20:21.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0218e43-ce9e-4e56-a92c-0bed28e57c69", + "createdTime": "2021-01-15T22:19:30.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "faafec77-0462-4df8-990b-bf52453a5372", + "createdTime": "2021-01-15T22:19:03.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2fdd1e1b-0098-4a56-aef6-012a8244c8da", + "createdTime": "2021-01-15T22:18:44.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "38488033-40c7-4227-b3a5-46661dd43527", + "createdTime": "2021-01-15T22:16:54.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30186b33-7d3e-4b83-8dbf-15fa56d006f4", + "createdTime": "2021-01-15T22:16:10.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50caab4c-4bd7-434b-a31f-e753ad4fc52f", + "createdTime": "2021-01-15T21:21:19.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "29379133-fd21-49c5-9c42-1cab4ffcc3aa", + "createdTime": "2021-01-15T21:21:15.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d181e8dc-9159-4a2f-b8ca-394a8674d2b9", + "createdTime": "2021-01-15T21:21:46.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fc36bb1-8f73-4270-b258-d5eab1eb152a", + "createdTime": "2021-01-15T21:21:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6246631d-393f-4549-93f9-9a1d45fef618", + "createdTime": "2021-01-15T21:21:26.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "00205c92-3252-4d33-becb-cf8a3b1af284", + "createdTime": "2021-01-15T21:21:21.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6685c4b5-46ee-4f5d-86b9-40c2add4c02c", + "createdTime": "2021-01-15T21:21:20.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "07e7a179-30a4-4e74-bc62-0c228b9178dd", + "createdTime": "2021-01-15T21:21:45.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0fb52223-7d1f-4788-932a-e8f77e393aa3", + "createdTime": "2021-01-15T21:21:44.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b390c22c-a730-465b-a8b2-0950d15b0c1d", + "createdTime": "2021-01-15T21:21:44.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "59bb84cd-931c-47d4-b66d-55d2f4be0714", + "createdTime": "2021-01-15T21:21:43.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "213c7e14-714b-4431-802e-08436fa817e7", + "createdTime": "2021-01-15T21:21:42.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cf7383c-e00d-48a2-a5ac-13bf351feb46", + "createdTime": "2021-01-15T21:21:38.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "89b766c7-4b47-44eb-9055-eeb6cd92951f", + "createdTime": "2021-01-15T21:21:38.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "91d5d5aa-c826-4447-be14-90c3aeb9ab6a", + "createdTime": "2021-01-15T21:21:37.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2df737d5-7088-4fc2-a08b-d48036b68c07", + "createdTime": "2021-01-15T21:21:36.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "61288851-1522-4c0f-af1f-79083932281b", + "createdTime": "2021-01-15T21:21:35.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d133834b-2524-41f4-9e50-e0d1c46242bf", + "createdTime": "2021-01-15T21:21:25.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7833d544-41ed-4275-b297-bd2763c34543", + "createdTime": "2021-01-15T21:21:24.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aedac735-2f33-4a61-a949-d7636ddd81c0", + "createdTime": "2021-01-15T21:21:23.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "72759eac-2fc7-4594-99e8-2a073cc812e4", + "createdTime": "2021-01-15T21:21:23.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6080385d-8c09-4d9a-9e13-ce05d6b508c8", + "createdTime": "2021-01-15T21:21:22.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58321663-6fc1-46bc-86b0-2ff9f521ff2c", + "createdTime": "2021-01-15T21:21:20.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa64d1bc-2298-4d6b-bd25-bc412b26db41", + "createdTime": "2021-01-15T21:21:20.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "faeb07c1-430a-410e-895e-56cc828b5080", + "createdTime": "2021-01-15T21:21:19.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4a9324aa-385d-4ef8-b0d3-9d56f9cf97ae", + "createdTime": "2021-01-15T21:21:19.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2781eac5-20d2-4441-82dd-95396ec4a835", + "createdTime": "2021-01-15T21:21:19.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6108b3d5-93ea-4913-9562-a13b7bd3cac0", + "createdTime": "2021-01-15T21:21:18.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1ae6dd9f-5714-46a3-9aad-507a8142c6e9", + "createdTime": "2021-01-15T21:21:18.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a5d87ba3-cd51-4a7a-8641-aeee6114da84", + "createdTime": "2021-01-15T21:21:18.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d7065af4-06d8-4bc0-9c40-39edbd820282", + "createdTime": "2021-01-15T21:21:18.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d229c2aa-079a-4dd4-ac59-18c2632fedb0", + "createdTime": "2021-01-15T21:21:17.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "38084e22-009f-4c8f-9555-0833054156a2", + "createdTime": "2021-01-15T21:21:17.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32b38efb-268b-4a52-834e-90837664f7e9", + "createdTime": "2021-01-15T21:21:17.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad009ae3-38ce-4197-a58e-0bd850a29932", + "createdTime": "2021-01-15T21:21:16.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da5565cf-7771-4cdb-b3bd-903535f8e824", + "createdTime": "2021-01-15T21:21:16.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a71bae1b-90ea-4179-91bf-05a8e12e0ac0", + "createdTime": "2021-01-15T21:21:15.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2713b32c-0053-4a4b-b8ee-e0adfc8c7dfc", + "createdTime": "2021-01-15T21:21:14.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db14a0fb-4558-414e-be00-03efd3744d02", + "createdTime": "2021-01-15T21:21:14.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fd39b039-d113-4ce4-bf72-13c80b76826f", + "createdTime": "2021-01-15T21:21:13.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4ba8073-2e49-4dff-8c57-9cbd2a9491bb", + "createdTime": "2021-01-15T21:21:13.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "12359dc9-16ca-4480-92fa-027fdfe6a7ab", + "createdTime": "2021-01-15T21:21:12.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f7e269fa-c0ad-44cb-8562-d134c28075ed", + "createdTime": "2021-01-15T21:21:12.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1256b08c-5c14-45bf-ad3b-13543782db42", + "createdTime": "2021-01-15T21:21:12.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9f0ef92-e896-44fa-905b-d4d258464f00", + "createdTime": "2021-01-15T21:21:12.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9801053c-1edc-4c1c-8f50-9849e20ef7c2", + "createdTime": "2021-01-15T21:21:11.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8dedfa33-261e-453b-ae73-fef418f31956", + "createdTime": "2021-01-15T21:21:10.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fa129d3d-f263-458e-b7b7-ee0f7a47c4f8", + "createdTime": "2021-01-15T21:21:10.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8750b36e-e0e8-4ed9-ae91-b5821a4f81f1", + "createdTime": "2021-01-15T21:20:47.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f57780b6-9eba-472e-adee-57841ea45391", + "createdTime": "2021-01-15T21:20:46.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7a34f1-a492-48dc-a99f-b1cc5808b350", + "createdTime": "2021-01-15T21:20:46.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f09c7ad8-92ca-46df-b208-035a7cd8c7ee", + "createdTime": "2021-01-15T21:20:45.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eb431d6c-0712-42ce-a7cb-c8b57d54dc01", + "createdTime": "2021-01-15T21:20:44.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5905ba12-8871-4cd9-aaa4-bfa3e6940d6c", + "createdTime": "2021-01-15T21:20:43.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f9e9129-3137-4f9c-96f0-7ae673c58192", + "createdTime": "2021-01-15T21:20:40.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2b522df8-5254-462d-92e1-638a30f55f39", + "createdTime": "2021-01-15T21:20:40.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "07878fa0-b79c-4f2a-8961-dd3b46fba923", + "createdTime": "2021-01-15T21:20:39.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "921af42d-a735-4289-b40a-e98905997f17", + "createdTime": "2021-01-15T21:20:38.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6490fdc-9408-4248-8fa3-7b4f1424f3d6", + "createdTime": "2021-01-15T21:20:38.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c3fcc851-2acb-42ca-bcd2-72251b61b115", + "createdTime": "2021-01-15T21:20:37.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a603d128-d58f-4ae2-ae73-89420c8e209a", + "createdTime": "2021-01-15T21:20:04.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee729d6a-c31e-48ad-af1a-3c9f32db2123", + "createdTime": "2021-01-15T21:20:03.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0c6f6213-e21c-418e-83e5-3a81f090cf5a", + "createdTime": "2021-01-15T21:20:02.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2e7338aa-b7e6-4717-9c0e-8e5d5e2b98da", + "createdTime": "2021-01-15T21:20:01.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b99d3009-e6bc-4748-ba1d-7417b9bb8b49", + "createdTime": "2021-01-15T21:20:01.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a945e9dd-2d76-4db2-b27c-d3b2dfa6417e", + "createdTime": "2021-01-15T21:20:00.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4033a439-a1dc-475e-9b88-7e9818ad3660", + "createdTime": "2021-01-15T21:19:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a87351c9-9cdb-4660-a738-a2dbe490a876", + "createdTime": "2021-01-15T21:19:56.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a42124-674d-415a-bcc4-bcbb8df72f67", + "createdTime": "2021-01-15T21:19:56.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c74f78f-e3f5-4f00-aad2-9edca85f6b89", + "createdTime": "2021-01-15T21:19:55.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e5d3491d-9b8a-4d4a-a1ce-aaf1e70d88e8", + "createdTime": "2021-01-15T21:19:54.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee116711-1149-4f6f-ae42-48f9e40255d8", + "createdTime": "2021-01-15T21:19:52.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "11cc6f69-08f2-4abd-8639-fc04887d92e3", + "createdTime": "2021-01-15T21:18:28.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c0a5d6b1-70c9-4f55-b580-a30c2b8327af", + "createdTime": "2021-01-15T21:18:28.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea0c022b-fe16-4867-ad29-b4a3fcd9ae3f", + "createdTime": "2021-01-15T21:18:27.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6ec7d6c-e8ff-4fa9-99e5-e6178923e7e0", + "createdTime": "2021-01-15T21:18:26.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2552ba9d-65f0-42d7-b021-4063691a45b0", + "createdTime": "2021-01-15T21:18:25.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ce43bb6e-3770-4655-8ed2-08b6ef67162e", + "createdTime": "2021-01-15T21:18:24.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9369658e-9f25-431c-8eaa-3dffbe13417c", + "createdTime": "2021-01-15T21:18:21.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ab5444f0-d3d5-4160-ac42-6810a858944a", + "createdTime": "2021-01-15T21:18:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e33bc3ee-535b-4973-a905-b151bb6701c9", + "createdTime": "2021-01-15T21:18:20.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7665178b-4d28-4f19-af50-06f4b9bd7d2e", + "createdTime": "2021-01-15T21:18:19.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee21854a-71fc-4284-bca0-1e52e1f82aad", + "createdTime": "2021-01-15T21:18:19.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbb7b909-b563-43b4-b7c3-7cd130249ba5", + "createdTime": "2021-01-15T21:18:18.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "984448f7-6967-4412-a349-ef4e7216b3e2", + "createdTime": "2021-01-15T21:17:41.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8cba583-0b73-47dd-9e60-6f5963858867", + "createdTime": "2021-01-15T21:17:40.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "155b8778-06d4-45ca-bca0-df9502a1ba94", + "createdTime": "2021-01-15T21:17:40.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f35a8cc-4433-4d8a-bd78-466d14c9786b", + "createdTime": "2021-01-15T21:17:39.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e8e657b1-7564-4f20-b2e3-c6683285c105", + "createdTime": "2021-01-15T21:17:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6013748b-2de0-402d-a893-6682f07709d6", + "createdTime": "2021-01-15T21:17:36.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b75e0270-6d5a-462d-97a9-f70c0fbd6112", + "createdTime": "2021-01-15T21:17:32.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57cf32d7-0e7c-4fda-8091-0aabb9204253", + "createdTime": "2021-01-15T21:17:31.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2b5724f-ab14-4cf8-84ae-d8a95a432b86", + "createdTime": "2021-01-15T21:17:31.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c1ee1aea-9778-479a-a695-0331fe1c56c7", + "createdTime": "2021-01-15T21:17:30.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b4c3a28-d50a-4a44-a9da-6705df9aa822", + "createdTime": "2021-01-15T21:17:29.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4012cc9e-2775-4b82-8eb5-cf7d6a516cb0", + "createdTime": "2021-01-15T21:17:28.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b0f7727-cc58-493e-ac3b-2faee1f53f08", + "createdTime": "2021-01-15T21:13:03.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1325c1f4-2727-4020-8684-5e9e485ceaf1", + "createdTime": "2021-01-15T21:11:45.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a7513e-0ca8-43fb-8107-c5a6b84f34e1", + "createdTime": "2021-01-15T21:11:42.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f237882d-0899-421e-91f4-d96e1a702e1b", + "createdTime": "2021-01-15T21:11:24.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "962cf525-7130-4de1-bf0f-655a27386ed7", + "createdTime": "2021-01-15T21:11:03.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28683162-0564-45c3-84d3-7c0a6609bb32", + "createdTime": "2021-01-15T21:09:58.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16ab0427-e896-4daa-ac71-e78b262825cf", + "createdTime": "2021-01-15T21:08:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6545eacc-6183-45f1-8a6a-733676abf556", + "createdTime": "2021-01-15T21:07:40.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b66f4a70-4a07-44e5-8934-e666eaf76f62", + "createdTime": "2021-01-15T21:01:41.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "646b420d-d5b3-41d7-a131-8ffcdb4bfe96", + "createdTime": "2021-01-15T21:01:41.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "36f404c6-da9a-45a8-ae0f-eb3265d55f54", + "createdTime": "2021-01-15T21:01:40.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3d2bf09-6ee3-4bab-811d-08205c3a340b", + "createdTime": "2021-01-15T21:01:39.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7775a44a-09a9-4f37-9396-77ae57cdce96", + "createdTime": "2021-01-15T21:01:39.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3777a678-a302-40b1-8a0a-2c718d2ddb6b", + "createdTime": "2021-01-15T21:01:38.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e35dc22b-c2d5-4106-a37e-64d3bb37c197", + "createdTime": "2021-01-15T21:01:34.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "31606dbb-e032-410b-9d9c-2692b6adf9de", + "createdTime": "2021-01-15T21:01:34.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3febc422-77f0-4811-acfd-0cf1e063e13f", + "createdTime": "2021-01-15T21:01:33.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0594bdb7-06ee-4b7b-95e4-2f4f4eb6b065", + "createdTime": "2021-01-15T21:01:32.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c06d26d3-275d-4f12-9e18-1b67d7d1b179", + "createdTime": "2021-01-15T21:01:32.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "85c4165c-d2be-4059-b8c9-2ac3d782c21c", + "createdTime": "2021-01-15T21:01:31.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5ddf0a7-bf11-4e3b-a8b0-9459dd874f7a", + "createdTime": "2021-01-15T21:01:05.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b2ea45e0-8cd6-493c-9353-eefefcc49a9a", + "createdTime": "2021-01-15T21:01:04.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7322f64f-15fc-459c-8b0a-539b86d6c21f", + "createdTime": "2021-01-15T21:01:04.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "254414ac-d603-4f05-8507-64d7b09b8c56", + "createdTime": "2021-01-15T21:01:03.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6451c0a-09b6-4dee-a475-8e95702829e7", + "createdTime": "2021-01-15T21:01:02.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3fe63789-9aa6-4807-91f0-a81aa3ca5157", + "createdTime": "2021-01-15T21:01:02.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96b372a3-8e0f-4569-a81a-23751716e0e3", + "createdTime": "2021-01-15T21:00:58.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ea9c48fd-88ce-4922-82c8-a12f73ed10e9", + "createdTime": "2021-01-15T21:00:58.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db63900a-be0c-409d-9301-e12bb95138e6", + "createdTime": "2021-01-15T21:00:57.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7609d759-67ca-427b-8437-0fbec9169f92", + "createdTime": "2021-01-15T21:00:57.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cfcac3cd-6fd1-424f-a49e-53453bb66528", + "createdTime": "2021-01-15T21:00:56.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "623d62ae-57e4-4ada-85d0-7464e7464c6e", + "createdTime": "2021-01-15T21:00:55.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba161c90-8d7e-4f5c-9ddb-ef1c3f9f1091", + "createdTime": "2021-01-15T21:00:40.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ed775661-0071-45b1-8782-b5fec6c45b18", + "createdTime": "2021-01-15T21:00:39.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6d93736-0243-4b03-baea-1bf9a0ce0ec5", + "createdTime": "2021-01-15T21:00:39.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44cafa71-aa3c-4df9-8fba-8727c6561c1a", + "createdTime": "2021-01-15T21:00:38.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba74221e-dd32-4e5c-8dd0-a692a1db2a54", + "createdTime": "2021-01-15T21:00:37.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbfe8a84-17c0-4107-97f7-e1cf9759b8e1", + "createdTime": "2021-01-15T21:00:37.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0d72c31-5998-46de-a228-9fa0fbe2d17d", + "createdTime": "2021-01-15T21:00:33.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d716eb27-aae6-43d6-bf96-f3424304decc", + "createdTime": "2021-01-15T21:00:32.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ad9b9-2376-45d5-8bf1-4c23b79dcd68", + "createdTime": "2021-01-15T21:00:32.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "369af7b9-3cb8-498e-8590-fcad9c781a2b", + "createdTime": "2021-01-15T21:00:31.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba743cff-7e9d-4e6e-8dd1-f8f9ba9d0112", + "createdTime": "2021-01-15T21:00:30.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3294cf53-cc82-461c-be63-913c991e15a3", + "createdTime": "2021-01-15T21:00:30.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64e0a7e3-9ed4-4d90-b131-538553ede9d4", + "createdTime": "2021-01-15T21:00:14.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6c6e7070-96eb-4bd0-95ba-a3b3514af65f", + "createdTime": "2021-01-15T21:00:13.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7fc93be-01be-4f09-a3f2-b3fd56c99545", + "createdTime": "2021-01-15T21:00:13.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0979b8e2-b8c2-4c71-8791-6b035df222d4", + "createdTime": "2021-01-15T21:00:12.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad1432fe-0bad-4764-b6d2-63aec3f4bc3c", + "createdTime": "2021-01-15T21:00:12.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "abc2c956-bb77-4795-ac00-6a7661e27851", + "createdTime": "2021-01-15T21:00:11.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d64d96a6-9a3c-43ff-9ecb-475f48a1c86f", + "createdTime": "2021-01-15T21:00:08.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "58fa266f-fc14-4cb0-bef3-b9e317c85228", + "createdTime": "2021-01-15T21:00:08.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7b91d4bf-5273-4069-8f86-1a8102fcfdd3", + "createdTime": "2021-01-15T21:00:08.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a9382df-cd09-432f-88c9-6df9ceeeefa6", + "createdTime": "2021-01-15T21:00:07.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ca12e774-2b32-4f1e-b9c9-873838aba69c", + "createdTime": "2021-01-15T21:00:07.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3054833-6fea-4291-b7a1-b89731091f55", + "createdTime": "2021-01-15T21:00:07.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "664da0b3-3090-41d0-910f-81c511f9b4b2", + "createdTime": "2021-01-15T21:00:07.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2a2dc035-ef4a-45dc-ba4b-7dd49b14edf8", + "createdTime": "2021-01-15T21:00:06.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e68476e-f4d0-4dc5-8b31-14b2793dfb65", + "createdTime": "2021-01-15T21:00:06.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cc89b87e-7f55-4ceb-b1b3-fbbf067705e6", + "createdTime": "2021-01-15T21:00:05.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2744844-ab16-4b12-8b61-b4489b11eee4", + "createdTime": "2021-01-15T21:00:05.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "05472e9f-77f5-45a9-aebe-c026e84b973f", + "createdTime": "2021-01-15T21:00:05.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cacccd4d-a0f1-44fa-88f6-6295534e5bec", + "createdTime": "2021-01-15T21:00:03.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0bb3c1c4-d603-4de3-87bc-c348ce4d1bb6", + "createdTime": "2021-01-15T21:00:02.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9763192f-777d-4cc1-aa9c-54c577f0db39", + "createdTime": "2021-01-15T21:00:02.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "78babee7-0eb7-45f5-9e06-f15d1a7342bb", + "createdTime": "2021-01-15T21:00:02.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23daa9ad-e44d-476e-9346-5a2b6473becc", + "createdTime": "2021-01-15T21:00:01.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acdf2d5d-6b6e-45fe-ac75-23b46c5e52c2", + "createdTime": "2021-01-15T21:00:01.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9bfb6913-11b1-471e-a7ae-4a13d2edfb92", + "createdTime": "2021-01-15T21:00:01.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b27bafef-d7ff-4175-9711-3e96680eaa31", + "createdTime": "2021-01-15T21:00:01.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2b72bd2a-081f-4163-a4d1-c38bcc62ca83", + "createdTime": "2021-01-15T21:00:00.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "da4dd496-5bea-4ac6-b5a7-b0a6a707eebc", + "createdTime": "2021-01-15T21:00:00.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d8f62ab7-36a0-4a66-9991-1b738ca96007", + "createdTime": "2021-01-15T20:59:59.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3e386a1c-8fdf-4ff2-9103-5f05f34d69c8", + "createdTime": "2021-01-15T20:59:59.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3cabb89-d51f-4ee1-98f0-da3c5c47a6f2", + "createdTime": "2021-01-15T20:59:55.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b95cbeff-d386-4817-9213-61c2f80c012b", + "createdTime": "2021-01-15T20:59:54.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "17a68111-a06b-452d-a26a-dbc36e3cae6d", + "createdTime": "2021-01-15T20:59:53.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5f3789fe-e5d3-4ab7-a7f1-12ca8af43fc7", + "createdTime": "2021-01-15T20:59:52.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "22726465-67d7-414d-92af-56c4e906243b", + "createdTime": "2021-01-15T20:59:52.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8f1bc795-857a-4ff6-8382-1e52fd4bec38", + "createdTime": "2021-01-15T20:59:51.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b31ce7f9-f772-471c-94ce-acf416a83705", + "createdTime": "2021-01-15T20:57:01.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cc5b5ea4-adcf-4d3e-b88e-88117573cfb3", + "createdTime": "2021-01-15T20:57:00.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "890f75bd-4652-442a-8408-d2ee2af8aa6c", + "createdTime": "2021-01-15T20:56:59.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "137969f3-350a-4e2a-9b85-86a706ed2655", + "createdTime": "2021-01-15T20:56:59.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "87a1781a-784b-48e2-bf40-1c557962bfe4", + "createdTime": "2021-01-15T20:56:58.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "140fc26d-eb47-4075-bd9a-999790b490ba", + "createdTime": "2021-01-15T20:56:57.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd5f831c-5b9f-4aea-adb3-44af20352a9b", + "createdTime": "2021-01-15T20:56:54.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "48296885-603b-4f99-8e77-b33360b86eca", + "createdTime": "2021-01-15T20:56:53.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "455ab152-2520-4b56-9834-96ef9e73d509", + "createdTime": "2021-01-15T20:56:52.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "439026f6-fedf-4960-a8c4-d46e51a9e025", + "createdTime": "2021-01-15T20:56:52.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c2c8b2d9-265b-4874-819d-8a75632fab5a", + "createdTime": "2021-01-15T20:56:51.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f46ad627-73ba-4d09-9080-5800bdfeca41", + "createdTime": "2021-01-15T20:56:51.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "184413cd-723b-48cf-be93-4648ab020bcd", + "createdTime": "2021-01-15T20:56:40.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3c62d529-1735-48f5-b898-222330bd9c9c", + "createdTime": "2021-01-15T20:56:40.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fc6eae13-4a8f-49a1-be6b-f86fcaccd07e", + "createdTime": "2021-01-15T20:56:39.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bbfee62f-80e9-4754-9772-e86602a0c2dc", + "createdTime": "2021-01-15T20:56:39.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0c2b0d1b-1eab-413b-b197-4e4d3ad88ea3", + "createdTime": "2021-01-15T20:56:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b6f950e-cba0-4971-a720-d88280f0882c", + "createdTime": "2021-01-15T20:56:37.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "44f0947f-e777-446a-9681-7ae63d4c69ef", + "createdTime": "2021-01-15T20:56:33.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8bd978c-9c6c-4def-abff-5ffb3f3de052", + "createdTime": "2021-01-15T20:56:32.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db2b2f1d-ecf4-4a8d-a0a8-56445995b32f", + "createdTime": "2021-01-15T20:56:32.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad33773c-d624-48f2-9164-1ed9157c250b", + "createdTime": "2021-01-15T20:56:31.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bab4f452-2ca4-491c-a89d-4563c3bcf5c0", + "createdTime": "2021-01-15T20:56:30.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4c0f3596-7fc6-4205-ada0-8f4e20da15e3", + "createdTime": "2021-01-15T20:56:30.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ec9dcca-3b86-4a44-bd74-6e8b66a9c7e3", + "createdTime": "2021-01-15T20:53:16.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "463eccb5-0b8c-4da1-842a-7d0c49a538b1", + "createdTime": "2021-01-15T20:52:54.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6f00969-f029-4e84-8d8e-e4c845ab7b12", + "createdTime": "2021-01-15T20:52:33.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1156199-c9ac-442e-a425-83ee7ebc8285", + "createdTime": "2021-01-15T20:52:28.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fb163fe7-6e22-499d-ab8e-fced5798aa4d", + "createdTime": "2021-01-15T20:52:23.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffe2606-d260-4b4a-a789-67882f9bec3e", + "createdTime": "2021-01-15T20:51:50.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17853ede-715e-44ac-9609-7cdbfff8d35f", + "createdTime": "2021-01-15T20:49:29.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28b6afba-9b6d-4e32-87fd-6bc5f3bf7e33", + "createdTime": "2021-01-15T20:49:00.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f9a88bc-1803-4a56-a0bf-e6242cd686f3", + "createdTime": "2021-01-15T20:43:47.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f073e44b-abb2-4475-b73a-3e7ea7f5d6b5", + "createdTime": "2021-01-15T20:43:47.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ed06583-fed9-4d35-88ec-342ace3d8c77", + "createdTime": "2021-01-15T20:43:46.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b4590ed-b812-4325-a5e0-186e79be9f97", + "createdTime": "2021-01-15T20:43:46.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4622b93-c462-4f92-abe6-11028a724408", + "createdTime": "2021-01-15T20:43:45.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a73ef12f-3d32-4005-abd3-0d22117a793e", + "createdTime": "2021-01-15T20:43:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a15930e-01cb-4fd6-b6c2-e5fbe3a9e4e8", + "createdTime": "2021-01-15T20:43:42.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3ab3b635-117a-49d1-9180-6e951f108d2a", + "createdTime": "2021-01-15T20:43:41.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e0dccd6-9143-4f86-993f-e93982aa8188", + "createdTime": "2021-01-15T20:43:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95e967f2-32af-4cb3-b943-a7fc9cd48971", + "createdTime": "2021-01-15T20:43:40.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a855f7a-b495-403c-ac80-3206be50c44b", + "createdTime": "2021-01-15T20:43:40.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8e5f3c2b-4094-40c1-9e23-a655c292f527", + "createdTime": "2021-01-15T20:43:39.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc68d3ac-907b-4af5-924f-ffb09205b003", + "createdTime": "2021-01-15T20:42:30.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23ee8b52-1b77-4298-a22f-c9d6e23c042b", + "createdTime": "2021-01-15T20:42:29.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa5f4df4-dcdb-4d28-8d5e-3fc20b23a884", + "createdTime": "2021-01-15T20:42:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "21487945-470a-41f6-b716-2d4590a77c3a", + "createdTime": "2021-01-15T20:42:28.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "963ff9a9-0c4f-4109-8094-66a09f07e43a", + "createdTime": "2021-01-15T20:42:28.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9c8f9e81-0806-4d78-b960-cb92a01ec4a1", + "createdTime": "2021-01-15T20:42:27.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c6efd48-027d-4a21-84a5-b83153e6fb69", + "createdTime": "2021-01-15T20:42:25.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6e719dbe-c4bf-4c63-91e3-f10a743641bd", + "createdTime": "2021-01-15T20:42:24.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "14925443-e703-4e75-a770-8ab7104a332e", + "createdTime": "2021-01-15T20:42:24.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33d58a77-f026-4d1a-a194-83d38fae4ade", + "createdTime": "2021-01-15T20:42:23.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0698d3a4-57ca-4af7-9fea-0483c11d5e1a", + "createdTime": "2021-01-15T20:42:23.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82c649ad-35f9-4794-9d14-bdaf75aec5c6", + "createdTime": "2021-01-15T20:42:22.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2943830a-3782-49b5-bd83-5cf7676848eb", + "createdTime": "2021-01-15T20:42:02.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22061768-0d66-48ca-b413-6b5f7437cefc", + "createdTime": "2021-01-15T20:42:01.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02abcfb3-0d4a-4c06-9fb4-b7fd76eb6324", + "createdTime": "2021-01-15T20:42:01.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "520fa2f8-4c9f-4cfa-bde6-070289f51f3d", + "createdTime": "2021-01-15T20:42:00.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "17bbc28a-b38b-4bc0-9207-c92baf06cd98", + "createdTime": "2021-01-15T20:42:00.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15e6c9ef-5f78-4e16-aa3e-b90afc41aae9", + "createdTime": "2021-01-15T20:41:59.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06906aa7-12ce-49cf-b07d-6920ce8a7f52", + "createdTime": "2021-01-15T20:41:57.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "84cf7fe8-0adc-49df-afb4-cc186efbd76c", + "createdTime": "2021-01-15T20:41:57.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "76fb6744-4033-4312-a9e4-980fe8a74c2a", + "createdTime": "2021-01-15T20:41:56.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d57c9954-a9a3-4e67-b72f-513345f7dde7", + "createdTime": "2021-01-15T20:41:56.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98228d58-8a56-4211-ad01-fed869bb2298", + "createdTime": "2021-01-15T20:41:55.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "79aa11d7-c364-44ee-a595-12f66c222faf", + "createdTime": "2021-01-15T20:41:55.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53bf2296-f0f8-42ba-a327-68cefa66d25b", + "createdTime": "2021-01-15T20:41:26.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "21653add-a9e1-411c-a436-26d5dbb0c52f", + "createdTime": "2021-01-15T20:41:26.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6d94fc2e-ba18-4c0b-86b4-1b0a12788e0e", + "createdTime": "2021-01-15T20:41:25.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "792413b8-987a-4eed-b821-0ed23b75cad6", + "createdTime": "2021-01-15T20:41:24.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fb89322f-67f2-4cc0-a38b-e7818755b39a", + "createdTime": "2021-01-15T20:41:24.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f5ac3cd-4f75-493f-ad81-19f7837169ba", + "createdTime": "2021-01-15T20:41:23.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d046b962-3054-42c0-b775-69b61253b020", + "createdTime": "2021-01-15T20:41:23.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cf9f4ab-70fc-46a1-93bf-97bb5eddeab7", + "createdTime": "2021-01-15T20:41:22.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a283146-0f2e-4817-9cfb-917dac5c32c4", + "createdTime": "2021-01-15T20:41:22.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "067d7e08-f058-456b-a572-22ee2246335b", + "createdTime": "2021-01-15T20:41:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8c6c4d1e-bb0d-4470-91bf-6ff3298f4fed", + "createdTime": "2021-01-15T20:41:21.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a13be996-4723-415f-a898-649a58d3fd0c", + "createdTime": "2021-01-15T20:41:21.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0534b514-3469-4961-9acd-4f88431e4c99", + "createdTime": "2021-01-15T20:41:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4846ac06-81d4-4bb4-b0c7-ca2999fd295f", + "createdTime": "2021-01-15T20:41:20.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e11e4cbf-4a55-4bf4-a791-94aee68d7989", + "createdTime": "2021-01-15T20:41:20.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce7226f1-f3d9-480a-a577-1414bf84b350", + "createdTime": "2021-01-15T20:41:20.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7809639b-de9d-4d9f-a77d-0670961459cb", + "createdTime": "2021-01-15T20:41:19.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cde4d7f1-73fa-4e9c-9d65-d187426933f2", + "createdTime": "2021-01-15T20:41:18.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d4a37c5-5d31-4f7f-9a1f-5fdf35f64655", + "createdTime": "2021-01-15T20:41:17.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c4d9135-f938-4290-8e5c-89dcda52f862", + "createdTime": "2021-01-15T20:41:16.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d1118ef5-5d78-4835-b53b-8aca67494ea6", + "createdTime": "2021-01-15T20:41:15.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0dd5ab3-1cd4-4509-bd9b-647e0e1adb51", + "createdTime": "2021-01-15T20:41:14.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "76803282-c4ff-4ba9-a430-baba5ee48982", + "createdTime": "2021-01-15T20:41:14.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b50b78c1-d486-4fdd-87dc-8ed10a0bcefd", + "createdTime": "2021-01-15T20:41:13.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b369ac47-5aa7-4716-bcf0-879c65eebafa", + "createdTime": "2021-01-15T20:41:13.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7c46382c-ad7c-4196-8c2d-37a97f28ee8c", + "createdTime": "2021-01-15T20:41:12.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b684da94-b6d4-4b06-8176-9852a19250e6", + "createdTime": "2021-01-15T20:41:12.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f91e380e-e281-4d8e-9a51-519be5c75cfe", + "createdTime": "2021-01-15T20:41:11.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa56a3c5-b18e-4db5-9437-b32493f6ae60", + "createdTime": "2021-01-15T20:41:10.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e4356ed-6890-407b-95b1-04674b2ce9ec", + "createdTime": "2021-01-15T20:41:10.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b05e3fee-ceee-40f3-8e32-eb986e41c248", + "createdTime": "2021-01-15T20:41:06.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f42a21b0-b25d-4ecf-8eae-dfc622d2d6b5", + "createdTime": "2021-01-15T20:41:06.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ac1d0ff8-84a9-4550-a9ee-09669e6a94ba", + "createdTime": "2021-01-15T20:41:05.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95a178d8-5464-4b63-8826-cc664c281ad3", + "createdTime": "2021-01-15T20:41:04.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f099c281-d864-4839-ad45-f9628811744d", + "createdTime": "2021-01-15T20:41:03.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "49b6808b-edca-483d-8b16-be1060f1e68c", + "createdTime": "2021-01-15T20:41:02.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39b23c65-3d68-4f09-8c4e-9f6ca1dafd32", + "createdTime": "2021-01-15T20:38:38.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c197421c-e2e9-498e-907f-7dc68b0e5470", + "createdTime": "2021-01-15T20:38:37.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ace42c9c-c6b0-404d-9acb-7ca4bbb0d0f5", + "createdTime": "2021-01-15T20:38:36.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e8632c7-c07a-4774-bcfd-ed20e4482143", + "createdTime": "2021-01-15T20:38:35.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8167c5a2-3d6d-4f23-be47-2178493d10a7", + "createdTime": "2021-01-15T20:38:35.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "91faf3f3-3da5-4077-9bb8-ef47cdc0e85e", + "createdTime": "2021-01-15T20:38:34.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62714bf9-ebee-4acb-a2d0-5b0625eec10d", + "createdTime": "2021-01-15T20:38:30.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a0caa006-0e77-4bd5-a63a-38a4f5cc4bb7", + "createdTime": "2021-01-15T20:38:29.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0a5736f-20bd-4829-a337-3530045bd75b", + "createdTime": "2021-01-15T20:38:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85dc2c9d-ac42-426a-b398-09e5b3f84db3", + "createdTime": "2021-01-15T20:38:28.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b96ef778-dca8-4b35-8d97-e8b4496b2aee", + "createdTime": "2021-01-15T20:38:27.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "48ca47f9-d97c-4581-80f2-f183c97c0910", + "createdTime": "2021-01-15T20:38:26.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba66e806-8daa-4cdd-a100-2e6447647e48", + "createdTime": "2021-01-15T20:38:01.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f58339ce-b1da-4cea-9a33-abd81f4b157d", + "createdTime": "2021-01-15T20:38:00.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12a81aff-14a4-46be-9d77-a313ba0a0c83", + "createdTime": "2021-01-15T20:38:00.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "246e4492-dca5-4d95-a84c-0efea4d335f0", + "createdTime": "2021-01-15T20:37:59.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "83cdd240-deed-4579-b309-608132ff83ae", + "createdTime": "2021-01-15T20:37:58.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0af4ef4-845e-4ce3-aa2d-00e32676b905", + "createdTime": "2021-01-15T20:37:58.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4b97c7cd-5c53-4e04-9d04-7775f6bd8118", + "createdTime": "2021-01-15T20:37:54.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "beedec76-5b0f-4687-bafd-315114bc97be", + "createdTime": "2021-01-15T20:37:54.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4d4011a4-02b6-4bf3-849d-f579b12d1377", + "createdTime": "2021-01-15T20:37:53.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9d815056-ccce-4446-aaf8-83112e1f4e78", + "createdTime": "2021-01-15T20:37:52.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "242a70ff-f220-41ca-aba0-8a2861a5a0d0", + "createdTime": "2021-01-15T20:37:52.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b9912ceb-1543-498f-907b-11e02288ca1b", + "createdTime": "2021-01-15T20:37:51.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d3243cb-93e9-4f49-b110-c01af7edae60", + "createdTime": "2021-01-15T20:37:35.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a8d1b0f-97ce-471d-95f1-8887f7038bcc", + "createdTime": "2021-01-15T20:35:03.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fcb4876-f324-4e0b-a9c0-543a13fd7bdf", + "createdTime": "2021-01-15T20:34:36.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "640024be-5957-493f-8cda-2fb7c397f3ca", + "createdTime": "2021-01-15T20:33:43.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b386acb1-9b07-4192-878a-66833befc234", + "createdTime": "2021-01-15T20:32:56.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d5370165-a9d6-4f0a-9cfd-cfe70ae9a9a1", + "createdTime": "2021-01-15T20:32:54.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75215d40-feea-4488-b032-e76d171af34a", + "createdTime": "2021-01-15T20:30:19.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2dce8de-7790-498d-a5b3-af5046fbd989", + "createdTime": "2021-01-15T20:30:11.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59b38131-8405-4179-9c99-d40e57fb9c6f", + "createdTime": "2021-01-15T20:12:03.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "028e386d-2ecd-4470-8927-e7036e5916f0", + "createdTime": "2021-01-15T20:19:02.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "59804b52-a97e-42cb-a8b7-078e0af90b43", + "createdTime": "2021-01-15T20:19:56.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e146df2-28b1-49c0-af05-1b4a09e597ef", + "createdTime": "2021-01-15T20:19:56.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57e01edf-3e6c-457c-b68b-c4031ed626a4", + "createdTime": "2021-01-15T20:19:55.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "860ff57e-2d16-4a10-a913-d970293603da", + "createdTime": "2021-01-15T20:19:55.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0af1ea52-23b5-453e-8c85-696f6ec1f97d", + "createdTime": "2021-01-15T20:11:52.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "179ddc4e-e6b3-4023-be2a-dd4313204ca5", + "createdTime": "2021-01-15T20:12:44.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "65cf3795-191b-4491-8a29-28358d53bc37", + "createdTime": "2021-01-15T20:13:29.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7cd923b-9867-4f8e-acd3-2f2a67f6928f", + "createdTime": "2021-01-15T20:19:02.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9edfa2ae-0fe2-445c-a97f-36c5c058dc6a", + "createdTime": "2021-01-15T20:19:01.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f85d023e-61d9-4a94-a1e7-ec3afb7f2d82", + "createdTime": "2021-01-15T20:19:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ecc0371-9eb7-48b2-aa45-875aa3e7072e", + "createdTime": "2021-01-15T20:13:29.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "464f7688-c448-434a-b913-322daf41dd20", + "createdTime": "2021-01-15T20:13:28.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "de7686d9-6dfa-4c04-aaa7-5224c174fcbe", + "createdTime": "2021-01-15T20:13:28.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b9b0bfc-7586-4514-918a-54932e1b8396", + "createdTime": "2021-01-15T20:12:46.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d286241c-0e0d-451a-ae38-32390c4c8222", + "createdTime": "2021-01-15T20:12:43.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d1ac0223-d82b-4a25-bf2c-0768d8fba703", + "createdTime": "2021-01-15T20:12:42.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a09d0429-93a8-4e13-b715-eed74edac0eb", + "createdTime": "2021-01-15T20:12:03.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "898c088e-ae1b-4661-91a6-ef178006aa21", + "createdTime": "2021-01-15T20:12:02.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "25d92240-de48-4cf9-9dd3-ea1934c0ef51", + "createdTime": "2021-01-15T20:12:02.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f649883-3888-4cb4-8bba-23cd2e8e8a59", + "createdTime": "2021-01-15T20:11:52.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b7b1cb7b-7469-4c96-bad1-0da264e7c0b8", + "createdTime": "2021-01-15T20:11:51.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0661310c-4e73-41e3-80ff-b09f3d19d5ca", + "createdTime": "2021-01-15T20:11:51.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab269a33-e9eb-4135-90b8-4e88822e0294", + "createdTime": "2021-01-15T20:11:40.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "400930e5-7f7b-4327-9f88-c4f899cd8aa7", + "createdTime": "2021-01-15T20:11:39.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ddfd0502-3f12-43b5-8879-8005d6965e8f", + "createdTime": "2021-01-15T20:11:39.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5816f8d3-584e-4a46-a78e-dbde22379abd", + "createdTime": "2021-01-15T20:11:38.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c4c087c-a028-4ad8-9628-e129522bb68d", + "createdTime": "2021-01-15T19:06:34.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7a95a58d-4734-4318-993b-70c52f916285", + "createdTime": "2021-01-15T19:06:23.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "87133b15-78ed-42b6-bfcb-4deff7a019ab", + "createdTime": "2021-01-15T19:03:19.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30b746b4-39a9-4307-b372-9bac88a8bf46", + "createdTime": "2021-01-15T19:06:18.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22d4d197-27eb-461e-86c8-8ad393c50419", + "createdTime": "2021-01-15T19:06:11.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae8018c-211f-4044-bda5-8c27166e6db0", + "createdTime": "2021-01-15T19:06:05.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c62f191-f549-40ef-a528-268315ce5534", + "createdTime": "2021-01-15T19:06:02.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a3a8cee5-6477-4528-aefc-e8a3e6a602f1", + "createdTime": "2021-01-15T19:05:58.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1aa7940c-d00d-4b01-a23b-b06458c94048", + "createdTime": "2021-01-15T19:06:57.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f1feb65-628b-46b1-84c4-13158673eb5d", + "createdTime": "2021-01-15T19:05:57.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8fd4ef8d-a469-4709-9996-8fa5080ee894", + "createdTime": "2021-01-15T19:05:53.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1145c8da-8a96-4beb-af6b-ea38ac50bd91", + "createdTime": "2021-01-15T19:05:52.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae392bc-4ac3-47ca-b134-aa870e8d2bae", + "createdTime": "2021-01-15T19:06:51.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1ab8443f-4f55-4775-9980-c880fe08d8d5", + "createdTime": "2021-01-15T19:05:47.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5be16cf0-fe27-416e-8972-d6888d7518b1", + "createdTime": "2021-01-15T19:06:40.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "36be5df5-faf3-4a64-841f-2f2fce7cf33d", + "createdTime": "2021-01-15T19:06:57.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803244b8-a76a-489c-8281-d5f81e19fc3a", + "createdTime": "2021-01-15T19:06:56.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f4f0747-17d8-4ca0-9924-de94e5a272a2", + "createdTime": "2021-01-15T19:06:55.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7e26c14-f6e9-40ec-9c02-e29c5243c56b", + "createdTime": "2021-01-15T19:06:55.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "47eb3cb8-8d23-4523-9db5-6f4fb04f18f8", + "createdTime": "2021-01-15T19:06:54.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9705723-d4de-43ad-a0e5-2024320d37a9", + "createdTime": "2021-01-15T19:06:50.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5abfa6f-470d-4abb-ad9d-fa4ff90f7e92", + "createdTime": "2021-01-15T19:06:49.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d8b1cf6c-61ad-4ec1-8064-9839954d5b76", + "createdTime": "2021-01-15T19:06:49.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c4fd830e-4162-48ed-9089-01be2196f2d9", + "createdTime": "2021-01-15T19:06:48.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7b7d389-5d11-405e-8137-32f5bc5f9ecd", + "createdTime": "2021-01-15T19:06:48.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17c8e446-f41d-4b5f-b9bc-c6ba5a426533", + "createdTime": "2021-01-15T19:06:40.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "010b9216-1d70-47c6-ac0e-45a11ff4b598", + "createdTime": "2021-01-15T19:06:39.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cf355b8-a82e-4599-891c-eb7bd8238b7d", + "createdTime": "2021-01-15T19:06:39.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b4fbaed-cda9-43d2-8dc5-94ab866e86a9", + "createdTime": "2021-01-15T19:06:38.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f67935b-0099-4a59-abe3-404a01d98203", + "createdTime": "2021-01-15T19:06:37.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5d56ebb-59ad-4829-95f8-0b44a3735d87", + "createdTime": "2021-01-15T19:06:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c9d6abc-ad8e-4cd9-8297-56a07555ec92", + "createdTime": "2021-01-15T19:06:33.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1665b5d-058f-4d5d-9841-fee3bc57ec12", + "createdTime": "2021-01-15T19:06:32.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bcbbf1d2-0968-4d9b-8033-5136aacdd8ad", + "createdTime": "2021-01-15T19:06:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0481f298-2f78-41e5-85e7-b496b6aac908", + "createdTime": "2021-01-15T19:06:31.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c64673c5-d61a-486c-aec0-8c93acdcb4f0", + "createdTime": "2021-01-15T19:06:22.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5373eaf6-d07d-4d6d-ada3-05dc43b0e951", + "createdTime": "2021-01-15T19:06:22.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "947cbf4f-941d-430d-ae68-717da4798dd4", + "createdTime": "2021-01-15T19:06:21.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "de943b97-52e9-49c0-822d-7ef6cbb19581", + "createdTime": "2021-01-15T19:06:21.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4710b8f2-c582-4a2b-a997-c5bbcc61481a", + "createdTime": "2021-01-15T19:06:20.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d318eafd-883e-4abd-a4a2-dfd1cb23c652", + "createdTime": "2021-01-15T19:06:18.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c696cf50-9e2e-48d8-ad61-7a6e26ed4e4d", + "createdTime": "2021-01-15T19:06:17.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "812db430-f5f0-4296-bf13-3b52b152de21", + "createdTime": "2021-01-15T19:06:17.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "14dee22f-e899-49b2-8835-781f87a2df54", + "createdTime": "2021-01-15T19:06:16.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7d2b0a9b-31eb-4045-b9bc-9bcb1ecc773d", + "createdTime": "2021-01-15T19:06:16.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "505ed816-5801-4d70-881c-94a842f60560", + "createdTime": "2021-01-15T19:06:10.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c223bc12-f85e-4f30-a5cb-0d681221ce97", + "createdTime": "2021-01-15T19:06:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "47ed1ecd-d71a-4f9b-a572-3fb8654e74d3", + "createdTime": "2021-01-15T19:06:09.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b3fdb13a-e469-49dc-9a3a-e242f659d8bd", + "createdTime": "2021-01-15T19:06:09.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7ac2ed59-1fca-4522-a378-7bb82248535e", + "createdTime": "2021-01-15T19:06:08.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "08e84b17-97aa-424b-a204-4581885b97a8", + "createdTime": "2021-01-15T19:06:04.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c70809cc-d4bd-481f-b950-2d7a65503e3c", + "createdTime": "2021-01-15T19:06:03.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe153242-bfa7-4499-8f1d-f6f145391368", + "createdTime": "2021-01-15T19:06:03.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "49977dde-7cae-49de-a160-6f5ebe5e8bef", + "createdTime": "2021-01-15T19:06:02.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8349e2d7-2fe7-4c59-9f6c-271bea0f2a0e", + "createdTime": "2021-01-15T19:06:02.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5f05bd7-d667-4d59-bfc6-a9716bd02020", + "createdTime": "2021-01-15T19:06:01.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2bca6d53-e8a5-44cb-ba46-93262b247502", + "createdTime": "2021-01-15T19:06:01.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "70f9f2e4-b3a8-48b7-8dd5-64e0aed36278", + "createdTime": "2021-01-15T19:06:00.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "10de23c3-a12d-406e-a55c-f77f3327f2df", + "createdTime": "2021-01-15T19:06:00.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "902bb3b8-71c2-443d-9954-85715b0930ce", + "createdTime": "2021-01-15T19:05:59.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4c740f3-8761-4fce-bb13-386c4ad768ed", + "createdTime": "2021-01-15T19:05:57.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c51483db-dfab-4799-8015-8edadf446fc2", + "createdTime": "2021-01-15T19:05:57.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d309153b-69e2-4ec4-a1a9-0b59bb83a15e", + "createdTime": "2021-01-15T19:05:56.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "673a7297-4a24-4044-b8eb-9bbcd929b6ff", + "createdTime": "2021-01-15T19:05:56.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ef6d6ff1-1691-48d8-b729-eb6216912e88", + "createdTime": "2021-01-15T19:05:56.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ab3017a8-dba7-4326-a2e1-d373ea7d8dc4", + "createdTime": "2021-01-15T19:05:55.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ddde456b-8fc9-447a-a12b-204c29b562fe", + "createdTime": "2021-01-15T19:05:55.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "15581959-d7cb-4fff-8e99-6ed4da88b8d1", + "createdTime": "2021-01-15T19:05:55.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c627704f-15b0-4390-ba55-233b70cd81e5", + "createdTime": "2021-01-15T19:05:54.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d7db8aef-3366-41c2-a749-32cac63e11a7", + "createdTime": "2021-01-15T19:05:54.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f8208cb-c754-48f6-8d41-7dfa61160378", + "createdTime": "2021-01-15T19:05:53.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "032e152e-6f4e-4870-9d6f-842ece3c8511", + "createdTime": "2021-01-15T19:05:52.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d6974d2-ed3d-4496-9187-b7e6b4c8cacb", + "createdTime": "2021-01-15T19:05:52.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0cad8e40-89ab-43c4-a5ff-1b1afcf5baaf", + "createdTime": "2021-01-15T19:05:51.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c70becba-f005-4e39-880e-eaae756edf96", + "createdTime": "2021-01-15T19:05:51.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33cf2dd8-d495-43f4-81be-d84c4be1ef26", + "createdTime": "2021-01-15T19:05:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8c219499-653f-4319-addd-96e11c9b6fab", + "createdTime": "2021-01-15T19:05:51.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "068cad20-4f87-44d7-a21c-42b24703f799", + "createdTime": "2021-01-15T19:05:50.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f65de20-3ed6-4429-a363-ce399f245359", + "createdTime": "2021-01-15T19:05:50.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6a8ad5e4-85a2-4d6e-94df-041ff42c3f31", + "createdTime": "2021-01-15T19:05:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06768d22-86a8-4e35-8601-b58cb3eb4c49", + "createdTime": "2021-01-15T19:05:46.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "72d05582-49db-46d5-b5a2-27d4c65721ce", + "createdTime": "2021-01-15T19:05:45.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afcb69b2-038c-4f9f-90c1-e072bd8299ae", + "createdTime": "2021-01-15T19:05:45.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ebc93928-9e4c-4772-b9ed-8bb8146d1bec", + "createdTime": "2021-01-15T19:05:44.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5cbd48e8-822a-4798-8a39-6ab835c63b8e", + "createdTime": "2021-01-15T19:05:43.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d41bfcc-103a-4778-95ce-9cb241472816", + "createdTime": "2021-01-15T19:03:18.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "768714bf-7165-4e7c-82b3-834113795848", + "createdTime": "2021-01-15T19:03:17.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b19867b8-40e9-460e-838a-19a2017ba09f", + "createdTime": "2021-01-15T19:03:16.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d429a387-30d5-4981-b9c3-dd0ed614b3ff", + "createdTime": "2021-01-15T19:03:16.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4cedd1d5-0d33-4755-81d6-5dd684b0aa76", + "createdTime": "2021-01-15T19:03:15.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05f76a20-1aaa-4e33-bf0b-db0812828692", + "createdTime": "2021-01-15T19:03:12.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bf4ef598-cf98-42cd-8bf4-a88fe601d5f1", + "createdTime": "2021-01-15T19:03:12.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c2b1991f-b609-40c6-bc72-5341e94f0b8d", + "createdTime": "2021-01-15T19:03:11.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "316483c7-ec2a-47ef-a4f4-f4ddb64c70db", + "createdTime": "2021-01-15T19:03:11.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0618aa4-ead2-4725-add1-a6a96acb7f4b", + "createdTime": "2021-01-15T19:03:10.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "aff9fda2-e93e-4f9c-969b-472dec12f3e8", + "createdTime": "2021-01-15T19:03:09.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1b6226f-ea48-4a24-9833-ee8c1b636d19", + "createdTime": "2021-01-15T18:56:17.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e414d98d-6234-4520-ab51-26e268584017", + "createdTime": "2021-01-15T18:55:11.022Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "486ba0a3-27a5-4d86-8a8e-c5c66383c0e8", + "createdTime": "2021-01-15T18:55:09.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea608bfa-8310-467c-a81e-c6df9f48a260", + "createdTime": "2021-01-15T18:54:43.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "844c8911-74b1-4312-b3ba-6ece98dd76f2", + "createdTime": "2021-01-15T18:54:42.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "52082120-dded-43e9-93bd-5a407b641bb8", + "createdTime": "2021-01-15T18:54:35.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baf86bdc-c48c-4b57-a8b7-63d32a0b6ed2", + "createdTime": "2021-01-15T18:53:49.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a66ce9-124a-49fe-b9ff-6d0ba5f73535", + "createdTime": "2021-01-15T18:52:00.075Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7afcc970-66fa-4643-b8d0-b0729be06861", + "createdTime": "2021-01-15T13:58:35.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d126569a-1dfb-4bf6-adf0-04841eeac30e", + "createdTime": "2021-01-15T13:59:33.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "372eaafe-2ed8-4ae0-bdb9-16d38a168047", + "createdTime": "2021-01-15T13:58:30.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1d1d8d67-46b8-41a7-992e-3f62c5fdc37c", + "createdTime": "2021-01-15T13:59:28.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "461ba9fa-f394-4daf-a183-78860203c0e8", + "createdTime": "2021-01-15T14:01:27.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f55a14bb-1d04-47d0-90c2-7170619c5c9a", + "createdTime": "2021-01-15T13:59:26.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "de2cab3d-61dd-4172-a48a-37d809c1af30", + "createdTime": "2021-01-15T14:01:22.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "01e2f04c-5427-43a6-a23d-980ecb2546cd", + "createdTime": "2021-01-15T13:59:20.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "24884131-7770-4e83-8bf2-bdc4c87043a7", + "createdTime": "2021-01-15T14:01:18.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3bc227f5-307e-47dd-a9f9-1768f2bb5ed5", + "createdTime": "2021-01-15T14:01:12.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b3081549-8c02-4f32-8ce9-06fb93236fe5", + "createdTime": "2021-01-15T14:01:51.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ed32d6d-6dc3-4c23-aa50-6bdd7584c08e", + "createdTime": "2021-01-15T14:01:50.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e031d433-c1ed-44f8-a9cf-ab17aff19ada", + "createdTime": "2021-01-15T14:01:50.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5497d5c5-1c1a-4274-a4de-a97f91f8f2ae", + "createdTime": "2021-01-15T14:01:49.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3004d827-45d4-49d4-827c-aa8770896ace", + "createdTime": "2021-01-15T14:01:48.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d9777865-a8fb-4816-a1ce-c1980169d1a1", + "createdTime": "2021-01-15T14:01:48.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e994c408-4491-4913-9ecf-b738cfab38d7", + "createdTime": "2021-01-15T13:55:44.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30084d3f-8ad2-41ef-b37f-9c1e6e4f199b", + "createdTime": "2021-01-15T14:01:45.46Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d77dc8e9-75e9-42ef-97eb-09c0109dc0d8", + "createdTime": "2021-01-15T14:01:44.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "75a9bbd4-7857-45cd-b8fd-62df63413115", + "createdTime": "2021-01-15T14:01:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03020e70-d9fe-4b4c-af7b-b4b5a9bb0088", + "createdTime": "2021-01-15T14:01:43.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c03ffda6-036a-4072-9132-9a421e32a502", + "createdTime": "2021-01-15T14:01:43.094Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "39204ed8-d633-4d9a-b629-18e805525358", + "createdTime": "2021-01-15T14:01:42.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f73608e2-7806-4c87-9f9a-8b859985b749", + "createdTime": "2021-01-15T14:01:27.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f4275696-e0a4-444a-86ba-cd865d67974f", + "createdTime": "2021-01-15T14:01:26.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "713282c5-2474-4dab-95d5-444f98d43f9f", + "createdTime": "2021-01-15T14:01:26.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9ab4ed0b-f1cc-4021-8e85-1f3d65410faf", + "createdTime": "2021-01-15T14:01:25.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c2bc97da-0719-45b3-bcd7-daaceca3fcb2", + "createdTime": "2021-01-15T14:01:25.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df34e81d-abc2-4f1c-baa9-084c9223f841", + "createdTime": "2021-01-15T14:01:22.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1b25096-8a4f-4213-83df-e21fdc053f90", + "createdTime": "2021-01-15T14:01:21.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "472709b7-e8f2-46fe-ba0c-ca38d43914d1", + "createdTime": "2021-01-15T14:01:21.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6f49e787-646c-4561-b572-2a9f5c150694", + "createdTime": "2021-01-15T14:01:20.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe597f73-0473-47b9-8faa-e25caf515631", + "createdTime": "2021-01-15T14:01:19.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "992dc115-064e-4829-824a-bf48fa705761", + "createdTime": "2021-01-15T14:01:18.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9f01017b-4436-4307-8ac7-7918cd80a759", + "createdTime": "2021-01-15T14:01:17.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a6315eef-78a0-4faf-8de3-dfc851a4d2d1", + "createdTime": "2021-01-15T14:01:17.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a479045-16c0-4efe-a5d9-41dd9a5b655b", + "createdTime": "2021-01-15T14:01:16.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81461f56-f804-4f4a-9f8d-0652664e3d3e", + "createdTime": "2021-01-15T14:01:15.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "972e6721-9d44-4acb-be2b-cd518d55bafc", + "createdTime": "2021-01-15T14:01:12.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6e5e42ba-d59c-4b0b-af18-86080e22a1b0", + "createdTime": "2021-01-15T14:01:11.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "483b54bd-e877-4132-b704-f7ebaff1efcb", + "createdTime": "2021-01-15T14:01:11.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ac7ddef-7cb2-49f7-a7da-59a0441187cc", + "createdTime": "2021-01-15T14:01:10.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d340b3ec-03a4-4fa5-8bee-5a844d2eb018", + "createdTime": "2021-01-15T14:01:10.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f8e5435-e190-40a9-a8da-aac65891bf0f", + "createdTime": "2021-01-15T13:59:32.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "887dc187-6b31-4137-9a71-9bbb1a37cda5", + "createdTime": "2021-01-15T13:59:32.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b800d43-ee6e-47f5-a858-5b107c4c0200", + "createdTime": "2021-01-15T13:59:32.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3122ecbc-04d4-4c94-8929-9a5a3db208c9", + "createdTime": "2021-01-15T13:59:31.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5308d8ab-1913-43fa-94c9-202cf7ec7994", + "createdTime": "2021-01-15T13:59:30.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "078c1ec1-3c56-464d-b419-5f0b1b95d5ed", + "createdTime": "2021-01-15T13:59:28.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a471b7f8-adb2-4461-90bd-4d7c95f203f5", + "createdTime": "2021-01-15T13:59:27.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd1dcfe2-385e-435e-a9c3-0de08088851a", + "createdTime": "2021-01-15T13:59:26.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee7346ac-2e2a-4448-a59a-6172b4a8c70b", + "createdTime": "2021-01-15T13:59:26.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "08706471-76f3-43e3-bce0-7469bf713c13", + "createdTime": "2021-01-15T13:59:25.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55b7100e-a6cb-4189-ad4c-7bc101a6d405", + "createdTime": "2021-01-15T13:59:25.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f67abce7-ca22-4ebb-9ff2-4ee1bc528103", + "createdTime": "2021-01-15T13:59:24.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7d7d0d-90ad-475f-ae5b-670f42786598", + "createdTime": "2021-01-15T13:59:24.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "01c8a7a8-73de-42a0-8aa3-77864f78201a", + "createdTime": "2021-01-15T13:59:23.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "faec74f0-8e87-485d-bc25-10397e079f06", + "createdTime": "2021-01-15T13:59:23.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62d6418e-58e8-430b-96f6-c3f04258410a", + "createdTime": "2021-01-15T13:59:19.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bb1794e-7ebc-4c74-a0d5-d1b3d7b707b0", + "createdTime": "2021-01-15T13:59:19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "98662986-ba2d-40c8-b66f-8b25c18d64f2", + "createdTime": "2021-01-15T13:59:18.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "125de8c2-e79e-4c76-8528-857e7ff13381", + "createdTime": "2021-01-15T13:59:17.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cafa95b3-affd-43f7-bfa4-cc8af5a16b9f", + "createdTime": "2021-01-15T13:59:17.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edee361a-5bde-4f4c-8d2e-a340940896b1", + "createdTime": "2021-01-15T13:58:35.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bfa40072-02df-4bd4-b3cb-9d57f56a5fa3", + "createdTime": "2021-01-15T13:58:34.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b422bb6f-0c49-4090-b3de-6246d4408c56", + "createdTime": "2021-01-15T13:58:33.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8bb314c8-79bd-4eab-b4ec-85fed81c5a5c", + "createdTime": "2021-01-15T13:58:33.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0517bb42-3d63-4eaf-9516-f8f3e22ac952", + "createdTime": "2021-01-15T13:58:32.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "feb1103a-8958-446b-b716-44639f20e5a8", + "createdTime": "2021-01-15T13:58:29.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6964f1ec-fb25-46e3-9cc2-40b3f2b63108", + "createdTime": "2021-01-15T13:58:28.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bb38434a-729f-4f41-82b4-342b139c26b5", + "createdTime": "2021-01-15T13:58:28.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0e96ec5b-40d8-47a5-a6b7-4cc25d6a6633", + "createdTime": "2021-01-15T13:58:27.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2a31d68d-32b5-477f-9b13-2cdcb5597ca5", + "createdTime": "2021-01-15T13:58:27.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "359496af-a317-4983-aa9e-90d7684dbfdb", + "createdTime": "2021-01-15T13:55:43.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1adde86-8c4b-47d8-bc48-35e806c8efde", + "createdTime": "2021-01-15T13:55:43.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54879c77-06cf-4744-8494-03611a865825", + "createdTime": "2021-01-15T13:55:42.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "093eb28b-7da0-4d0c-80a4-e5323638799c", + "createdTime": "2021-01-15T13:55:41.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f319ee84-bcf1-49f9-bf35-505ff132ab63", + "createdTime": "2021-01-15T13:55:41.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30812f05-e147-4afe-98c7-bf342878b76c", + "createdTime": "2021-01-15T13:55:37.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f941b35d-a45b-4c45-9d48-7b61629bb44c", + "createdTime": "2021-01-15T13:55:36.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "783604df-8899-4b5e-86ee-dae65aefbf22", + "createdTime": "2021-01-15T13:55:36.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "716ec527-44e1-4f9a-8683-10a53f05199a", + "createdTime": "2021-01-15T13:55:35.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0f22f498-11ab-412f-925f-03516d2226af", + "createdTime": "2021-01-15T13:55:34.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "30be140a-9b01-4cdc-adab-2a44ee58e3c3", + "createdTime": "2021-01-15T13:55:33.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b964cf9c-b015-473c-98ea-c39775f65265", + "createdTime": "2021-01-15T13:53:39.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d25cbf7-c115-47c1-9064-cf05b877051a", + "createdTime": "2021-01-15T13:53:19.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c3cce8b-54cc-4b5c-b57b-2041993fd6fd", + "createdTime": "2021-01-15T13:52:57.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a1d7427-0fc0-4d25-bcab-2b6a65775851", + "createdTime": "2021-01-15T13:50:56.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12a050da-da72-4be5-92e6-f7e18b87dd77", + "createdTime": "2021-01-15T13:50:20.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d955a69-6f82-4829-bf39-62e9ea23ca2f", + "createdTime": "2021-01-15T13:49:30.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dfa50be7-83c6-461a-81a2-f67fba5269c4", + "createdTime": "2021-01-15T13:48:15.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2806c530-6588-4adf-90aa-c0b6a8299d9b", + "createdTime": "2021-01-15T09:16:03.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad3485fa-5175-41e5-bf75-340e23d2822c", + "createdTime": "2021-01-15T09:16:02.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8f5e0d70-d41f-4e5b-ad22-31448740153c", + "createdTime": "2021-01-15T09:16:02.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "93ebc5c7-c3bc-4618-917c-caf70b7f2f95", + "createdTime": "2021-01-15T09:16:01.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57062d89-11ce-4e5f-ae29-1f3e0639f913", + "createdTime": "2021-01-15T09:12:12.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ab65de02-9fc6-4d96-a1e0-3d638b3dae95", + "createdTime": "2021-01-15T09:12:11.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c1ead2b-7b18-4874-8394-3abd2a9f3d01", + "createdTime": "2021-01-15T09:12:10.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f60a05a-bd50-4d71-b9cc-3d86431175b2", + "createdTime": "2021-01-15T09:12:10.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbfe8d6e-bec0-4acd-8a4f-565af8542a7f", + "createdTime": "2021-01-15T09:05:21.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ce861e50-8f3e-48ff-baca-550ec25a4084", + "createdTime": "2021-01-15T09:05:20.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b39c9fdd-1fc2-419e-8e6a-1a44259ee231", + "createdTime": "2021-01-15T09:05:20.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "98faee57-f828-492f-a9e3-50d7171bda64", + "createdTime": "2021-01-15T09:05:19.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eef8960c-521b-494e-91a6-632b3ecd9a55", + "createdTime": "2021-01-15T09:01:23.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41575b95-c21d-49bc-8998-50ee8cbe9d4d", + "createdTime": "2021-01-15T09:01:22.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35f66bb3-cbb7-47d8-baa3-d9764f7d0007", + "createdTime": "2021-01-15T09:01:21.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb79d206-5494-414c-b502-f17d82951e4b", + "createdTime": "2021-01-15T09:01:21.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ecf14bec-6682-4f78-969d-8b411fe9405c", + "createdTime": "2021-01-15T08:47:08.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "338e416b-11a1-4c6b-9310-3cc7b8956f66", + "createdTime": "2021-01-15T08:47:07.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "547d037c-34b0-487c-8632-530ed5183254", + "createdTime": "2021-01-15T08:47:07.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf5ed8ab-660d-4244-9022-40454c9ac66b", + "createdTime": "2021-01-15T08:47:06.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "226cc709-4df3-4c5b-a0ed-944d97cfd547", + "createdTime": "2021-01-15T08:41:30.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "62c31ae0-c267-41c0-849e-75980efa1ff3", + "createdTime": "2021-01-15T08:41:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d16a90c-9fac-41b7-a1b2-55af5b7a08b6", + "createdTime": "2021-01-15T08:41:28.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f395e21-5466-4a51-ab59-399aceb19839", + "createdTime": "2021-01-15T08:41:27.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b904950-c3ba-42f9-85cb-2468105f7d34", + "createdTime": "2021-01-15T08:24:01.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "61601be6-8e0c-4239-acb5-58cc5d47834c", + "createdTime": "2021-01-15T08:35:50.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5ea9b864-168b-4b1a-8bd3-2b49548e0f64", + "createdTime": "2021-01-15T08:40:41.034Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c1b7dcd-386a-4c8f-8b08-d3a71dd6684d", + "createdTime": "2021-01-15T08:40:40.119Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0446b1b5-d167-40fc-855a-7891b22e49ee", + "createdTime": "2021-01-15T08:40:39.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60e79bd4-e261-4b1b-9548-333dfb086978", + "createdTime": "2021-01-15T08:40:38.252Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9aabab7-d67b-4706-b124-7d2ee007a896", + "createdTime": "2021-01-15T08:32:04.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f71639d0-aa4e-4b1b-87ea-7f8debdcaf69", + "createdTime": "2021-01-15T08:35:49.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05109794-faf4-4c22-b271-51cb094f5596", + "createdTime": "2021-01-15T08:35:49.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96f07200-0d18-4b16-bb8d-3c086f31e501", + "createdTime": "2021-01-15T08:35:48.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65fef6d2-aaf4-4068-aba3-10a6d0f3d005", + "createdTime": "2021-01-15T08:32:04.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bed71064-bb8d-49c4-b894-ddf4a0eb7874", + "createdTime": "2021-01-15T08:32:03.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b902bc0-7d64-45b2-8e0f-5bbdccb8085d", + "createdTime": "2021-01-15T08:32:03.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5be25d9-6310-4432-b7dd-692027ba640c", + "createdTime": "2021-01-15T08:24:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2f4f7a03-22d1-4a45-8413-0c8f2b920366", + "createdTime": "2021-01-15T08:24:00.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0ea1667e-732d-403b-b7ad-d6f225aa6e97", + "createdTime": "2021-01-15T08:23:59.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4dddd10d-4144-4ea2-997f-c7f686900b8c", + "createdTime": "2021-01-15T08:20:31.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8ca0e293-5a34-4566-aa04-fb179477888e", + "createdTime": "2021-01-15T08:20:30.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "efca5a2d-76c3-405e-accc-08e4c68af66a", + "createdTime": "2021-01-15T08:20:30.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a89c5bf-479b-4e53-9382-e620066bbb71", + "createdTime": "2021-01-15T08:20:28.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c689a13-fd26-46e0-90c6-daf733ae7f37", + "createdTime": "2021-01-15T06:18:44.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bd06452d-a327-4aaf-b852-95a97b923e76", + "createdTime": "2021-01-15T06:18:46.101Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6c70d3cb-f56c-48b3-ad66-f2e8f1016573", + "createdTime": "2021-01-15T06:18:43.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ede4f21b-5bc7-48db-8367-87f42092a7a3", + "createdTime": "2021-01-15T06:18:42.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee0b241d-53dc-4fd9-be6a-a9931fc25e07", + "createdTime": "2021-01-15T06:17:47.476Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cc4f455e-b40c-4326-877e-19f47256d982", + "createdTime": "2021-01-15T06:17:46.563Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "068818fb-b2c7-4e60-9971-192d6f9c2e2f", + "createdTime": "2021-01-15T06:17:45.557Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "66c19bc5-9cd8-45fe-8dbd-bd48e5ed475f", + "createdTime": "2021-01-15T06:17:43.784Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d9e8a99-99ba-4bd2-8629-62ceb1bfd574", + "createdTime": "2021-01-15T00:52:24.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "eaa06967-d778-44fd-8482-2384327b8f83", + "createdTime": "2021-01-15T00:52:23.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "363e3643-169d-42c1-a9f2-d881d3682556", + "createdTime": "2021-01-15T00:52:23.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "10764e2a-e81e-4589-acc3-a797ff1a20a7", + "createdTime": "2021-01-15T00:52:22.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "77f6c86a-084e-45c7-ba71-33f3aae3ea3f", + "createdTime": "2021-01-15T00:52:21.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ed854604-2add-4b03-9c62-702eda237d99", + "createdTime": "2021-01-15T00:52:21.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c6b2892e-6450-40f5-9344-7cbf947b4c9d", + "createdTime": "2021-01-15T00:52:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3402ea17-278e-40e1-8c04-d99508503fd7", + "createdTime": "2021-01-15T00:52:17.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4dbc1f44-0f52-44d0-97c8-b3b0481ca3e6", + "createdTime": "2021-01-15T00:52:17.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "96dba8d3-d9c7-4487-9716-c8eb08143678", + "createdTime": "2021-01-15T00:52:16.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "63c1a356-955a-4b45-bfff-c33c42cf36f3", + "createdTime": "2021-01-15T00:52:16.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "267cfaba-c2a1-4329-a72f-7b86482e6c0d", + "createdTime": "2021-01-15T00:52:15.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8223bd6-811e-40a6-afd1-f50c2c3f6361", + "createdTime": "2021-01-15T00:46:44.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0fcbcf72-d4b4-4a43-a2e9-d466d46c5435", + "createdTime": "2021-01-15T00:35:07.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8d6383b7-756e-4a4b-8ea9-7b3c39c713d3", + "createdTime": "2021-01-15T00:33:49.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7abb7266-cb13-4826-a6cf-e1d4e7d0adc5", + "createdTime": "2021-01-15T00:36:48.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d959f662-f73d-4f26-a3f8-7b1f7f9d08da", + "createdTime": "2021-01-15T00:34:47.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "91a41921-128c-44df-83cf-b8ab1c888747", + "createdTime": "2021-01-15T00:32:44.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7dffc1ad-b156-4445-b71f-c2b438335ded", + "createdTime": "2021-01-15T00:33:42.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1edd897b-1448-4bd5-bb14-a4c2a79fd82e", + "createdTime": "2021-01-15T00:36:41.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d2869702-0d77-42b2-91d2-32ec51af91b4", + "createdTime": "2021-01-15T00:34:40.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b84f3ca-01ee-4a0a-8d1b-1094bd761b74", + "createdTime": "2021-01-15T00:35:29.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2c205f6e-02ce-4e25-8994-2ec87522b49e", + "createdTime": "2021-01-15T00:35:22.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f7e9e1c2-fe14-460a-8b0e-79103431067e", + "createdTime": "2021-01-15T00:37:19.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d8152dad-6430-45ee-9f48-0b3ad552c0e5", + "createdTime": "2021-01-15T00:37:19.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2bb30a8-a994-4cf9-a80e-eb770450c800", + "createdTime": "2021-01-15T00:37:18.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c0ee0ec-c128-4e46-9bff-1e703be06b3a", + "createdTime": "2021-01-15T00:37:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8ef7ecf0-ff8b-43ca-bdcd-ab89e6fbff0d", + "createdTime": "2021-01-15T00:37:17.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fc9eb64e-ff79-45e2-9dfd-74cee97c5b1a", + "createdTime": "2021-01-15T00:37:16.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9cd5d346-7b1d-4f5a-b383-e68c49ef481e", + "createdTime": "2021-01-15T00:35:13.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4fa2b406-8d3f-4880-8681-90bffb4b8bb3", + "createdTime": "2021-01-15T00:37:13.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4feaf397-b9bd-447e-8ae1-28c323eaebd7", + "createdTime": "2021-01-15T00:37:13.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f15ec22a-09f1-4a8d-93f4-fd596940a90c", + "createdTime": "2021-01-15T00:37:12.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803c6917-0d22-4d69-9397-b0397846599c", + "createdTime": "2021-01-15T00:37:12.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "31f9f9a2-a784-4e19-8e05-7eef9b40017f", + "createdTime": "2021-01-15T00:37:11.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82ca0013-70cb-4d3f-909c-5743daaf9e75", + "createdTime": "2021-01-15T00:37:10.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b62a316f-e147-4214-83aa-abe7c9a30696", + "createdTime": "2021-01-15T00:36:47.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02d04707-66a7-45f0-b867-c54a4891eac8", + "createdTime": "2021-01-15T00:36:46.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "34b2aa74-4f01-4724-b7c3-edc2d37a4c79", + "createdTime": "2021-01-15T00:36:46.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "897c1fd2-bcb7-4b3f-9147-8069d33f0b48", + "createdTime": "2021-01-15T00:36:45.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c616bd5b-2b3f-40e2-b036-42b2864a274f", + "createdTime": "2021-01-15T00:36:44.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "567026e0-8a31-4fd9-b1bd-10b09fe9aa17", + "createdTime": "2021-01-15T00:36:40.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7287381a-838e-4ce1-8660-3c1444bfe2a8", + "createdTime": "2021-01-15T00:36:40.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1647dcbf-e605-433b-8545-199aaa4b7c24", + "createdTime": "2021-01-15T00:36:39.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2b781d3-c987-4e92-aa48-ff597f7c4596", + "createdTime": "2021-01-15T00:36:39.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d3b36aaa-288a-4842-b219-2b3df6af5cd7", + "createdTime": "2021-01-15T00:36:38.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "179f0777-97c2-476f-b4b9-7fd39021e009", + "createdTime": "2021-01-15T00:35:28.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4392d86e-0d88-478b-8eb5-4aaf8be3ebcf", + "createdTime": "2021-01-15T00:35:28.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67fd414b-176a-4df5-b8de-f51aa4a273ce", + "createdTime": "2021-01-15T00:35:27.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9093540c-088e-4745-8399-680b4a8197f6", + "createdTime": "2021-01-15T00:35:26.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4196f6cd-0d9b-4b9c-a126-0503541b9485", + "createdTime": "2021-01-15T00:35:26.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a0f3614-145b-4ec0-8a3a-6badb184b33a", + "createdTime": "2021-01-15T00:35:21.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a583e232-3329-4493-b342-498273a92d28", + "createdTime": "2021-01-15T00:35:21.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33676a74-1ce1-4fa4-93b1-e983e30a1ec7", + "createdTime": "2021-01-15T00:35:20.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6621aba3-c0d4-49cd-afac-a353454ddf7c", + "createdTime": "2021-01-15T00:35:19.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3dc46692-ae05-4a35-8817-bbfecc40b980", + "createdTime": "2021-01-15T00:35:19.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f962c24-8beb-422a-adf5-82637d60603b", + "createdTime": "2021-01-15T00:35:13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3721f93-b300-464d-b1e2-9a1e58892dcd", + "createdTime": "2021-01-15T00:35:12.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff462a4-fda0-45da-a0ca-3cc50cad35c7", + "createdTime": "2021-01-15T00:35:11.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4e5681f-64e0-4ff0-8bf6-1cf6e7e91616", + "createdTime": "2021-01-15T00:35:11.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "73db4976-921c-43f3-924f-a958e53eb537", + "createdTime": "2021-01-15T00:35:10.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d2d8250-1545-4c3a-8797-90f31846a78d", + "createdTime": "2021-01-15T00:35:07.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3c9e26e-2b34-4f8d-8987-f00343a640c7", + "createdTime": "2021-01-15T00:35:06.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9ae0c504-7cd0-4220-b2ff-207383140dc1", + "createdTime": "2021-01-15T00:35:06.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b7d0e2f-c1bd-4b53-83f5-ef5c5bd9daff", + "createdTime": "2021-01-15T00:35:05.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a891b38f-0405-43c8-966b-76ea494f66c7", + "createdTime": "2021-01-15T00:35:04.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f2b0b0c-3c00-4fb2-a29c-1d2523d09c61", + "createdTime": "2021-01-15T00:34:46.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0c24af4-be2c-4e07-8d02-92356d4b93b1", + "createdTime": "2021-01-15T00:34:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3d2037e-50e0-4bff-968d-915f85b59bde", + "createdTime": "2021-01-15T00:34:45.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6edd97cd-942d-47ab-bcd3-3854d6c529d7", + "createdTime": "2021-01-15T00:34:44.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c9fcf996-15a9-45d5-bdb7-ebab03967644", + "createdTime": "2021-01-15T00:34:44.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6902d281-18df-4074-a008-b242c987c782", + "createdTime": "2021-01-15T00:34:40.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95370b46-5024-428a-a87d-7c76497fc6e8", + "createdTime": "2021-01-15T00:34:39.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8c24c9b0-f475-4a97-becd-e9210ad52980", + "createdTime": "2021-01-15T00:34:38.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1587d0e7-575b-4277-904a-8d8e5e25fadc", + "createdTime": "2021-01-15T00:34:38.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "deda3e13-d19f-4569-980c-55b50945d1c8", + "createdTime": "2021-01-15T00:34:37.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79109ad9-fbef-4513-98ce-e0a290c512f8", + "createdTime": "2021-01-15T00:33:48.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acb117be-3b56-481b-856d-1a5079e2b368", + "createdTime": "2021-01-15T00:33:47.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1dbde4a9-abe4-4f53-bc8e-a1e106c7e3cc", + "createdTime": "2021-01-15T00:33:47.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c68b1707-96bd-4f26-b5fc-665310a2fec8", + "createdTime": "2021-01-15T00:33:46.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "015b3307-6463-4bd0-8aa2-b94363bf01b0", + "createdTime": "2021-01-15T00:33:46.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "174f3729-3ddb-4290-bd37-07e9832c0faf", + "createdTime": "2021-01-15T00:33:42.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28fff6b7-9767-413a-b545-4f443677e049", + "createdTime": "2021-01-15T00:33:41.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6f6bc036-067a-4ac9-9e89-c90dff2704d5", + "createdTime": "2021-01-15T00:33:40.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43cb4bb4-221b-45f1-be46-6095d1af46b6", + "createdTime": "2021-01-15T00:33:40.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4f04b312-528f-43de-aade-6d6a46644f05", + "createdTime": "2021-01-15T00:33:39.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba5178ee-5d42-46e7-b4fc-8f40f8066243", + "createdTime": "2021-01-15T00:32:43.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a565d335-ab91-4eeb-9859-54ba829f55d3", + "createdTime": "2021-01-15T00:32:42.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "de80b484-a926-4089-a507-23903201bc5f", + "createdTime": "2021-01-15T00:32:42.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98067a81-1f73-4fbb-a1b1-ef23c0413e93", + "createdTime": "2021-01-15T00:32:41.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "837f6ba1-9b70-4f2b-9f4e-73d9adee1604", + "createdTime": "2021-01-15T00:32:41.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5db9b4f-4831-4bc7-be4a-9d46375c4ec0", + "createdTime": "2021-01-15T00:32:37.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1a1be7ce-e9b7-42e1-a8ec-28b833878e34", + "createdTime": "2021-01-15T00:32:36.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7829c81-8d11-4264-9b55-027c38537a52", + "createdTime": "2021-01-15T00:32:36.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2417bcf4-c292-4944-82a4-5381a7250a06", + "createdTime": "2021-01-15T00:32:35.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a3064ba-5f5b-417c-8017-abd4613673d4", + "createdTime": "2021-01-15T00:32:34.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1a4d2ff1-d102-42b2-b370-ed995b924b9e", + "createdTime": "2021-01-15T00:32:33.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bca89a7a-f4bd-44c4-84bb-7e21195d1808", + "createdTime": "2021-01-15T00:29:00.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2e7c9c9-9a95-4093-bd46-2b0c19ea9ae4", + "createdTime": "2021-01-15T00:27:56.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51e31a6d-53fa-47ed-a080-43fd85b18f60", + "createdTime": "2021-01-15T00:27:00.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03c20569-bb32-4f3d-b92c-87aaed959a21", + "createdTime": "2021-01-15T00:26:51.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9993875d-c733-4a3e-be46-973c329ffb36", + "createdTime": "2021-01-15T00:26:36.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ce0357d-9dbd-4d5d-8090-c463c2025398", + "createdTime": "2021-01-15T00:25:00.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02bcc115-e1b6-4158-bee1-3aa4d105bcc2", + "createdTime": "2021-01-15T00:24:15.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc4c8b98-482e-471c-8171-cc30b27bf571", + "createdTime": "2021-01-14T20:10:05.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "41dad869-bbce-4ffe-bac1-4a839cda301a", + "createdTime": "2021-01-14T20:11:02.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce46ff4-ce36-4d11-98f9-d957029cc8e5", + "createdTime": "2021-01-14T20:14:00.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1e186f63-5ee6-42dd-bdb9-61a483af2aef", + "createdTime": "2021-01-14T20:14:51.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "42433eb2-e841-40d8-90d2-5e2251cec442", + "createdTime": "2021-01-14T20:10:39.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "baa439a0-b440-4624-84bc-c5642aacb8ec", + "createdTime": "2021-01-14T20:16:32.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2d64667b-8754-4f8f-b5b5-dc8a659ccf0c", + "createdTime": "2021-01-14T20:16:32.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7869c585-c283-4e82-8d99-8280be90dda2", + "createdTime": "2021-01-14T20:16:32.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0dae039e-af52-4740-9009-e8f0b2ac83a6", + "createdTime": "2021-01-14T20:16:31.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7994335-3a0b-4f5b-8c27-b62a2c0e6478", + "createdTime": "2021-01-14T20:14:51.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "26e4edbe-7dfc-4fe1-9c65-564110268c4d", + "createdTime": "2021-01-14T20:14:50.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2fabc4b4-da2b-48ea-ab79-0bc4b60ef921", + "createdTime": "2021-01-14T20:14:50.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff87d87-0271-4f01-8d9d-7d4ea6c4a211", + "createdTime": "2021-01-14T20:14:01.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2eafddc3-4265-4eef-a8b6-2e41a8a73de5", + "createdTime": "2021-01-14T20:14:00.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "84a05b04-6ed8-4532-8cdd-84fa0fe7c6fe", + "createdTime": "2021-01-14T20:14:00.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1cfb571-d994-43a9-abf6-625b38eb991e", + "createdTime": "2021-01-14T20:11:02.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9ce7294-2689-4726-9625-ca594960b283", + "createdTime": "2021-01-14T20:11:01.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bde83fe3-70e2-4f74-aa9c-5b34cd40b129", + "createdTime": "2021-01-14T20:11:01.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff69d416-6993-4538-8715-7ad09d1f21a0", + "createdTime": "2021-01-14T20:10:40.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0742de03-38ad-4fc1-ac95-c87452a4351b", + "createdTime": "2021-01-14T20:10:38.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cbb90eec-ad6f-4ce2-b630-8a8d8564e316", + "createdTime": "2021-01-14T20:10:37.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34214102-36f3-447b-afd5-0689f81d1742", + "createdTime": "2021-01-14T20:10:05.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f84f5c23-4063-407c-afd4-5035160b7f9c", + "createdTime": "2021-01-14T20:10:04.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9647343d-b57a-4972-b50c-03940967cfe3", + "createdTime": "2021-01-14T20:10:04.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "addf8f2e-dfe4-40ab-b06f-db05b807619b", + "createdTime": "2021-01-14T20:10:04.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f63bdad-c05e-44ad-bf75-ab60e2dc774a", + "createdTime": "2021-01-14T20:10:03.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f1b584ec-0438-4692-89dc-24d2b9cac6f4", + "createdTime": "2021-01-14T20:10:03.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adf83345-27a3-4d6f-9740-42218174b87b", + "createdTime": "2021-01-14T20:10:02.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc67dc7-d2e6-456d-9b37-4b7ec22c4ba7", + "createdTime": "2021-01-14T14:07:15.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72506e97-520b-429c-88bd-9beffb542070", + "createdTime": "2021-01-14T14:07:14.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3177ddc-6e45-4c5d-9ef5-be14ebe2d41c", + "createdTime": "2021-01-14T14:07:14.332Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1a10ce3a-616f-4cba-b032-6005733d0150", + "createdTime": "2021-01-14T14:07:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05b0615a-220b-4b48-9b4f-3851353ccb08", + "createdTime": "2021-01-14T14:04:22.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "204a1e6d-90a3-4cd9-8d69-b8122e6341dd", + "createdTime": "2021-01-14T14:04:21.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4389fa05-d197-4eb0-b269-83edad5a4c56", + "createdTime": "2021-01-14T14:04:21.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce2f964d-e3dd-46df-bb1a-284fad50a4fb", + "createdTime": "2021-01-14T14:04:20.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58422070-5db9-4555-9689-190108678a00", + "createdTime": "2021-01-14T13:56:32.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abf281af-9678-4519-8b3f-87d373de90b9", + "createdTime": "2021-01-14T13:56:31.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f507a07b-acfb-4a33-b426-818809a955e4", + "createdTime": "2021-01-14T13:56:31.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a0395af-87b3-4896-ad65-1ef15cde7aef", + "createdTime": "2021-01-14T13:56:30.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3382c221-2472-4505-8a71-0a242a61ff4e", + "createdTime": "2021-01-14T13:53:47.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d3d90b-5637-48a4-9c9f-c584028d3a78", + "createdTime": "2021-01-14T13:53:46.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ebeefc6b-29a3-4ebb-a8eb-fc5c41b418ad", + "createdTime": "2021-01-14T13:53:46.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e25b9b7e-d239-45dd-b58a-6a014e309af1", + "createdTime": "2021-01-14T13:53:45.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33c77229-2a27-422a-84e3-fb8885342c25", + "createdTime": "2021-01-14T13:44:09.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "50acafb8-1440-4a29-87cb-22d23a97db5f", + "createdTime": "2021-01-14T13:44:09.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea156fb5-03b9-4e12-939a-8e7600034d7a", + "createdTime": "2021-01-14T13:44:09.114Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "559ac852-6593-480c-8210-30c2e8253995", + "createdTime": "2021-01-14T13:44:08.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bcce751c-7277-4a4d-8da9-221e93b76ec2", + "createdTime": "2021-01-14T13:27:35.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27b61c3d-d8ae-488d-bc0f-b0dce6cc20bd", + "createdTime": "2021-01-14T13:31:26.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ee5a642f-b4d5-4fb8-91ec-52513b6d28f7", + "createdTime": "2021-01-14T13:19:53.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f1de6f89-b6d8-4c7a-b76a-45743030a99d", + "createdTime": "2021-01-14T13:31:26.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3b7e14f-0ce5-405b-aec4-6cce4452320d", + "createdTime": "2021-01-14T13:31:25.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "846f8e0f-e9b8-4a18-9505-5a69783f0da8", + "createdTime": "2021-01-14T13:31:24.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a6a630a7-d9de-4f80-becb-f8ca45c040cb", + "createdTime": "2021-01-14T13:27:34.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6c6f5569-f6f6-40eb-9a12-99bc8b80f8d1", + "createdTime": "2021-01-14T13:27:33.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a93ed1ef-a36b-4ca6-99b2-1e597d6fb961", + "createdTime": "2021-01-14T13:27:33.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e94f1011-8777-4149-aab3-8a7eafbd75dc", + "createdTime": "2021-01-14T13:19:53.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35b5da12-07bb-4229-8b4a-ae60e864491d", + "createdTime": "2021-01-14T13:19:52.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47ab17ad-80bc-4243-bafe-66c2c291de7b", + "createdTime": "2021-01-14T13:19:52.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c8bfda1-c96f-4fb9-9f4c-0d7897172390", + "createdTime": "2021-01-14T13:17:19.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd9a08b2-b7c2-472f-a955-ecbc1f368c19", + "createdTime": "2021-01-14T13:17:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff3bef5e-c13f-40c4-84d4-4c9fd1958507", + "createdTime": "2021-01-14T13:17:18.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f89290a-6ec9-47cd-b8f9-4294e38ba6ed", + "createdTime": "2021-01-14T13:17:16.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a44a3b15-bd45-44f4-9e9b-8bb1705d8061", + "createdTime": "2021-01-14T09:16:44.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51a61aec-f0c7-4f33-ac46-dd2838a84ee4", + "createdTime": "2021-01-14T09:16:43.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc9da33-b3d5-4034-a851-16bca08fb434", + "createdTime": "2021-01-14T09:16:42.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdd0b114-d49d-409b-a646-9750678f29ce", + "createdTime": "2021-01-14T09:16:41.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82d43c13-fb3b-4a1a-a182-a9b5f9029571", + "createdTime": "2021-01-14T09:13:02.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cb90ba3d-9dc4-4cb1-9514-041a2f65e4a7", + "createdTime": "2021-01-14T09:13:01.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac1d34c4-9c2e-4203-9194-ae5a9a304322", + "createdTime": "2021-01-14T09:13:01.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "32ae669b-57ac-4aaa-b187-c062a596357a", + "createdTime": "2021-01-14T09:13:00.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85ebf416-453a-4d41-b191-8073d612fc04", + "createdTime": "2021-01-14T09:03:56.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36d0c56a-fafd-4388-ade5-62738479f87d", + "createdTime": "2021-01-14T09:03:56.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63869f25-f4fc-40c2-bd14-3f8a99be160c", + "createdTime": "2021-01-14T09:03:55.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c499d4ec-b5d0-4015-aa0c-b19c15a2a7d5", + "createdTime": "2021-01-14T09:03:54.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b6b8476-20b9-422d-a1cf-385fab8352ee", + "createdTime": "2021-01-14T09:00:02.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e2ff7c2-4165-4e63-a116-fef43c713bc3", + "createdTime": "2021-01-14T09:00:02.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b3791fa-8f7b-4d59-8459-3d70e674d0e9", + "createdTime": "2021-01-14T09:00:01.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "546dc581-df7d-4fc6-8431-a58881d7817f", + "createdTime": "2021-01-14T09:00:01.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29780d2c-7fa5-4e67-978b-13176b391812", + "createdTime": "2021-01-14T08:48:04.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "05325a2a-4b10-4f7c-92ab-b2939d8beb3c", + "createdTime": "2021-01-14T08:48:04.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "79858130-ed4a-4da6-904b-630b7fe7cbd9", + "createdTime": "2021-01-14T08:48:03.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da275a4f-0fbf-44a0-8d5d-b356145b3bf8", + "createdTime": "2021-01-14T08:48:02.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4520cf58-c8bf-466a-bba5-cf96b064d8b0", + "createdTime": "2021-01-14T08:31:36.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "70b5517b-c6b7-41ef-886c-181c38a21110", + "createdTime": "2021-01-14T08:35:25.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d412faf3-bca7-411f-a9d8-7dfb544c3c39", + "createdTime": "2021-01-14T08:24:12.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "56cad88e-5a5c-43c4-92f5-8fbbb9ae1e17", + "createdTime": "2021-01-14T08:35:25.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b6d9bb2-f5a7-4f66-838e-f9d8ab8bdcfe", + "createdTime": "2021-01-14T08:35:24.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dfd94085-d973-4b2b-b62a-0bbb07a2e97f", + "createdTime": "2021-01-14T08:35:23.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69e94fdb-cb3c-4bd7-ab9a-2845a0dc6177", + "createdTime": "2021-01-14T08:31:35.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8dfc7e44-c084-49ac-94ff-6ab7a9af00a8", + "createdTime": "2021-01-14T08:31:34.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0b590c54-d2f3-4ff2-80f2-662ef0741a1f", + "createdTime": "2021-01-14T08:31:33.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83f7954f-9af8-429a-994b-8f3c2df648b9", + "createdTime": "2021-01-14T08:24:11.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf85b5c5-2882-449d-a2be-c2a4457353bb", + "createdTime": "2021-01-14T08:24:10.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9c55f25-a13a-4344-b815-4fba2b85878a", + "createdTime": "2021-01-14T08:24:10.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f93e1c0c-827b-4312-8b84-e7a883f97964", + "createdTime": "2021-01-14T08:20:22.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88394bd8-0b7a-452f-ac70-f869614b831f", + "createdTime": "2021-01-14T08:20:21.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "783eb848-972c-4acc-8e4e-90a8d268929a", + "createdTime": "2021-01-14T08:20:20.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5178eb44-213b-47f2-b477-67b74b4ebe1e", + "createdTime": "2021-01-14T08:20:19.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b1a2407-809e-48c7-99a0-741ede4b2634", + "createdTime": "2021-01-14T00:10:17.186Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d86a8fb-0e6a-4722-8c1a-a34ec07bd17c", + "createdTime": "2021-01-13T20:06:06.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9edc0dc9-579a-4a67-a5b0-bc0e8663aa47", + "createdTime": "2021-01-13T20:05:02.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64da1d5a-aa33-40e1-8f6e-42188feda23a", + "createdTime": "2021-01-13T20:05:47.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6b6eb7c-e85e-4aa0-8af2-8f16b11fd84a", + "createdTime": "2021-01-13T20:11:46.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f351e58-a0c7-47fa-9974-ba29dae7c74c", + "createdTime": "2021-01-13T20:07:38.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cb75c9dd-97d5-41e4-9839-164880ad773b", + "createdTime": "2021-01-13T20:10:17.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0f50131-61a3-44e4-b73d-293e8f847cec", + "createdTime": "2021-01-13T20:11:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "15a490c0-dd73-4adf-84cd-9b3f4a2c8634", + "createdTime": "2021-01-13T20:11:46.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "58086ab8-b9fa-4987-b495-f2d65b8e0da4", + "createdTime": "2021-01-13T20:11:45.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdbd6a2a-38fe-4ef0-bda4-a5d71371c0c3", + "createdTime": "2021-01-13T20:10:17.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1525a401-0615-43ba-b92d-4af1f0a03a5b", + "createdTime": "2021-01-13T20:10:16.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "85f34a6b-b7da-4e97-926e-365aac3ec15d", + "createdTime": "2021-01-13T20:10:16.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17103415-b297-40d0-afbd-5cfe0c995b1e", + "createdTime": "2021-01-13T20:07:38.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0569647b-e517-4073-a656-42d9d937b45e", + "createdTime": "2021-01-13T20:07:37.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "156a2d5d-90b8-433c-b97f-a7ec6581e074", + "createdTime": "2021-01-13T20:07:36.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00539d0a-fd16-4765-a4b6-3a67d9acbb1f", + "createdTime": "2021-01-13T20:06:07.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "48ba9c73-e5ae-4542-b662-49b5eb48d75a", + "createdTime": "2021-01-13T20:06:05.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5d1ef766-ba03-4108-b4d0-4500c0da46aa", + "createdTime": "2021-01-13T20:06:05.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f27dc93-b970-40e9-b6bd-229691849877", + "createdTime": "2021-01-13T20:05:48.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cdc234e4-4043-4bbe-9c31-394213b46266", + "createdTime": "2021-01-13T20:05:46.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "863a66a9-d98e-43d9-9f78-72f3587d6558", + "createdTime": "2021-01-13T20:05:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c26aa392-fde3-4a78-8814-4c86fdeed3f6", + "createdTime": "2021-01-13T20:05:02.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "17daea4e-8b29-4465-9a00-0646c47894e7", + "createdTime": "2021-01-13T20:05:01.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e7133435-efa0-483c-9ac1-ee94b3486ae9", + "createdTime": "2021-01-13T20:05:01.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77a0296a-eb2d-4527-8a04-2727481f950d", + "createdTime": "2021-01-13T20:04:43.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "97f9d203-dd2b-4577-8f98-a3426f14927f", + "createdTime": "2021-01-13T20:04:42.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8d6523bd-5e94-4702-ae46-8e5110229acc", + "createdTime": "2021-01-13T20:04:41.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dade334d-c5f6-4562-a003-b5addc534f0b", + "createdTime": "2021-01-13T20:04:41.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "156cdbdd-cef6-44a7-9471-751254243939", + "createdTime": "2021-01-13T09:21:50.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9c7a23ab-723a-4b27-b5f2-c27c721ccb1b", + "createdTime": "2021-01-13T09:21:49.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aeeddbda-08bf-417a-8751-4b6861f91797", + "createdTime": "2021-01-13T09:21:49.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3dbe83ca-8b6f-4d40-b8f1-33967f17fbeb", + "createdTime": "2021-01-13T09:21:48.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e4bcc4bf-3136-4403-bfa0-ba9638f77d6e", + "createdTime": "2021-01-13T09:18:11.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c4469a5-cfa1-49eb-875c-2ce834516232", + "createdTime": "2021-01-13T09:18:11.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fdd72891-c238-4eb4-990e-add2bc445594", + "createdTime": "2021-01-13T09:18:10.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "83b7742f-b705-4ac3-8ff0-2f00c26170bc", + "createdTime": "2021-01-13T09:18:10.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e22d7f1-9365-4e97-a30f-e2537fe296d9", + "createdTime": "2021-01-13T09:02:42.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5b46393f-57ed-4298-8376-a12727711852", + "createdTime": "2021-01-13T09:02:41.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca2e2e4-0d4b-400c-b8ca-c3e16f6860d8", + "createdTime": "2021-01-13T09:02:40.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad218fc6-272d-43d2-87a5-eec8afc8443a", + "createdTime": "2021-01-13T09:02:40.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a4e6a6-9985-49f3-aced-4ce63e373f75", + "createdTime": "2021-01-13T08:58:44.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d61939-3dc8-46d3-a05a-00d75e705883", + "createdTime": "2021-01-13T08:58:43.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3d7ad22-3938-4f37-8601-af698741a89a", + "createdTime": "2021-01-13T08:58:42.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "18d64506-1188-4800-9402-17ad9653d5dc", + "createdTime": "2021-01-13T08:58:41.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6978006d-0c6b-45c8-a1c0-e678183559f9", + "createdTime": "2021-01-13T08:45:22.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8aa1d17d-8f7f-4b60-a9c7-5f952cf1006e", + "createdTime": "2021-01-13T08:45:21.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "341c08ef-2976-4db9-bdc0-9b0ed2c3fe74", + "createdTime": "2021-01-13T08:45:21.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42e0ad85-d761-41fb-b899-6a86b4cbfd2c", + "createdTime": "2021-01-13T08:45:20.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75bdcf11-a72d-474c-a578-5eca304b9e3d", + "createdTime": "2021-01-13T08:31:26.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf5faa8d-7b10-4229-8cd1-e219478c8a1d", + "createdTime": "2021-01-13T08:35:19.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03f0a27a-2759-414d-909a-8ac54c7773ac", + "createdTime": "2021-01-13T08:24:14.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acad6a6c-9773-44f6-8b21-53e23f9e0613", + "createdTime": "2021-01-13T08:35:19.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b90de78-b8b9-40fd-a8e8-79e65f67f861", + "createdTime": "2021-01-13T08:35:18.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "925a304b-5353-4a3c-88e6-a5207734c111", + "createdTime": "2021-01-13T08:35:18.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8420003e-47d8-4052-95a7-e7847733f659", + "createdTime": "2021-01-13T08:31:25.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a7570520-1879-4e46-8fcd-eef51beaf7ae", + "createdTime": "2021-01-13T08:31:24.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "212d5424-ac2c-4871-81e3-509f575a53fa", + "createdTime": "2021-01-13T08:31:23.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57d78186-2a4b-4194-a26f-8529c68e2898", + "createdTime": "2021-01-13T08:24:13.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e1fdfbe-35b3-4fdf-8d58-e9e466670012", + "createdTime": "2021-01-13T08:24:13.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b9d9b1a8-42e6-48c1-8059-ef94ae2509d6", + "createdTime": "2021-01-13T08:24:12.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "393fedb0-ac33-490e-81db-577a8baed38d", + "createdTime": "2021-01-13T08:20:30.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6d039c48-45c6-4df2-bfd4-421e16f3b590", + "createdTime": "2021-01-13T08:20:28.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e1a68ddf-23ed-4ba9-abe0-e71036fd32ba", + "createdTime": "2021-01-13T08:20:28.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "07f54ed0-a6c7-4568-bea5-c710422c1018", + "createdTime": "2021-01-13T08:20:27.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67da7875-78b2-41c8-9845-20168baab347", + "createdTime": "2021-01-12T20:31:13.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "77dac7a3-576c-4668-9056-33a5f45984c8", + "createdTime": "2021-01-12T20:26:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c46df5dd-b68e-4872-bc6e-8008c8b9cbae", + "createdTime": "2021-01-12T20:24:49.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "86e41ea3-9506-4100-8f60-b8c6a29bac49", + "createdTime": "2021-01-12T20:25:45.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06bcfdc8-5970-4385-855a-ecac8c688c75", + "createdTime": "2021-01-12T20:24:42.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5cb50aa-5c83-4030-8c4c-d6acb38471ef", + "createdTime": "2021-01-12T20:28:38.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d21cee2c-0cad-43f8-a7b9-e54197c4ad20", + "createdTime": "2021-01-12T20:31:14.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57eb5f5a-7fb4-4de7-acb2-80728e67701d", + "createdTime": "2021-01-12T20:31:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eebf1270-6fd5-4f29-b4ae-994097445191", + "createdTime": "2021-01-12T20:31:12.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88852ec-782f-48d6-ad00-e44cb29b5a89", + "createdTime": "2021-01-12T20:28:38.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c7c68435-0504-48ed-b0aa-8d641134aa81", + "createdTime": "2021-01-12T20:28:37.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d5f9fd7f-b28e-47b1-bef7-4ca56d512748", + "createdTime": "2021-01-12T20:28:37.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da1ec863-9d5f-4664-a927-5bc2e52785d2", + "createdTime": "2021-01-12T20:26:09.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0efb79bf-85bf-444e-ba4a-26d173f7613a", + "createdTime": "2021-01-12T20:26:08.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "950f860e-eb03-46c6-9459-70c1175fc9be", + "createdTime": "2021-01-12T20:26:08.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaf9fa35-cbae-4ed7-b376-dbeb9081e94b", + "createdTime": "2021-01-12T20:25:46.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "093581ff-81b0-4e97-92fd-f137e64f86d8", + "createdTime": "2021-01-12T20:25:44.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "db0ac784-b338-4e65-a715-08a724c1d78a", + "createdTime": "2021-01-12T20:25:43.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d34b778-66ce-4185-9541-f8ee73acb339", + "createdTime": "2021-01-12T20:24:49.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6a5bd429-b865-4b58-8237-dd1b27cb4f93", + "createdTime": "2021-01-12T20:24:48.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5f64ebb1-4d15-4903-898b-93841233de74", + "createdTime": "2021-01-12T20:24:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3156ddb8-6167-4bc2-bdce-c65abc80773a", + "createdTime": "2021-01-12T20:24:42.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4af3489-16b8-49a6-97c1-8bbd61590c6f", + "createdTime": "2021-01-12T20:24:41.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6749bbdd-f898-48cc-b90b-3ef6bb37b2b8", + "createdTime": "2021-01-12T20:24:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3355a0b9-a496-4be6-97c0-337e6f3fe157", + "createdTime": "2021-01-12T20:24:36.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e5121794-205d-4ae3-83a5-919ac47ee579", + "createdTime": "2021-01-12T20:24:35.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a8bf3867-85ca-43f5-b841-a2a11d002c2e", + "createdTime": "2021-01-12T20:24:34.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1fbc6f65-c4a9-47b4-aaf2-9b5659626f5b", + "createdTime": "2021-01-12T20:24:34.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10281834-0a41-480e-a032-99ee1f31dee9", + "createdTime": "2021-01-12T09:12:38.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b864efdd-840a-4c70-ba8a-2d79a04ac8f1", + "createdTime": "2021-01-12T09:12:37.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82d5d899-de40-46eb-8f8e-9bb9fb841135", + "createdTime": "2021-01-12T09:12:36.294Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "adb370d6-f4c0-4ff9-9857-2222625e5aba", + "createdTime": "2021-01-12T09:12:35.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9b397339-0e01-4751-8f4f-08ad019c1806", + "createdTime": "2021-01-12T09:08:50.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2fd120c4-5d04-428a-a643-9f33e2f3eb0f", + "createdTime": "2021-01-12T09:08:49.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "94522b17-806c-455e-8776-a96f5c58288c", + "createdTime": "2021-01-12T09:08:49.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eee53610-7ce7-4554-a881-cab47647f587", + "createdTime": "2021-01-12T09:08:48.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed5a5f0e-f74f-4988-a3d4-ad405263bbb8", + "createdTime": "2021-01-12T09:01:28.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0c2ccfae-4b1b-4508-b316-6635abc425d9", + "createdTime": "2021-01-12T09:01:27.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b1231b8-67df-44d7-85f4-56a0b051fb33", + "createdTime": "2021-01-12T09:01:26.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "254ecccf-61b6-43b9-be45-4260ffffc1b0", + "createdTime": "2021-01-12T09:01:25.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62688ffe-bf44-4f26-bbc3-773ea08fcbd4", + "createdTime": "2021-01-12T08:57:42.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3c0215e0-8070-4b97-b40f-d0907b0eef83", + "createdTime": "2021-01-12T08:57:40.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "83215345-deb7-42c5-a8e8-be0e475ac027", + "createdTime": "2021-01-12T08:57:40.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6c82d5-2756-4649-9c99-f149aad528b8", + "createdTime": "2021-01-12T08:57:39.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a5e34d2-384a-4ae7-8bef-e2798d16bce4", + "createdTime": "2021-01-12T08:48:21.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57bf4025-90b5-4770-89dc-3c4c3821db1f", + "createdTime": "2021-01-12T08:48:20.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "54de3543-5452-4732-ac01-82613f2ee850", + "createdTime": "2021-01-12T08:48:20.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69923da8-30f9-4f66-8377-06cdf4e1a37c", + "createdTime": "2021-01-12T08:48:19.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03004e90-7a85-4d27-b44e-1d7d144f702a", + "createdTime": "2021-01-12T08:37:12.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d886da2-8cd2-4815-b591-dce36e9f1ae3", + "createdTime": "2021-01-12T08:37:12.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b2502657-a041-49fd-8ffb-bc9b0bb1c4ff", + "createdTime": "2021-01-12T08:37:11.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7fbf0cc-db9f-4f3c-aafb-cfd90e9187ea", + "createdTime": "2021-01-12T08:37:11.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdfa9909-9ca7-4568-aa45-9393cc2c58d0", + "createdTime": "2021-01-12T08:33:27.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a99e56d6-d34a-416d-a6af-eea195a4e282", + "createdTime": "2021-01-12T08:24:05.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dcf9c02-88ea-4842-b084-72bdacdb5a1b", + "createdTime": "2021-01-12T08:20:26.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e639bdbf-adfc-4ce8-8889-be99d870fcbc", + "createdTime": "2021-01-12T08:33:26.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "628e46f9-44c4-4ea0-a457-46a7a252219d", + "createdTime": "2021-01-12T08:33:25.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a913202-a024-4eda-971c-136e6a17c697", + "createdTime": "2021-01-12T08:33:24.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71325e8f-0854-47ac-8166-79f7f9c6dd47", + "createdTime": "2021-01-12T08:24:05.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5791f964-4f03-490a-a515-a91f7d2bc6c7", + "createdTime": "2021-01-12T08:24:04.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd483a6c-82c6-49b8-ab1e-cd8203c57701", + "createdTime": "2021-01-12T08:24:04.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9dd6c345-825d-4451-9105-e4697d626e2b", + "createdTime": "2021-01-12T08:20:25.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c373ca0-0a78-4db9-8031-95a5763efc27", + "createdTime": "2021-01-12T08:20:24.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1428dd7b-eb68-4d1f-9bf2-19c4fa68c0c5", + "createdTime": "2021-01-12T08:20:23.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a853b3eb-4292-4389-91bd-e0bab3aee981", + "createdTime": "2021-01-11T22:43:02.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "53d8c1fc-4bc8-41e0-89a1-f6bd9fe42fd1", + "createdTime": "2021-01-11T22:43:01.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28b1d568-2b7f-473d-b196-7378f6653128", + "createdTime": "2021-01-11T22:43:01.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "adcc8390-b5cd-4b89-85f4-e2d84fb404d5", + "createdTime": "2021-01-11T22:43:00.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f65a7328-3220-4236-ae45-adaf0ab59f5d", + "createdTime": "2021-01-11T22:43:00.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "31df969b-14ca-408e-9e7c-68482712d9b2", + "createdTime": "2021-01-11T22:42:59.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f683e57-5d49-4cd0-925e-08089bea7f70", + "createdTime": "2021-01-11T22:35:54.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b53982f-333e-4f55-a291-63461479769a", + "createdTime": "2021-01-11T21:34:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "746e4eeb-6f3f-4c39-9e3d-1e67a08815c8", + "createdTime": "2021-01-11T20:28:25.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ba3b8aad-3ca9-4788-aae0-dc36130659cf", + "createdTime": "2021-01-11T20:24:16.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9f9c554a-a5aa-41fd-be49-ad858557498b", + "createdTime": "2021-01-11T20:28:15.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "69c44822-17ee-486c-9d3d-886da3075c46", + "createdTime": "2021-01-11T20:24:50.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3ac53867-44bc-4b44-818a-19f2c34bb526", + "createdTime": "2021-01-11T20:31:46.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57a976f3-2b67-421a-8c3d-5ea33ad6ee83", + "createdTime": "2021-01-11T20:31:45.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5f2e8f8-e49f-4166-a22c-985ac4dc4392", + "createdTime": "2021-01-11T20:31:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cfdb985b-0e4c-4b7a-9802-23a4bcb80a78", + "createdTime": "2021-01-11T20:31:44.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17d063ab-aee4-488d-8f88-500f4efb1306", + "createdTime": "2021-01-11T20:24:26.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "deea8700-a580-48e0-af50-bc98c8db3c11", + "createdTime": "2021-01-11T20:28:26.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7f838b66-08da-444a-850f-307788f19543", + "createdTime": "2021-01-11T20:28:24.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8fbcfc9c-a67d-48ec-b1bb-cb70e929575c", + "createdTime": "2021-01-11T20:28:24.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d38d7767-016f-4c59-99fb-c548f18bfb19", + "createdTime": "2021-01-11T20:28:16.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a9f6030e-d9a9-4833-ac76-b5385d903223", + "createdTime": "2021-01-11T20:28:15.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3ca9e0bb-bf36-49cc-8411-2b488455b446", + "createdTime": "2021-01-11T20:28:14.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81380cfd-35b3-4dfb-95dd-a39681d02566", + "createdTime": "2021-01-11T20:24:51.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3d84aa09-1730-4b5b-9c45-5b16b9b4085d", + "createdTime": "2021-01-11T20:24:49.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5c29b18-5089-4f18-bee4-ad6f5e66799e", + "createdTime": "2021-01-11T20:24:49.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9bb89c01-b6a3-46ef-b95a-fbf2aa4e13a1", + "createdTime": "2021-01-11T20:24:28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5d46f766-b07b-482e-bc36-c4b42a929c77", + "createdTime": "2021-01-11T20:24:25.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a594e7e2-8fcf-4fdf-bbd2-9f61c560ecb4", + "createdTime": "2021-01-11T20:24:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3da237bf-f79a-437d-b533-72b344197be9", + "createdTime": "2021-01-11T20:24:17.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "81b5a08c-2d22-46fc-91e2-b05e3cadbba0", + "createdTime": "2021-01-11T20:24:15.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "447b063b-6b44-4974-9905-4a223f6e7f0e", + "createdTime": "2021-01-11T20:24:14.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86053b46-fa0a-40b4-aa67-6cbffba5eedc", + "createdTime": "2021-01-11T20:23:58.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f9e1fc3-b433-48ab-bdef-2afc5fd970a6", + "createdTime": "2021-01-11T20:23:58.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "598941c1-7b07-4852-a0e8-1e0f9f3437b7", + "createdTime": "2021-01-11T20:23:57.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2aacafd4-704a-48db-87eb-0d7b4e150ec2", + "createdTime": "2021-01-11T20:23:57.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f99601b8-b678-4aef-a99c-4fd3e76f2bc1", + "createdTime": "2021-01-11T09:17:26.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9f16da08-01fe-4445-9948-704159d05203", + "createdTime": "2021-01-11T09:17:25.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf5ed19-4cf1-4553-8fe4-1a6e430b4d26", + "createdTime": "2021-01-11T09:17:24.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3fc9463f-7a76-48e0-a492-1a1575be7c59", + "createdTime": "2021-01-11T09:17:23.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bb3d070f-090c-42b8-b04a-b6a318904db9", + "createdTime": "2021-01-11T09:13:47.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c85b2b0-b975-4077-bc92-390afd7a883f", + "createdTime": "2021-01-11T09:13:46.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e54a6fd-b234-4091-87cf-3bf76497c683", + "createdTime": "2021-01-11T09:13:46.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "583b3ed0-988b-47c5-8fb3-dba49a0f1018", + "createdTime": "2021-01-11T09:13:45.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4441117c-b154-47d2-930d-c37df93f2b1e", + "createdTime": "2021-01-11T09:00:20.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c714fab-ff92-43e4-bb35-45caec9a79c3", + "createdTime": "2021-01-11T09:00:19.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "349af338-e5f9-4e29-b13d-dfff96a61fdb", + "createdTime": "2021-01-11T09:00:19.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f9116904-3cb5-4948-a18c-b1e2af87363f", + "createdTime": "2021-01-11T09:00:18.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b582e4b1-0c37-454d-a53e-ddfe6bc5f75f", + "createdTime": "2021-01-11T08:56:29.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86b501d7-270e-463a-a975-9b63ef1f4cf3", + "createdTime": "2021-01-11T08:56:28.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf40e1d8-723e-4e57-a54a-79a72c97119d", + "createdTime": "2021-01-11T08:56:28.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62335039-2fc8-4497-83f6-56e106415c82", + "createdTime": "2021-01-11T08:56:27.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e223f769-4174-4954-8f0d-440a2f1e9423", + "createdTime": "2021-01-11T08:47:30.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8bfc164-2b65-414f-b6ac-8f12e8cfaef1", + "createdTime": "2021-01-11T08:47:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1eecc29-8577-4cc8-ba0c-5bd8953d1e58", + "createdTime": "2021-01-11T08:47:28.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e0b2840-beae-45ed-810b-3a4049ce37e4", + "createdTime": "2021-01-11T08:47:27.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edff630e-08a1-4b2d-b72e-e0e3ac43a188", + "createdTime": "2021-01-11T08:37:02.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "65cb94de-060b-4bee-9696-081bf002445d", + "createdTime": "2021-01-11T08:24:42.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bbc812f9-2a22-488d-a393-1ea2fa9ff997", + "createdTime": "2021-01-11T08:33:15.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "34446c09-bef4-4bd9-96da-cb344e622a87", + "createdTime": "2021-01-11T08:37:01.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95c812d4-eb69-4573-a576-777b3469a631", + "createdTime": "2021-01-11T08:37:00.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54eeb8d3-fa62-46db-a37f-988715691398", + "createdTime": "2021-01-11T08:37:00.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "deeb63c2-dd3e-4530-a2ab-521b8a7086c3", + "createdTime": "2021-01-11T08:33:15.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1af443c8-ae1e-4984-9002-2f35a1999b44", + "createdTime": "2021-01-11T08:33:14.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6df835a9-9870-4b69-8c23-1ff2bc7a7056", + "createdTime": "2021-01-11T08:33:13.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be9a8817-bb63-4442-98d1-5761edebf7f8", + "createdTime": "2021-01-11T08:24:42.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e884e87-a410-4f3e-a339-6cf7c084514c", + "createdTime": "2021-01-11T08:24:41.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "402fd3ea-c38f-4d2f-9805-b159d46526e0", + "createdTime": "2021-01-11T08:24:40.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a16ce83-1fa0-4233-938c-31726fafe7d9", + "createdTime": "2021-01-11T08:20:52.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e907fd7d-cd6e-4432-aba7-ef2cab3acda2", + "createdTime": "2021-01-11T08:20:51.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b35997f-7fa2-4a19-9c6d-1b40bc6d45c5", + "createdTime": "2021-01-11T08:20:51.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "72cab1a7-e2a6-465a-83b1-186e764fce20", + "createdTime": "2021-01-11T08:20:50.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee199779-dcb8-46fb-8146-5a3ab72a93e7", + "createdTime": "2021-01-08T20:08:25.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b280b149-c573-4a2e-bcfe-75b9ae68a3b8", + "createdTime": "2021-01-08T20:10:58.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3a650755-1022-41ec-a242-d4a9202791fa", + "createdTime": "2021-01-08T20:06:57.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4c65b3a1-56f3-4124-bd78-2150e79267d9", + "createdTime": "2021-01-08T20:06:56.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d9f2fdcb-1ea7-4fab-bd75-e7696d20a1bc", + "createdTime": "2021-01-08T20:07:47.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b0a22122-4604-484b-8b3a-1564ffd09328", + "createdTime": "2021-01-08T20:12:26.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "437baf03-f0e2-4de6-b1fd-fc6f58ac6171", + "createdTime": "2021-01-08T20:12:27.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "511d28a7-c9f9-41c7-ae03-ce42036303ff", + "createdTime": "2021-01-08T20:12:26.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0c7b7f-a1af-49e1-9907-1ac3495a1b44", + "createdTime": "2021-01-08T20:12:25.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa8b5713-9e08-4d86-9b49-52859a64e744", + "createdTime": "2021-01-08T20:10:59.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4da5974-6eeb-4af0-8c49-0d18cb6c1237", + "createdTime": "2021-01-08T20:10:58.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bafda377-cf59-4a0e-b68d-6741f305e646", + "createdTime": "2021-01-08T20:10:57.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c5a3a50-252e-4a76-8814-26cf269691d4", + "createdTime": "2021-01-08T20:08:26.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8df83580-8853-409d-98ce-a02e8ba6ac57", + "createdTime": "2021-01-08T20:08:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4434103-2df6-48d7-a5e5-681c1414482e", + "createdTime": "2021-01-08T20:08:24.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfa30ebc-c6c2-43ae-be9a-e45142e18569", + "createdTime": "2021-01-08T20:07:48.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e03dcd5b-56b7-498a-80af-a0fb7cb44f78", + "createdTime": "2021-01-08T20:07:46.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "840a4a5a-b3ca-43c5-936b-da2ea7f0a86a", + "createdTime": "2021-01-08T20:07:45.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17f5e327-4365-4a06-9007-d25575eb7f63", + "createdTime": "2021-01-08T20:06:58.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a7c67fc4-892f-48d9-ab94-3cbc73f33b55", + "createdTime": "2021-01-08T20:06:57.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b09e4dd4-5932-4fb3-afee-5d3f5fa6e9fb", + "createdTime": "2021-01-08T20:06:57.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3996f23e-e00f-42c0-a6a9-4eb2799ca2de", + "createdTime": "2021-01-08T20:06:56.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bfe1e98-91a5-4a83-8480-a5e25f3babae", + "createdTime": "2021-01-08T20:06:56.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f52aa4df-104e-498d-94e0-34688d374d88", + "createdTime": "2021-01-08T20:06:55.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2f4353d-354b-4695-8c06-a7f3cfb26ce0", + "createdTime": "2021-01-08T20:06:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f689cc20-0f9a-4f56-ae1a-28297ca1803f", + "createdTime": "2021-01-08T20:06:33.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "25e48dc3-c368-40b7-b3a1-82eccac9dcbf", + "createdTime": "2021-01-08T20:06:33.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1577fc73-4aee-431d-b2d1-748bf6887600", + "createdTime": "2021-01-08T20:06:32.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d9805e1-53a6-4c01-b373-d2618766bf7b", + "createdTime": "2021-01-08T09:15:06.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "940f494f-7424-4326-9a54-e8619239996e", + "createdTime": "2021-01-08T09:15:05.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7355d19b-74a9-47c5-872c-3af939100099", + "createdTime": "2021-01-08T09:15:05.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5014a9a-c18f-43b3-bfae-f709eb0395b3", + "createdTime": "2021-01-08T09:15:04.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d9062b5-1cbf-40c3-b068-33df32720bde", + "createdTime": "2021-01-08T09:11:25.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5fc8df59-9d23-496c-ab0b-edaf5d98ffab", + "createdTime": "2021-01-08T09:11:24.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a4a7ee2-6114-4f77-a11f-6adffcd40ce2", + "createdTime": "2021-01-08T09:11:23.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a012d2ce-0a6d-4dbe-b7a7-0cbae9c1236a", + "createdTime": "2021-01-08T09:11:23.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e494622a-c43d-4a25-aca9-3f90510ea560", + "createdTime": "2021-01-08T08:58:51.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9097b46d-3876-4108-88da-7bfe61e0624a", + "createdTime": "2021-01-08T08:58:50.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9edc5f6f-fed9-4911-bbc0-c0b98e685ac3", + "createdTime": "2021-01-08T08:58:49.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42a01786-d66b-49bf-9010-aa09f40d93e4", + "createdTime": "2021-01-08T08:58:49.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33cd4c8-dd98-4ee2-97ad-45be1c16c3f7", + "createdTime": "2021-01-08T08:55:26.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db61131e-cbdf-470a-bde3-ebf825c58b4d", + "createdTime": "2021-01-08T08:55:25.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9a20f70-cce1-4bc3-b272-bb2d333afc6b", + "createdTime": "2021-01-08T08:55:24.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f5837e6-39ea-4d0f-8531-3de78eceb9dd", + "createdTime": "2021-01-08T08:55:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f678ab8-936f-4bf0-9c96-2d5fbf67a837", + "createdTime": "2021-01-08T08:46:33.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72f1c81f-b8f7-4703-aa42-01a82ed5980b", + "createdTime": "2021-01-08T08:46:33.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd9eb62f-8fc1-4330-abc2-953b565a9991", + "createdTime": "2021-01-08T08:46:32.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "771dbe08-65da-488e-96b8-8896f4c8dac3", + "createdTime": "2021-01-08T08:46:32.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bc3bddd1-7e84-49ee-8590-bef9b040ec4d", + "createdTime": "2021-01-08T08:24:04.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d8f5a0-c32c-4f6f-a960-993512daec6d", + "createdTime": "2021-01-08T08:31:05.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66ac0de6-786a-46ca-953f-ecc744452f7d", + "createdTime": "2021-01-08T08:34:43.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c04bcd54-1ca3-4724-aced-28f7bccda553", + "createdTime": "2021-01-08T08:34:42.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43feb29e-15e8-47bb-b30b-5a4c89238128", + "createdTime": "2021-01-08T08:34:41.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6bddd586-e820-4a20-b23a-00b440ee3715", + "createdTime": "2021-01-08T08:34:40.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3c65c2b-8898-428d-bace-8373d04a1075", + "createdTime": "2021-01-08T08:31:05.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a7a7514-536f-47cc-aa2b-c1ed199716ea", + "createdTime": "2021-01-08T08:31:04.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62c4563b-165f-4c53-a6d5-cc818a6b2d58", + "createdTime": "2021-01-08T08:31:03.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c1c3a7b-e961-4cf0-a017-a0c2d2a1dbd9", + "createdTime": "2021-01-08T08:24:03.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "37e6d2ae-b8be-4c9b-bc15-94409a75a76c", + "createdTime": "2021-01-08T08:24:03.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0aaf1452-6196-4b20-9943-9e1fa0f65ae0", + "createdTime": "2021-01-08T08:24:02.676Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5642370a-8f06-48b3-9ba4-b411786341a4", + "createdTime": "2021-01-08T08:20:27.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "46e0b1a4-6060-43c4-be06-f61eac335332", + "createdTime": "2021-01-08T08:20:27.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "34165f68-9651-4b93-b439-175e59742b42", + "createdTime": "2021-01-08T08:20:26.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db900127-085d-4015-b00d-8e903fae1abb", + "createdTime": "2021-01-08T08:20:25.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c200cb0-b64a-4d88-b273-189f2ef383ef", + "createdTime": "2021-01-07T20:32:34.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5375094-3375-4f29-a462-aef497ef688f", + "createdTime": "2021-01-07T20:31:27.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "731c57a9-bf59-4d58-b633-5c42035e0c2d", + "createdTime": "2021-01-07T20:31:00.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a3a2fa75-8647-4d89-8d36-666456ae9248", + "createdTime": "2021-01-07T20:37:58.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4778511-4c1b-42fd-9bc5-7ea1c824f599", + "createdTime": "2021-01-07T20:37:57.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b462f0c-69ca-4cde-8a32-e8a5a838d006", + "createdTime": "2021-01-07T20:37:56.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4a8ee4c-75a2-4c73-b33d-a6b01323dea2", + "createdTime": "2021-01-07T20:37:56.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe52092e-c14c-4a23-af30-3355ca35d1e8", + "createdTime": "2021-01-07T20:30:44.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "47009bb6-8bbc-46c9-ac99-8e07f5348701", + "createdTime": "2021-01-07T20:34:37.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b4163ca-7b37-4644-bb13-d1a2da37efd6", + "createdTime": "2021-01-07T20:34:37.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfb438bc-33b4-40a2-925c-43477d1b8166", + "createdTime": "2021-01-07T20:34:36.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0bfda9de-8f70-4fdf-8928-0c3cfc5b08ca", + "createdTime": "2021-01-07T20:34:35.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3a36b14-634f-44f0-8ab4-0ce84c53598c", + "createdTime": "2021-01-07T20:32:35.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1abf8598-9c59-4e74-9af4-5512d3af3c9c", + "createdTime": "2021-01-07T20:32:34.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6270b3be-17d3-4e6f-9442-2f9d58f788f1", + "createdTime": "2021-01-07T20:32:33.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b545b63-adea-4f4c-b2ac-498550fd60f8", + "createdTime": "2021-01-07T20:31:28.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "59d62a3c-1a0f-48cc-9aeb-30f72d9b9f8a", + "createdTime": "2021-01-07T20:31:27.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70200b3a-97fd-43fe-8f69-2b2751138b45", + "createdTime": "2021-01-07T20:31:26.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be557bac-f974-440c-9f0d-936117a34816", + "createdTime": "2021-01-07T20:31:00.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ceaa184b-e803-411b-a512-74a443ad3f6c", + "createdTime": "2021-01-07T20:30:59.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "75e47d24-1dac-4e5b-b4f9-93143e989cbb", + "createdTime": "2021-01-07T20:30:59.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fea3df2-81ab-44d5-900f-99b80693ea1f", + "createdTime": "2021-01-07T20:30:45.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c58646fc-68ba-4f35-9d2f-f7925c47609e", + "createdTime": "2021-01-07T20:30:44.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0394c7-42d5-4f3f-bf6d-454df504e599", + "createdTime": "2021-01-07T20:30:43.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b43c4b78-499e-4cd7-8b37-16f2b3602830", + "createdTime": "2021-01-07T20:29:52.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "009adfe8-76f4-4073-ab1c-a86bee525c6c", + "createdTime": "2021-01-07T20:29:51.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ce356f97-6328-4f59-9f3e-49ca8bf04fe2", + "createdTime": "2021-01-07T20:29:51.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "99575c51-9f43-49e7-b2ee-edfb41718a11", + "createdTime": "2021-01-07T20:29:50.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e74fe55-d337-473b-8366-f5af9da6cfc2", + "createdTime": "2021-01-07T16:33:57.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e1dc8518-68dc-489e-b398-e4be3eacabd5", + "createdTime": "2021-01-07T16:43:59.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "baaf7319-0946-4616-b851-5ec22c147301", + "createdTime": "2021-01-07T16:47:33.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8f5c7147-54a4-4191-9aa7-05c92035176d", + "createdTime": "2021-01-07T16:47:32.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a2b82963-d5f0-4ebd-a9d7-a9bb438687a2", + "createdTime": "2021-01-07T16:47:31.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "233c721e-1349-49c3-8379-f281d933a3e4", + "createdTime": "2021-01-07T16:47:30.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df87eb9-1f3f-4943-a101-8ce18777ab88", + "createdTime": "2021-01-07T16:43:58.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "70b4d19f-02ad-4c38-a679-2ed7da213600", + "createdTime": "2021-01-07T16:43:58.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e9ab0f5-71b2-4dfa-a694-37604230e0f3", + "createdTime": "2021-01-07T16:43:57.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c58732b4-dcc9-46d8-baad-afc8080dcc3f", + "createdTime": "2021-01-07T16:33:57.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9de406b9-3386-4a10-b723-e674571c60bc", + "createdTime": "2021-01-07T16:33:56.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e4c987db-ba9d-44a4-b364-ed14d37b714f", + "createdTime": "2021-01-07T16:33:56.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c88af87a-6f6e-4f18-8190-13db70a53587", + "createdTime": "2021-01-07T16:30:50.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d1017176-83c7-4143-ab8b-3dfb6a8069b0", + "createdTime": "2021-01-07T16:30:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29c988f5-893c-42e6-b8c6-aa839375b232", + "createdTime": "2021-01-07T16:30:48.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2a140a60-1e77-44c7-ad58-6b6375f3d8e5", + "createdTime": "2021-01-07T16:30:48.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f96929c-67c8-464b-b19b-0bcde1bca9c0", + "createdTime": "2021-01-07T09:17:24.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa706dfa-12dc-4a1a-9565-e7afc81d93d3", + "createdTime": "2021-01-07T09:17:23.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67ce7331-d98e-439a-95a4-71048dc09ef2", + "createdTime": "2021-01-07T09:17:22.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "746bc147-d7a0-4046-a5ea-c3043b006bd6", + "createdTime": "2021-01-07T09:17:21.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33ed75c-d76d-4c99-93f1-f7e94e03c6cc", + "createdTime": "2021-01-07T09:12:15.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5dbe11ac-1bf8-40f9-b8df-f5b57864e9cd", + "createdTime": "2021-01-07T09:12:14.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cfadf8a7-bf8e-414f-9211-ef2c88745fa0", + "createdTime": "2021-01-07T09:12:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3faf39b7-c6dc-42d6-8264-592d45acab9a", + "createdTime": "2021-01-07T09:12:13.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83b94647-9148-4492-8a5d-556c505f9870", + "createdTime": "2021-01-07T09:02:17.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f4e792c6-bc77-4c9f-92db-9077aace6121", + "createdTime": "2021-01-07T09:02:17.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c3502e3-15a5-4ed2-8db8-13d627ecbae2", + "createdTime": "2021-01-07T09:02:16.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "391850fe-1642-440e-93d8-1ecc6faf3a4a", + "createdTime": "2021-01-07T09:02:15.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "975777f6-0665-4961-874b-a4662d4bb658", + "createdTime": "2021-01-07T08:58:36.172Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b709192-fb5a-47f5-93f3-82bbadf8b8d9", + "createdTime": "2021-01-07T08:58:35.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64377cf8-2dc1-4a2a-ba51-4b2c8e75559b", + "createdTime": "2021-01-07T08:58:34.404Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c7dc766-38c6-4f47-8f72-ab6b905eb109", + "createdTime": "2021-01-07T08:58:33.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4092e3a6-3a91-4e02-8294-43671ac04f8c", + "createdTime": "2021-01-07T08:48:40.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "87fd7dcb-ccd3-4fdd-b086-5d8b18e24f80", + "createdTime": "2021-01-07T08:48:39.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "710f1cc6-ed0f-46f5-8a8d-3fb2290779e6", + "createdTime": "2021-01-07T08:48:38.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "373d3fe6-f2d0-4dcf-8c8b-85cd2a71feff", + "createdTime": "2021-01-07T08:48:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8ab0ac8-40eb-494a-8b03-5e1cc66e9000", + "createdTime": "2021-01-07T08:34:26.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "82b00b92-bb64-4a07-895b-d615b3b4e01f", + "createdTime": "2021-01-07T08:38:21.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24fecac1-6c6a-4ff4-bbee-9f5fe5efa7eb", + "createdTime": "2021-01-07T08:27:13.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "086e37af-2f8f-44ef-a76b-01c3ecd72755", + "createdTime": "2021-01-07T08:38:20.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4b77e2b9-d109-4921-b4ed-99496c6741b5", + "createdTime": "2021-01-07T08:38:19.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "702e6948-2c78-49a4-a000-1f347e89c03c", + "createdTime": "2021-01-07T08:38:18.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93de05b1-a95d-44c9-af31-86dccdbaf8e2", + "createdTime": "2021-01-07T08:34:25.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b1c7a320-4487-400b-a18a-dd6b95548f5c", + "createdTime": "2021-01-07T08:34:24.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ef9cd63-ad30-4480-aa79-b1c22101c788", + "createdTime": "2021-01-07T08:34:23.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "13c54a4f-7059-49d4-b58a-7044e4e870ea", + "createdTime": "2021-01-07T08:27:13.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fc0cbe70-008c-4e82-848c-c31a67ff2053", + "createdTime": "2021-01-07T08:27:12.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "85b5f815-87f5-4412-bede-3335967cadfa", + "createdTime": "2021-01-07T08:27:12.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f655c99-5101-4cd1-a52d-e28865a03d5c", + "createdTime": "2021-01-07T08:23:42.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fbcf17de-927f-4439-b7e2-fa2de31d646b", + "createdTime": "2021-01-07T08:23:41.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5cc8067-fcda-44bb-ac75-0602a046d03e", + "createdTime": "2021-01-07T08:23:40.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5973202d-5fd8-4c28-8f00-f0c353a252cd", + "createdTime": "2021-01-07T08:23:39.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c306480c-3e2f-4f93-b474-b546643ce6d8", + "createdTime": "2021-01-06T20:11:31.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9cbd2e9c-6dd9-463a-92f4-4642c9d76720", + "createdTime": "2021-01-06T20:10:07.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "db9dec9c-43b4-4df1-8335-d7a2484c963c", + "createdTime": "2021-01-06T20:04:04.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "330e0973-1733-4f2f-aab3-9d8e628ced39", + "createdTime": "2021-01-06T20:06:04.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06b204be-8a1b-41f6-81c2-8ea65466f519", + "createdTime": "2021-01-06T20:04:52.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "306c872b-86af-477d-93d7-b5a574e715f4", + "createdTime": "2021-01-06T20:05:40.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b76f3df8-b3fe-4a4c-9d54-5a387f24b4e8", + "createdTime": "2021-01-06T20:11:31.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "41bea400-29ce-49e4-98bd-598c0b42feda", + "createdTime": "2021-01-06T20:11:30.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "679b4fe3-a5fa-48a1-84d5-380035d53dfd", + "createdTime": "2021-01-06T20:11:30.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d409f116-5019-4209-8d49-dbb53a5eb1b3", + "createdTime": "2021-01-06T20:10:08.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "36b3b079-6643-4d2a-b093-b9537e4c3075", + "createdTime": "2021-01-06T20:10:07.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ef19a07-7da3-4046-b39e-192fd1352e7e", + "createdTime": "2021-01-06T20:10:06.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbd1997b-0040-4b42-b603-d99419559ab8", + "createdTime": "2021-01-06T20:06:05.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "df627e4c-d183-429b-990b-576fa76f44be", + "createdTime": "2021-01-06T20:06:04.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4d84b45b-4c8c-4f5b-bbe8-9f47506734c2", + "createdTime": "2021-01-06T20:06:03.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc3f8d9-c8b7-4072-beee-07f0a2cc9e19", + "createdTime": "2021-01-06T20:05:41.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "eae8da1c-a9f7-411c-a286-3577ef09ad3f", + "createdTime": "2021-01-06T20:05:40.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c10a9c0c-f2fc-49f3-80ae-470bcd0c5a5f", + "createdTime": "2021-01-06T20:05:39.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e34ff20-aa1c-4db7-a39d-2e67b91177fa", + "createdTime": "2021-01-06T20:04:53.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5beefbc3-2e08-4d6a-b662-4042cf87cec2", + "createdTime": "2021-01-06T20:04:52.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60293fb8-f1af-4726-b5d5-f3e3bd2380b5", + "createdTime": "2021-01-06T20:04:51.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73b96542-6162-4b80-8ca5-8d00c273bd71", + "createdTime": "2021-01-06T20:04:05.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f68141b7-1303-4907-af78-cebed40ed5ad", + "createdTime": "2021-01-06T20:04:04.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2e37eb2d-fc0f-4257-ad1c-2b23f5c673de", + "createdTime": "2021-01-06T20:04:03.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd8f29d3-46c4-45b7-98e7-3ed35a3c84a1", + "createdTime": "2021-01-06T20:04:02.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a173a5ea-ff49-4ece-975d-a2d54eacf72c", + "createdTime": "2021-01-06T20:04:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6047b56-f182-4660-9177-beebb4039da0", + "createdTime": "2021-01-06T20:04:01.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "51097fe3-8fb4-42bc-847b-bf1b40b7402e", + "createdTime": "2021-01-06T20:04:00.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "403f1e86-ad93-472c-88ed-3dd5eab80a17", + "createdTime": "2021-01-06T09:12:47.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8061eeb2-e08d-4667-af76-9f7d0e7d22fd", + "createdTime": "2021-01-06T09:12:46.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a97e5e9-3457-44c7-8394-e56e960b8d13", + "createdTime": "2021-01-06T09:12:45.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d4610f0f-dcd3-48ca-a330-86df5960081e", + "createdTime": "2021-01-06T09:12:45.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61781ae4-57ef-424f-808e-051ba64c2f6c", + "createdTime": "2021-01-06T09:09:06.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f9c3196-9cc4-4060-8d25-def5953e89a9", + "createdTime": "2021-01-06T09:09:05.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09dc38d6-2b83-4b5e-9648-78d45fe0226d", + "createdTime": "2021-01-06T09:09:05.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3a904ff7-4b7f-4dab-8d2e-9ff52a501ff2", + "createdTime": "2021-01-06T09:09:04.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "01f14b17-a73f-4a60-8aa0-45836666334b", + "createdTime": "2021-01-06T09:01:57.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "15dc4aff-c7b4-4e46-9728-12a233523a2c", + "createdTime": "2021-01-06T09:01:56.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1965ecb-1021-4772-8d48-d3f30eed3194", + "createdTime": "2021-01-06T09:01:56.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c391b8e-6280-4527-9f49-5147ee595254", + "createdTime": "2021-01-06T09:01:55.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0588ce5a-42ca-41cc-99d3-72db10a5f281", + "createdTime": "2021-01-06T08:58:14.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eda40fcc-c557-49a5-883f-63b1340247a3", + "createdTime": "2021-01-06T08:58:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95fc0025-7b59-4d87-9ec9-983a0d4ec1d3", + "createdTime": "2021-01-06T08:58:13.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c226c1e-a929-4cb3-9bad-2ec33f237d94", + "createdTime": "2021-01-06T08:58:12.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "99612ded-53c6-4f4a-ab4d-91b9707643db", + "createdTime": "2021-01-06T08:49:11.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "16f05f71-8c93-4ac8-b5b2-07c496eb123b", + "createdTime": "2021-01-06T08:49:11.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9fb3f47-14fd-4b80-a41a-bd0fe9c8eeda", + "createdTime": "2021-01-06T08:49:10.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fee91e3a-e57c-473d-af57-4a61f47c6268", + "createdTime": "2021-01-06T08:49:09.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2f9f990-d516-4ca7-90cd-43dd061fd8cf", + "createdTime": "2021-01-06T08:35:31.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa94b870-2e1e-48b7-b153-e2f867a77ea1", + "createdTime": "2021-01-06T08:39:28.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92bf4cb1-4231-407d-b46a-85fa85b2c86c", + "createdTime": "2021-01-06T08:28:20.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "81911393-c70d-4657-8e56-9447791ca354", + "createdTime": "2021-01-06T08:39:27.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5092c6c-6500-423d-857f-b293032ca481", + "createdTime": "2021-01-06T08:39:26.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "99dba31c-4383-48e5-afbf-a0581d406c38", + "createdTime": "2021-01-06T08:39:25.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "68a5153d-d171-4023-a17a-150bbcd039ac", + "createdTime": "2021-01-06T08:35:30.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd262c7-8e03-43f9-a350-ef75a9e06b1c", + "createdTime": "2021-01-06T08:35:30.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5088b1a1-f880-4c32-8a3b-144c84f6b1e7", + "createdTime": "2021-01-06T08:35:29.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a9572a0-10c0-46de-9693-57fa316986f8", + "createdTime": "2021-01-06T08:28:19.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fd7217a7-558b-4c71-bacf-5e6d11597766", + "createdTime": "2021-01-06T08:28:19.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dca03f60-f9f2-4fac-88c3-8eeb97872a88", + "createdTime": "2021-01-06T08:28:18.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8320ec-4fda-42db-84c1-952f3455bff0", + "createdTime": "2021-01-06T08:23:01.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ba7e1d-1c5f-4f60-8621-dd765fa238f5", + "createdTime": "2021-01-06T08:23:01.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ca1b8e7d-e9a9-473d-8fc6-389425b241a8", + "createdTime": "2021-01-06T08:23:00.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7e5ec12c-abea-49a1-8358-e0139acf4595", + "createdTime": "2021-01-06T08:23:00.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d8c4e11-d796-4b8b-a429-9757dac9a42b", + "createdTime": "2021-01-05T20:05:48.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6901cca4-201b-480d-a927-e71ee2f68d0f", + "createdTime": "2021-01-05T20:06:39.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1ba1506c-1988-483d-a326-031ca2b7f2b4", + "createdTime": "2021-01-05T20:12:32.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5ddea8f-042b-4090-af63-8a334243ce60", + "createdTime": "2021-01-05T20:05:19.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "adbc06d9-d686-4040-b4f8-ff737ad09ef2", + "createdTime": "2021-01-05T20:07:09.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4a3d3217-fbc7-45b2-8fec-f2dacbc96c88", + "createdTime": "2021-01-05T20:12:59.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "066cea83-9d22-4442-ac69-88209f5f6eca", + "createdTime": "2021-01-05T20:12:59.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "143bb02b-8959-4e99-b0a3-d6717d29d302", + "createdTime": "2021-01-05T20:12:58.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4ba2718c-dec0-43c0-8f3d-a8e51c1fe32b", + "createdTime": "2021-01-05T20:12:58.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86a0943c-4879-4e74-b95f-b5dcd4d9657d", + "createdTime": "2021-01-05T20:12:33.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c2c0a85c-0cf9-4f55-a52d-9e382dc9ea61", + "createdTime": "2021-01-05T20:12:32.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f6ad566d-ba90-4ea5-94ac-213b108d59d6", + "createdTime": "2021-01-05T20:12:31.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "117b2caa-76c5-4cfe-b326-9cf708d8599c", + "createdTime": "2021-01-05T20:07:10.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6fcefd5b-d519-46be-9eac-569b10f1daa8", + "createdTime": "2021-01-05T20:07:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "784fdb55-97d0-402c-a4e0-6d0793eea60c", + "createdTime": "2021-01-05T20:07:08.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3bc7750-7124-45c1-b5a9-d2f382087435", + "createdTime": "2021-01-05T20:06:40.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fee82735-493a-4210-ac33-dea0acfab036", + "createdTime": "2021-01-05T20:06:38.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adaa52d4-17b2-4067-b478-2018fd685f63", + "createdTime": "2021-01-05T20:06:37.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d02b463-6de2-48ae-83ab-bcfd6afc1924", + "createdTime": "2021-01-05T20:05:49.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "774e5149-ea51-4d02-b111-20bafb0002c4", + "createdTime": "2021-01-05T20:05:48.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70c87b28-71d9-4c20-929f-db07296a77bc", + "createdTime": "2021-01-05T20:05:47.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de292309-30e6-4b9f-857c-7fe2eaee3549", + "createdTime": "2021-01-05T20:05:19.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0a2a4c69-c50c-4b28-886f-db71781a5e8e", + "createdTime": "2021-01-05T20:05:19.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b2bd50a7-cccf-4035-a7ad-154dd06693f0", + "createdTime": "2021-01-05T20:05:19.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68c956d8-8cf2-4e6a-b020-5ac8222ed5fd", + "createdTime": "2021-01-05T20:05:18.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "04ca474e-cf0a-4d3d-a71d-d790360d6336", + "createdTime": "2021-01-05T20:05:18.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fa8c8fcf-c393-4e78-84fc-14c7b155c196", + "createdTime": "2021-01-05T20:05:18.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae90d862-cf01-4ca9-9686-48891f6e17e3", + "createdTime": "2021-01-05T20:05:18.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b88b9e65-7d7f-4caf-ba78-888f58ad12da", + "createdTime": "2021-01-05T09:15:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25949c34-f8a6-4d76-b415-eefaae7d74bc", + "createdTime": "2021-01-05T09:15:48.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9968bc0-bcc9-4746-a9f6-c9bc9f5f1921", + "createdTime": "2021-01-05T09:15:48.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "60bed383-d8b9-4af0-b41d-137631787a18", + "createdTime": "2021-01-05T09:15:47.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a12fb560-04d5-461a-bc57-2c16391f8a78", + "createdTime": "2021-01-05T09:12:11.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17446967-da54-47a7-ae09-a461a3703559", + "createdTime": "2021-01-05T09:12:10.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b0bf7cf-f840-4fbe-bc54-c616e6f3e98a", + "createdTime": "2021-01-05T09:12:09.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6bbe1c-9a79-478d-aaf7-9405add570f2", + "createdTime": "2021-01-05T09:12:09.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cbba494-7d47-46f1-9ce7-3de9d1209995", + "createdTime": "2021-01-05T09:00:18.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d597e9f4-6a4e-4a0f-a25f-cb4d179371ce", + "createdTime": "2021-01-05T09:00:18.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b42c5609-051b-4a91-b89a-69942df91b7b", + "createdTime": "2021-01-05T09:00:17.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ad099b7-6af9-4d4b-8b5c-c9da0c6c83dd", + "createdTime": "2021-01-05T09:00:17.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a13fa93f-83d9-48aa-9c0f-cf33e9c050a0", + "createdTime": "2021-01-05T08:56:48.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88532c49-1246-4bee-aa38-a3f0597d760f", + "createdTime": "2021-01-05T08:56:48.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a19e986a-6237-41b1-af77-cb6832eb98bb", + "createdTime": "2021-01-05T08:56:47.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "581eb52c-23c1-4652-b213-9ed53d38368a", + "createdTime": "2021-01-05T08:56:46.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a1bca85-da6c-4ebf-b95d-596accf0b80f", + "createdTime": "2021-01-05T08:47:15.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c07695e-6cf3-418c-972e-adb5058590c0", + "createdTime": "2021-01-05T08:47:14.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea238045-781c-4224-a4e2-a40647bf5ccb", + "createdTime": "2021-01-05T08:47:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "502f2afd-4c49-43d7-bdc7-9483684f5d97", + "createdTime": "2021-01-05T08:47:13.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88525102-d45c-4cff-89bd-082d4de2001d", + "createdTime": "2021-01-05T08:31:34.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4c1811b7-0bf7-4fee-8143-0a1811caa46d", + "createdTime": "2021-01-05T08:35:17.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ca6bf768-576b-4e4f-97a0-bbc8b1fe7956", + "createdTime": "2021-01-05T08:24:09.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8caa343b-843d-425d-bfda-1a6cef555b48", + "createdTime": "2021-01-05T08:35:17.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff207966-4313-4e61-9d42-4459aeb5489c", + "createdTime": "2021-01-05T08:35:16.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4898d21e-a84a-451c-87d0-865ea5097413", + "createdTime": "2021-01-05T08:35:15.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2b54bdb-5dfa-4ef9-9caf-73eed2d4c823", + "createdTime": "2021-01-05T08:31:34.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1e49d61-8270-408d-9e0f-11a849da1a71", + "createdTime": "2021-01-05T08:31:33.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a0c582a6-f39c-409f-964c-79400b0ad771", + "createdTime": "2021-01-05T08:31:32.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47471a55-e9f3-43f0-94bf-b4b10d65f118", + "createdTime": "2021-01-05T08:24:08.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe7f029a-646d-4927-ad8a-84ab36eaf87c", + "createdTime": "2021-01-05T08:24:08.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06b9448c-ec6b-4c34-94f3-4dc6fb9ff864", + "createdTime": "2021-01-05T08:24:07.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18af88bd-3812-4380-8997-890ff1f73963", + "createdTime": "2021-01-05T08:20:31.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "29ceb2ed-c53b-4099-ac33-5990889f26b0", + "createdTime": "2021-01-05T08:20:30.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e0bd0eb-5c0a-4531-881e-969918812006", + "createdTime": "2021-01-05T08:20:29.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3efa88b3-3bc1-49bb-87f8-3ca3232393cd", + "createdTime": "2021-01-05T08:20:28.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fcfcb359-8f07-42aa-9f8a-96ef50fc66bb", + "createdTime": "2021-01-04T20:10:12.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e9244948-7645-4967-a292-3ef19041542a", + "createdTime": "2021-01-04T20:09:02.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "76fbc739-5978-4afe-acf6-0bb14822b458", + "createdTime": "2021-01-04T20:08:47.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b84163ab-cdd5-473d-81d6-6e861ca68e98", + "createdTime": "2021-01-04T20:08:37.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "868e70e1-a242-4e1e-b544-4c045f7598c5", + "createdTime": "2021-01-04T20:08:24.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "60d28e8f-bcdd-4d6a-8161-0de1b58c7314", + "createdTime": "2021-01-04T20:13:20.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1bcfff35-2d4f-4770-a11c-cc5e4374a62c", + "createdTime": "2021-01-04T20:13:21.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be905caf-26ab-4357-b235-98c09de80e34", + "createdTime": "2021-01-04T20:13:20.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f05bbb7c-9883-4d4d-9b2e-e650c1e5553e", + "createdTime": "2021-01-04T20:13:19.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "19a76c0b-b45a-40f0-a199-a96228a905fe", + "createdTime": "2021-01-04T20:10:13.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57d551c5-794c-4eca-a442-ae3614e58150", + "createdTime": "2021-01-04T20:10:11.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4a95c802-1443-416e-982f-08336dd8bfcb", + "createdTime": "2021-01-04T20:10:11.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "240a23da-3e7d-4690-af63-c1196003aaf6", + "createdTime": "2021-01-04T20:09:03.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6ce3b63c-b165-47f3-9014-fdb27f600bc9", + "createdTime": "2021-01-04T20:09:01.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c38bb76b-4ca6-4090-8d21-a93104852db3", + "createdTime": "2021-01-04T20:09:01.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5eacd696-4f34-46ae-a3a0-11d1a5f783cc", + "createdTime": "2021-01-04T20:08:48.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "75b0d4c1-8724-4f02-a95e-c69b57f962b3", + "createdTime": "2021-01-04T20:08:46.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e9007cd-92c1-415f-b33a-b7147419a1e4", + "createdTime": "2021-01-04T20:08:45.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a04655c-6d0b-498d-b3d1-137a94a68759", + "createdTime": "2021-01-04T20:08:38.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8488dbd0-900d-4990-be67-fd7f891cfaa5", + "createdTime": "2021-01-04T20:08:36.146Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2ae21ef0-4a4e-4c26-8653-59dccf5d9921", + "createdTime": "2021-01-04T20:08:34.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39ed981f-f021-4240-8a07-bb1ebb5fd9c4", + "createdTime": "2021-01-04T20:08:25.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "68803e0c-b85b-45b9-8814-073ab38e0ade", + "createdTime": "2021-01-04T20:08:23.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0e80580f-1360-4cbc-a0d4-b33b59d009e6", + "createdTime": "2021-01-04T20:08:22.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f20f944c-4887-485d-9e33-f299672b6e38", + "createdTime": "2021-01-04T20:08:07.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6d87c7ad-2867-44eb-837b-6594627e2d7f", + "createdTime": "2021-01-04T20:08:06.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8178a627-f47f-41c5-af4c-f3556c29df2d", + "createdTime": "2021-01-04T20:08:06.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1222dc5e-854a-4546-a20b-647f72b6df19", + "createdTime": "2021-01-04T20:08:05.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22ce40a8-7700-4ce4-aa68-a17bddfcddc6", + "createdTime": "2021-01-04T09:13:08.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f9f3bc6-c5b5-4974-9547-f8e1e0681639", + "createdTime": "2021-01-04T09:13:08.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1658f216-21a9-47a5-9ba9-be5f4a7e9864", + "createdTime": "2021-01-04T09:13:07.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc199980-922b-4675-8a95-2eebe390cabd", + "createdTime": "2021-01-04T09:13:07.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "84b7e2a6-a964-4c80-949d-f0b876bbd1d3", + "createdTime": "2021-01-04T09:09:29.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ec9e34e3-b9e6-48fd-abbd-661ad22936c6", + "createdTime": "2021-01-04T09:09:28.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99034b33-7266-4a3b-87bf-8c49b4778f7b", + "createdTime": "2021-01-04T09:09:27.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc42e2a9-530d-4c0d-a38b-8e712cf9f9c7", + "createdTime": "2021-01-04T09:09:26.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1933c37-8825-4d5f-a03e-4661d6747e47", + "createdTime": "2021-01-04T09:00:25.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "389c05d2-e7cc-4afc-9315-b9262388ac4e", + "createdTime": "2021-01-04T09:00:25.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b8a8bff6-42ee-4238-9226-1a24a10c44d1", + "createdTime": "2021-01-04T09:00:24.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63320392-ea24-42ab-b306-5f11006e1b46", + "createdTime": "2021-01-04T09:00:23.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdda947f-9075-47b9-8f0a-43d64ac51f15", + "createdTime": "2021-01-04T08:56:47.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "94a52817-618d-4715-a440-c90e56005ebf", + "createdTime": "2021-01-04T08:56:47.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c8d041-f2ec-4dc1-be3b-99cd4f9bc6bd", + "createdTime": "2021-01-04T08:56:46.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "155417f3-adc5-400f-a9c3-8bc323aec64d", + "createdTime": "2021-01-04T08:56:45.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d51d026e-02c8-4cb6-8075-00a52d06929f", + "createdTime": "2021-01-04T08:48:02.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "feda9901-4988-4fbd-b4dd-c73126991d02", + "createdTime": "2021-01-04T08:48:01.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "41ce8ea5-6fcd-4805-bd36-9f6f8d19a9f1", + "createdTime": "2021-01-04T08:48:01.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46158b6e-7cca-4564-bd06-fd3c2fecc8a6", + "createdTime": "2021-01-04T08:48:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6eeee9f-350a-46b7-af1a-f45a72e17376", + "createdTime": "2021-01-04T08:31:51.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e3acb57-e717-4b0d-adf3-a84debc0bd4e", + "createdTime": "2021-01-04T08:24:44.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e16109ad-becd-477e-a2de-bb6f55ca4c51", + "createdTime": "2021-01-04T08:35:30.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7cb678e5-aa76-4392-91ad-1f8afae46610", + "createdTime": "2021-01-04T08:35:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "932e7047-aa00-4821-a823-36248d7876de", + "createdTime": "2021-01-04T08:35:28.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd050682-d6f3-496f-a0d4-72748c32c165", + "createdTime": "2021-01-04T08:35:27.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d5affab-4f1e-44a2-b74e-7098add0106d", + "createdTime": "2021-01-04T08:31:50.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "53600b80-6363-4779-98b1-55d223f7e4c4", + "createdTime": "2021-01-04T08:31:50.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "90d7d2a8-4228-4800-ade6-2f79275ff7f8", + "createdTime": "2021-01-04T08:31:49.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b7d834c-ff27-4e4b-abf6-571cc59e7931", + "createdTime": "2021-01-04T08:24:43.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3f47ea7a-7dfd-4aa9-8c8d-f6d76ed68a55", + "createdTime": "2021-01-04T08:24:42.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63881cc6-b107-4fee-a73d-67a4ea777a27", + "createdTime": "2021-01-04T08:24:41.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05c3da49-ede2-44a2-81df-daacdfda9814", + "createdTime": "2021-01-04T08:20:58.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03e31d03-cddb-4ef2-abe1-43718a708bd7", + "createdTime": "2021-01-04T08:20:57.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51bfbaf0-20b4-4243-bed4-b7dd2b47d958", + "createdTime": "2021-01-04T08:20:57.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e3442c6-656a-484d-a0d3-2156cf3d9c52", + "createdTime": "2021-01-04T08:20:56.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "27a4dee6-070b-4af9-9c9f-caef9194d7c2", + "createdTime": "2021-01-01T09:08:19.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c419bfc-6287-4b26-bc83-9bf4f53f0123", + "createdTime": "2021-01-01T09:08:18.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dcbc058-53a8-4dd1-bfde-9f63247fe5c4", + "createdTime": "2021-01-01T09:08:17.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7fa95f02-9561-4c31-adc6-58531cfebd6e", + "createdTime": "2021-01-01T09:08:17.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdb75060-cffa-4288-b829-1baaa7591b50", + "createdTime": "2021-01-01T09:04:59.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "14ed2d4c-9b17-435b-be34-c021fab0a78d", + "createdTime": "2021-01-01T09:04:58.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d06be283-86f3-457d-a8a8-39aa7c79f38d", + "createdTime": "2021-01-01T09:04:58.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f78f6c85-91e1-4f9f-883a-c754fa2dceeb", + "createdTime": "2021-01-01T09:04:57.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45166c9f-66b6-4e11-96d2-0ca64f7b9a90", + "createdTime": "2021-01-01T08:58:18.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ca074c-bc6b-4d03-8c57-bb847f5897b9", + "createdTime": "2021-01-01T08:58:17.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eea77a54-32f7-45a0-aaf3-3d5fa61bbe1f", + "createdTime": "2021-01-01T08:58:17.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce6b2a85-81d1-4593-8e24-a3a10c274014", + "createdTime": "2021-01-01T08:58:16.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9a6f78e-ede2-4f9f-8fe5-1de1b8ad0b8b", + "createdTime": "2021-01-01T08:54:34.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1ef59c34-e24b-4fef-beef-49a9cc3efe30", + "createdTime": "2021-01-01T08:54:33.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "01d28f54-c798-4fdb-9327-f3e6edcf1b1e", + "createdTime": "2021-01-01T08:54:32.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "56bb5c41-150f-42dd-85fc-0ca189c6dda7", + "createdTime": "2021-01-01T08:54:32.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7d4a1cc-fbf4-4e4b-81aa-2fcb41924c8c", + "createdTime": "2021-01-01T08:45:36.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8034fff3-e20f-4e55-9bb4-c57e3b43a067", + "createdTime": "2021-01-01T08:45:35.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2c067c15-2a63-4405-a48d-bbb8c9d910ed", + "createdTime": "2021-01-01T08:45:35.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e2cbf03-9d7c-4450-a5a4-39c691bd3074", + "createdTime": "2021-01-01T08:45:34.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccef1e17-b02c-45eb-ad4c-c8a27c65afca", + "createdTime": "2021-01-01T08:23:57.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92222554-284f-4aa6-8b47-1a4fd2a98bc0", + "createdTime": "2021-01-01T08:35:31.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "168ca31f-ce5b-41ac-b251-c358c10e00aa", + "createdTime": "2021-01-01T08:32:15.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d72479e4-03d3-4961-9074-2acbe41bad90", + "createdTime": "2021-01-01T08:35:31.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a5b1b7d-93a1-4fcd-840e-b99a295950be", + "createdTime": "2021-01-01T08:35:30.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f6a67f42-20f1-4381-8840-adef96d4d0ca", + "createdTime": "2021-01-01T08:35:29.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4907a9d7-0e34-4657-86bc-d1b9b7458d9a", + "createdTime": "2021-01-01T08:32:14.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdfda8f-0f0d-4c9c-b36f-64b158b74f7a", + "createdTime": "2021-01-01T08:32:13.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "072c2766-da2c-44a4-a603-c83fbdf532b5", + "createdTime": "2021-01-01T08:32:13.188Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e7fbd19-88b9-46ed-8e70-649155e7af2d", + "createdTime": "2021-01-01T08:23:57.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b01c6998-e989-4930-a12e-d186a1569704", + "createdTime": "2021-01-01T08:23:56.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d300a4d1-9552-40cd-87f0-b50f7ccfb60e", + "createdTime": "2021-01-01T08:23:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c26f93-56ae-4072-a84a-84b4aab2da0a", + "createdTime": "2021-01-01T08:20:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f2c9fc2-e426-488e-b13f-47aa6ebaa47f", + "createdTime": "2021-01-01T08:20:27.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39f33192-b7bd-49b5-a8d1-f2bd2e30b004", + "createdTime": "2021-01-01T08:20:26.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06074f4a-7a39-4628-ae55-8234f1e0e8e6", + "createdTime": "2021-01-01T08:20:25.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f88e27e-428f-41f9-a66a-f90c5e6783a8", + "createdTime": "2021-01-01T01:12:31.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a119087-2769-4c50-b435-8c41de441b67", + "createdTime": "2021-01-01T01:12:30.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "42e28b3b-ba6c-4982-84c7-283759475bc4", + "createdTime": "2021-01-01T01:12:29.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c446c0af-eda5-44c7-9ece-1eb46b688983", + "createdTime": "2021-01-01T01:12:28.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "563902a7-9dd6-430d-bec9-aed4775f5c1d", + "createdTime": "2021-01-01T01:09:03.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abe553d6-0459-4a8a-a2f3-e7170f429fb7", + "createdTime": "2021-01-01T01:09:03.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09400a89-486b-45ad-85dd-09e3dcafc870", + "createdTime": "2021-01-01T01:09:02.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ac6e1fe0-a61b-4fc8-b464-612dfd478ce4", + "createdTime": "2021-01-01T01:09:01.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b80c88d4-e84a-430b-a63d-00fa3e99a6ea", + "createdTime": "2020-12-31T09:10:53.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f403490a-dc0e-422e-b67e-04d77865ba7d", + "createdTime": "2020-12-31T09:10:53.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a803b079-e58a-4eaa-801c-3cd8d06dd06d", + "createdTime": "2020-12-31T09:10:52.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "95d916a6-88dd-43a0-bbe8-3e73329f933d", + "createdTime": "2020-12-31T09:10:52.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a1c0c80-8334-408b-9df2-943e94639ac1", + "createdTime": "2020-12-31T09:07:32.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27ba7945-a2b1-4575-a000-1870240c2039", + "createdTime": "2020-12-31T09:07:31.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "024388a8-e204-4fdf-b750-199a7ae18ff7", + "createdTime": "2020-12-31T09:07:31.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47289e8b-1af1-486b-b8fb-794a2d287064", + "createdTime": "2020-12-31T09:07:30.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c3ae44ec-c9c9-4136-be64-009ac889beff", + "createdTime": "2020-12-31T09:00:41.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ef4ae2cc-d5ed-4078-9444-9ffcf94f2122", + "createdTime": "2020-12-31T09:00:40.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "daad3f1a-df51-47a9-8998-3c054105a70e", + "createdTime": "2020-12-31T09:00:39.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c540a912-6d51-4271-b432-b052b24408c9", + "createdTime": "2020-12-31T09:00:38.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4312387a-3e20-4212-bd35-97aa26fdaacf", + "createdTime": "2020-12-31T08:57:04.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88065dff-4929-4419-bb62-927a0e52cced", + "createdTime": "2020-12-31T08:57:03.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed40905-54de-40a4-9839-4d548f994f3d", + "createdTime": "2020-12-31T08:57:03.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "034d466d-6d8d-41e6-92ad-0e30c3cf3ac8", + "createdTime": "2020-12-31T08:57:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16effbbf-9129-4ba1-aa90-efa377ab364c", + "createdTime": "2020-12-31T08:48:07.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f0f9b0b5-2e4a-4699-b744-5ab11562cdc5", + "createdTime": "2020-12-31T08:48:07.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75c65118-43f8-4805-b3a4-7daa2768617d", + "createdTime": "2020-12-31T08:48:06.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb8ac1f7-cf61-4ed4-842f-a1c2351c59d7", + "createdTime": "2020-12-31T08:48:05.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a52ec63-7894-47a3-8e73-dd68d028e06c", + "createdTime": "2020-12-31T08:23:58.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69b96ad4-f740-4171-9ef4-e31e6d00c6e2", + "createdTime": "2020-12-31T08:30:54.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e6bb3e32-2296-4249-8365-42697df77d71", + "createdTime": "2020-12-31T08:34:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3644b01c-d55e-4e2a-8385-0617411154c6", + "createdTime": "2020-12-31T08:34:19.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0c4bfc72-c2c5-4895-a5dc-75ebe47d3a85", + "createdTime": "2020-12-31T08:34:18.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1543d8b2-255d-40da-bac6-70e60e29860d", + "createdTime": "2020-12-31T08:34:17.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25df8f27-15af-4adf-97a4-fab634948334", + "createdTime": "2020-12-31T08:30:53.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e6c12fc-87f0-4844-94dc-2dcd0a682682", + "createdTime": "2020-12-31T08:30:52.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b4b9ab2a-2da2-4569-8a77-b26030774b0c", + "createdTime": "2020-12-31T08:30:52.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd1241fd-d0c0-4201-a439-3cf5c2b3382d", + "createdTime": "2020-12-31T08:23:58.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "07abe614-cdb8-4e3f-96cd-5ae26ef8edba", + "createdTime": "2020-12-31T08:23:57.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c9490f2-1984-4f88-86c5-1195fd14e1c0", + "createdTime": "2020-12-31T08:23:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b2bcddc-ca73-423d-afd4-25a904777b48", + "createdTime": "2020-12-31T08:20:21.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "898ca250-4e33-4c26-ac10-2ebc772f96e8", + "createdTime": "2020-12-31T08:20:20.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c8b86015-c41a-47c0-89ed-9ad6dedbb857", + "createdTime": "2020-12-31T08:20:19.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f8b42e4-9352-4437-8179-29ff8424c460", + "createdTime": "2020-12-31T08:20:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b07e861-bb7c-4694-9bd1-b810792ea492", + "createdTime": "2020-12-30T09:10:00.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63b516bc-21b6-4a3a-af74-71f9f1f1c341", + "createdTime": "2020-12-30T09:09:59.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf21194-8f56-4d2d-a2ac-9ec8f35627b1", + "createdTime": "2020-12-30T09:09:58.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9e7c6f1-4e43-4f94-988a-4c3c07c1d94b", + "createdTime": "2020-12-30T09:09:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05668173-fe69-4305-b3e3-3b5d554af216", + "createdTime": "2020-12-30T09:06:37.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9a3816e-7863-44ce-884d-3e299f8d728c", + "createdTime": "2020-12-30T09:06:36.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5492c9c-e699-43c2-b37d-bf69ee580b14", + "createdTime": "2020-12-30T09:06:35.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d118e464-2e74-4d1c-9513-77905a23d4f0", + "createdTime": "2020-12-30T09:06:34.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ec12b0df-7b27-4a93-97ba-124dc1bdea21", + "createdTime": "2020-12-30T08:59:19.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ea7310eb-6db3-4d75-9dfa-483458091937", + "createdTime": "2020-12-30T08:59:18.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c22aef0c-5786-4e27-a526-827c1a01d28f", + "createdTime": "2020-12-30T08:59:18.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49277e44-751f-46a0-bc8b-3aa9a07a1c88", + "createdTime": "2020-12-30T08:59:17.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fac045f-a105-4fd6-87d1-4278faca64a8", + "createdTime": "2020-12-30T08:54:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ba6930-4f01-47e6-862f-0ee39644b7fe", + "createdTime": "2020-12-30T08:54:44.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6151cb8-7345-4e84-adfb-4fb11d519523", + "createdTime": "2020-12-30T08:54:44.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc37ee8d-8553-464e-bf6d-85509174b57f", + "createdTime": "2020-12-30T08:54:43.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fa3668f-f76a-4641-8c34-365a7da2318b", + "createdTime": "2020-12-30T08:45:17.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d25de72-0fbd-449e-92f9-fc068c9bb217", + "createdTime": "2020-12-30T08:45:16.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f390acec-1b19-4add-acc8-f2c1e524bdf5", + "createdTime": "2020-12-30T08:45:16.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d2442ca5-61b6-47a6-a5af-822a83fe302a", + "createdTime": "2020-12-30T08:45:15.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "654ea60a-1a4f-4e5a-9734-1c036f9ac593", + "createdTime": "2020-12-30T08:24:00.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f77d3a14-4ef3-4f08-9783-df352dfafed5", + "createdTime": "2020-12-30T08:30:37.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e9af07b6-4d21-4b0c-a00c-12c6a815e39c", + "createdTime": "2020-12-30T08:34:05.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "85a62d90-ea69-4ce6-9c47-e5d572546bd8", + "createdTime": "2020-12-30T08:34:04.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc20f9c9-71fe-4d40-8dbd-c40c23028468", + "createdTime": "2020-12-30T08:34:04.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "39eecc3d-bd42-428c-a5cf-35371f93ae3d", + "createdTime": "2020-12-30T08:34:03.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae7d2a8e-b177-402a-8f05-d8b0d8483763", + "createdTime": "2020-12-30T08:30:37.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f4abe8bd-1872-4546-bf31-ff37a74fd2e6", + "createdTime": "2020-12-30T08:30:36.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c32f021-d70f-4b25-b46d-52579af14980", + "createdTime": "2020-12-30T08:30:35.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "013d5e41-c255-4d2e-88af-e134d06ea130", + "createdTime": "2020-12-30T08:24:00.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fb037dd6-d64a-4115-8ea2-1cf946a3c17b", + "createdTime": "2020-12-30T08:23:59.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6017f41e-9064-4b1b-bd0e-ea6818efeb99", + "createdTime": "2020-12-30T08:23:59.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17203519-2edb-42cd-a363-d0a8f9251158", + "createdTime": "2020-12-30T08:20:31.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b02f56da-1920-4caa-af52-97dd2c105554", + "createdTime": "2020-12-30T08:20:30.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1fba0b3b-b990-4b38-8d5b-43d5f705831a", + "createdTime": "2020-12-30T08:20:30.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a91c53f1-57d6-4ea5-bb26-dd75444cb967", + "createdTime": "2020-12-30T08:20:29.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9149e0b0-de41-4ab5-b854-11abfafd8881", + "createdTime": "2020-12-29T20:06:25.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c3b4bef9-16a8-48ef-9d83-7ff9ac6c5229", + "createdTime": "2020-12-29T20:11:14.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "15782071-a511-49b9-b5f5-1f5c2a17c90e", + "createdTime": "2020-12-29T20:08:11.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9c0ed278-d6c7-4b75-b7e3-d17ba3f4bfda", + "createdTime": "2020-12-29T20:04:45.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f9c85808-b055-47ba-9b76-b50353e7bd07", + "createdTime": "2020-12-29T20:05:42.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "654c7f5f-1131-4c9c-b0e6-e00e533649d0", + "createdTime": "2020-12-29T20:05:32.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d61f42fe-5a0d-4c3c-a44f-53fa47b7f35f", + "createdTime": "2020-12-29T20:11:15.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b42a5cb-7b45-403d-b4bb-91c9ae97b1a2", + "createdTime": "2020-12-29T20:11:14.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e9e241e8-c6aa-4d56-8871-629fd0a58ddd", + "createdTime": "2020-12-29T20:11:13.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2981f08-bff9-4ea5-8ae5-226b670499ee", + "createdTime": "2020-12-29T20:08:12.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5bd10f34-8c39-458e-b055-cda02e1701ca", + "createdTime": "2020-12-29T20:08:10.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fe02b8c2-6a44-47e2-a363-38de53cd24a1", + "createdTime": "2020-12-29T20:08:10.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4f4fa7-58d8-407b-94ff-dc59151e33bc", + "createdTime": "2020-12-29T20:06:26.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "28d369fb-a76a-47c8-a5dc-8eee48a47708", + "createdTime": "2020-12-29T20:06:24.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "baf125ec-97a2-4359-979c-1e4f9bdc29fa", + "createdTime": "2020-12-29T20:06:23.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7396e660-5cdd-467d-86f2-3cdfb4783abe", + "createdTime": "2020-12-29T20:05:43.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b815b5f0-715f-4739-9543-a3dd6b6239e6", + "createdTime": "2020-12-29T20:05:42.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0aa04859-fd99-47f7-995d-9b55989588c0", + "createdTime": "2020-12-29T20:05:41.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d199f29-c49c-4d0c-838e-7d3e368533f7", + "createdTime": "2020-12-29T20:05:33.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1650f2b1-4f50-4948-b667-a314a972543d", + "createdTime": "2020-12-29T20:05:31.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "26a9c1a1-c00a-48bf-90f8-478267283e3f", + "createdTime": "2020-12-29T20:05:30.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f487279-b426-4c8d-a9b8-ba708460c2e1", + "createdTime": "2020-12-29T20:04:46.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d6e0f886-e6d6-41be-b6d0-9fb1c915c5f1", + "createdTime": "2020-12-29T20:04:44.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4aea61d5-4159-461e-bcd0-da10b3764fe1", + "createdTime": "2020-12-29T20:04:44.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66d14879-fc9e-4770-a981-d3cd44b74c37", + "createdTime": "2020-12-29T20:04:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cf8a2cce-3f76-4b71-8d0e-1cf86425da00", + "createdTime": "2020-12-29T20:04:38.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "17153da0-a236-4f4b-b69c-ebde67ed51b3", + "createdTime": "2020-12-29T20:04:37.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b48be36b-6122-4798-ab1c-9934a4267126", + "createdTime": "2020-12-29T20:04:37.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "023a2ad4-f219-41b1-8cde-ff8d2f3c170b", + "createdTime": "2020-12-28T20:06:21.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7d43e75d-4b60-4134-942e-0cf15a945d6c", + "createdTime": "2020-12-28T20:11:57.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c16cd0c-5cc5-4315-8d7e-3e5e3af9fd9b", + "createdTime": "2020-12-28T20:11:56.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53145bbf-0a31-49f7-aae1-d9a3a8def343", + "createdTime": "2020-12-28T20:04:48.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ecb24d7d-ae9b-4166-8666-57890bfa88e0", + "createdTime": "2020-12-28T20:11:55.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "64043313-c120-4f28-9624-610d6be73193", + "createdTime": "2020-12-28T20:11:55.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d45121a0-4ec2-41db-907e-0dce1b5dad29", + "createdTime": "2020-12-28T20:04:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6b24502-00aa-40dc-98df-2504525c8170", + "createdTime": "2020-12-28T20:04:44.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f77c2e65-728d-4080-b923-29646fe22b27", + "createdTime": "2020-12-28T20:08:23.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "027ca7c1-7083-435d-acd4-0f276321cd42", + "createdTime": "2020-12-28T20:08:24.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dc079424-26c0-423e-9a1b-edb3652c7943", + "createdTime": "2020-12-28T20:08:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0af9c65f-d5e9-4678-a6c5-be7687db1b09", + "createdTime": "2020-12-28T20:08:22.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d118ce5-0c62-41f5-9861-472d529c7ebc", + "createdTime": "2020-12-28T20:06:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e5f6691-8e09-46a5-bf78-7d0ec26a9d12", + "createdTime": "2020-12-28T20:06:21.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1123ef88-5402-4a80-ab92-6a58678524dc", + "createdTime": "2020-12-28T20:06:20.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a23602a-27ba-4be7-9c4a-423081f7f814", + "createdTime": "2020-12-28T20:04:48.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bfeed532-ff1f-4356-adb7-f9bad927a2ba", + "createdTime": "2020-12-28T20:04:47.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3a2b719f-1e17-4476-9590-64558807ccc6", + "createdTime": "2020-12-28T20:04:47.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0b83a0bd-6975-421f-986d-6c8874f47f7a", + "createdTime": "2020-12-28T20:04:46.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "079f9d92-3953-4a40-8083-8e3939aa5dd5", + "createdTime": "2020-12-28T20:04:46.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eec9f09c-22ce-4dda-88c7-d191f2d42ed6", + "createdTime": "2020-12-28T20:04:45.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f89e2f3-daca-4c04-8921-2ff521784c95", + "createdTime": "2020-12-28T20:04:45.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9310176b-b4ca-4216-ae2b-585c7a84178c", + "createdTime": "2020-12-28T20:04:44.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "435975f3-ad17-4050-ad68-98832a4fdeeb", + "createdTime": "2020-12-28T20:04:43.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b9d07318-e3b4-4975-a3af-711df7e55eeb", + "createdTime": "2020-12-28T20:04:43.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4695ade2-a2e7-4f59-8abf-81c055370dc8", + "createdTime": "2020-12-28T20:04:43.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0c1c8d1a-fe1a-42f1-ab87-6e2e250dd11c", + "createdTime": "2020-12-28T20:04:43.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61c32bbe-393a-4891-9211-b1e35ecf2ad1", + "createdTime": "2020-12-28T20:04:42.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c39a0a39-ea33-4189-84ed-2beedf66ee0d", + "createdTime": "2020-12-26T19:41:44.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "946f4c6d-dce4-4e23-94b2-590632d1fd05", + "createdTime": "2020-12-26T19:41:43.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6974f23d-4a62-4f8e-983d-8b5fedee1e6d", + "createdTime": "2020-12-26T19:41:43.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3662ca6d-6135-4aff-87fc-281a9586ec63", + "createdTime": "2020-12-26T19:41:42.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c11532d9-6de0-40e7-82cd-12f8589130b3", + "createdTime": "2020-12-26T19:40:53.147Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5139a051-9cff-43ff-a528-16719c838fd5", + "createdTime": "2020-12-26T19:40:51.994Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f8e0adf5-00fb-47be-978f-da5119f94204", + "createdTime": "2020-12-26T19:40:51.024Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "baa7b58a-9a2e-4d4a-8e38-3c18fac7cbbc", + "createdTime": "2020-12-26T19:40:50.129Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "549bf864-2a14-4707-a7b5-0c614cba022b", + "createdTime": "2020-12-26T19:34:42.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd5f0a43-9408-4892-bcc5-02f4cd8a7858", + "createdTime": "2020-12-26T19:34:42.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43f562ae-2085-4395-9944-cb9b7bc2a7c7", + "createdTime": "2020-12-26T19:34:41.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f7ac75b-f6d0-4131-8aa6-ecb927c8106a", + "createdTime": "2020-12-26T19:34:41.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7b385d2-a0d6-4628-9845-1ec2224b459c", + "createdTime": "2020-12-26T19:33:35.974Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db47d04d-4408-4db1-9651-b90cf58f1c95", + "createdTime": "2020-12-26T19:33:34.485Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25125b91-5f22-4623-bf6c-5eb41c1b820d", + "createdTime": "2020-12-26T19:33:33.375Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6635e2c5-b176-4c86-8232-2aed87a040b9", + "createdTime": "2020-12-26T19:33:32.132Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "70856037-9d1f-4d18-91f8-010979d5fe08", + "createdTime": "2020-12-26T19:18:16.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "227ed7d3-4e4f-4121-9682-8db2710f9a70", + "createdTime": "2020-12-26T19:18:15.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b0d8c5ea-488d-4aa4-9116-685f34c1c594", + "createdTime": "2020-12-26T19:18:15.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f3392c07-7180-4f14-9848-95ae55e2a540", + "createdTime": "2020-12-26T19:18:14.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa2bd0d5-2087-42cc-8b69-4d39b16f9909", + "createdTime": "2020-12-26T19:17:22.949Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb30f39-f7ca-47d5-a284-c7f41bf10d99", + "createdTime": "2020-12-26T19:17:22.064Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ef74749-a942-4166-843e-2a7a003f3ff2", + "createdTime": "2020-12-26T19:17:21.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8160914d-905c-47d7-8819-c514ddf8f134", + "createdTime": "2020-12-26T19:17:20.327Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eeedde34-57b0-4199-adee-db54bc957cc0", + "createdTime": "2020-12-26T19:08:37.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2d512357-1280-455c-be7e-221777df490a", + "createdTime": "2020-12-26T19:08:37.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b23f07d3-bcbc-46d0-92a5-c72b46d8e850", + "createdTime": "2020-12-26T19:08:36.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d2c1e81-1069-41da-8ec1-d976426dd62c", + "createdTime": "2020-12-26T19:08:36.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30318465-8205-46c7-9f9a-f5e39def0f62", + "createdTime": "2020-12-26T19:07:43.809Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f90a819f-d0a9-4e8a-92d8-e4680b0cdcb9", + "createdTime": "2020-12-26T19:07:42.479Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c64bae98-c2cb-4e39-8661-e2413971e706", + "createdTime": "2020-12-26T19:07:41.283Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d37fd3c3-f442-4274-bda8-243e13a4d985", + "createdTime": "2020-12-26T19:07:40.089Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "91884e2c-ca90-46a5-9be6-6517ecb47063", + "createdTime": "2020-12-26T18:48:42.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c772e292-4ec0-43e6-a5ca-922be0c6e064", + "createdTime": "2020-12-26T18:47:32.909Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a6f73d8e-a7f0-4d3e-8285-4ef037337749", + "createdTime": "2020-12-26T18:51:51.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "279daab8-c19d-4501-a489-137aecbaca2e", + "createdTime": "2020-12-26T18:51:50.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4f36200b-ee7c-4275-be34-37dcd8daece0", + "createdTime": "2020-12-26T18:51:50.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4da6bab-c749-4f15-be37-4385bb444497", + "createdTime": "2020-12-26T18:51:50.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2d00ccb-f237-4916-893d-bea94995b50d", + "createdTime": "2020-12-26T18:48:41.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "393a16a3-0fae-4827-9d3b-b02f89958851", + "createdTime": "2020-12-26T18:48:41.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7c2c51c3-f436-4d19-a0ab-9f539efc6c47", + "createdTime": "2020-12-26T18:48:40.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8138acc3-bd22-4feb-b7b9-72c4475b38f8", + "createdTime": "2020-12-26T18:47:31.404Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25e04d0a-2b7b-4715-a59b-bc03a3c841d0", + "createdTime": "2020-12-26T18:47:29.833Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "14ba6c05-8493-47cd-8ee4-962e711e0260", + "createdTime": "2020-12-26T18:47:28.099Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "acb3465c-779f-4907-a6d9-4d8343c0c381", + "createdTime": "2020-12-26T18:41:10.697Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c0e6c5-7404-4691-9e3b-d8ea7d8e386e", + "createdTime": "2020-12-26T18:33:25.85Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3333381f-ec97-445b-a920-069a16e67d42", + "createdTime": "2020-12-26T18:31:25.998Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "404d2e90-390d-48f5-ae96-532c4b2e0cd7", + "createdTime": "2020-12-26T18:31:23.744Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "62696134-7885-40c7-b50a-7430ad33146a", + "createdTime": "2020-12-26T18:31:21.604Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "92f43471-3e64-4609-8a15-0170c0448aab", + "createdTime": "2020-12-26T18:31:19.951Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c14d8a5c-8d64-4f3d-9b0e-6ea896648023", + "createdTime": "2020-12-25T09:09:32.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9802184-335a-4a2c-9b46-1377f3e98cdf", + "createdTime": "2020-12-25T09:09:31.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8de91df0-5f23-4ee9-86e7-39bc4b426c8e", + "createdTime": "2020-12-25T09:09:30.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f86963e-894d-45df-8089-331a55e2244a", + "createdTime": "2020-12-25T09:09:29.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b58973a-2e80-469d-9bcb-a46bcab64918", + "createdTime": "2020-12-25T09:05:59.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e94785a9-2317-4005-9091-88dbb70ffe67", + "createdTime": "2020-12-25T09:05:58.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "536af1d6-acd5-41c0-9170-22ec0fb83fed", + "createdTime": "2020-12-25T09:05:58.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "77e45f55-35de-476b-b350-78cdae335f08", + "createdTime": "2020-12-25T09:05:57.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ea02ad1-4407-41b9-b99e-744cc3cfebdb", + "createdTime": "2020-12-25T08:59:08.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bacabf11-3864-4629-bd71-e33bd87c43ae", + "createdTime": "2020-12-25T08:59:07.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "942cb0b8-c618-4720-b6f7-7efa578bbb02", + "createdTime": "2020-12-25T08:59:06.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "725367b8-fdc0-4866-aa65-1034b91a86ac", + "createdTime": "2020-12-25T08:59:06.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d06a623-ae13-4639-811e-0c636c826e0f", + "createdTime": "2020-12-25T08:55:40.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9a0410f-e2b3-461e-b21b-e082e6fb8e85", + "createdTime": "2020-12-25T08:55:40.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "61d50871-8a3e-41da-8241-c5bf949ddef2", + "createdTime": "2020-12-25T08:55:39.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c2dd13c9-abe9-4054-95bf-ed4f4c34b095", + "createdTime": "2020-12-25T08:55:38.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0f651ae-30a0-4afb-96c5-b3626855f842", + "createdTime": "2020-12-25T08:47:01.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a985b0f8-2d34-4f70-a8a5-fef154121e00", + "createdTime": "2020-12-25T08:47:00.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35a76e63-f11f-43ed-b313-cfc14d93f37f", + "createdTime": "2020-12-25T08:46:59.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "479e76aa-f34b-48ac-be45-8f1af9dfd7c3", + "createdTime": "2020-12-25T08:46:59.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9dec1de-3069-4953-88a1-02f945331541", + "createdTime": "2020-12-25T08:26:13.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4281866e-d3d7-474f-9851-8459332f7dfc", + "createdTime": "2020-12-25T08:33:10.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2121dcc8-a5f1-49e3-bffc-e0b26ab3a3a8", + "createdTime": "2020-12-25T08:36:45.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb55db8e-ba3e-4f61-8f91-ae16d1efa41f", + "createdTime": "2020-12-25T08:36:44.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "11116714-f1bf-458a-8374-e65d87a2d137", + "createdTime": "2020-12-25T08:36:43.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69c38f4e-ad59-4672-9add-e8e00376f1ad", + "createdTime": "2020-12-25T08:36:42.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2aa0f77-6a73-4d28-a11a-7062262280b7", + "createdTime": "2020-12-25T08:33:10.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c7a32716-29c0-4f86-a5a6-5a2a1e33c697", + "createdTime": "2020-12-25T08:33:09.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bca9531-f861-4620-a92d-2a51a0a7a76d", + "createdTime": "2020-12-25T08:33:09.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8dadeec-a6a6-4899-8712-ff39628ccb95", + "createdTime": "2020-12-25T08:26:12.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e50c9ef-5567-43dc-9484-d53c82a697d8", + "createdTime": "2020-12-25T08:26:11.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "816cbb81-dc0a-43ba-8d63-edfa379b8ce7", + "createdTime": "2020-12-25T08:26:11.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c8e3fc5-3fbb-47fc-ba8f-05aa21262774", + "createdTime": "2020-12-25T08:22:48.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "caad3f90-77aa-4263-b76e-407ed4a09a1e", + "createdTime": "2020-12-25T08:22:47.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf12817-e10a-42e9-bcbd-f47d2b22551c", + "createdTime": "2020-12-25T08:22:46.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "11602a67-36ae-42cd-bba8-9d6d3e4953b4", + "createdTime": "2020-12-25T08:22:46.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a43fbdc-ab73-4e99-8c84-d4e386e808f8", + "createdTime": "2020-12-24T20:15:36.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dbb9a780-4430-4c43-b1f8-054061f194e2", + "createdTime": "2020-12-24T20:15:35.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "edde2701-d541-4a18-94de-2e9911647287", + "createdTime": "2020-12-24T20:15:35.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7db4b3f5-c639-433b-858f-1b777982ee73", + "createdTime": "2020-12-24T20:15:34.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "068f4d52-c4bf-49b6-87c7-681b7ec3f975", + "createdTime": "2020-12-24T20:06:44.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7c7da011-2846-4ab7-8270-c27e0c6dc809", + "createdTime": "2020-12-24T20:05:42.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6c7cfa6-becf-46f8-824b-7fe78ae0b4c2", + "createdTime": "2020-12-24T20:05:19.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f12a119b-da05-446a-8178-56576243a02d", + "createdTime": "2020-12-24T20:08:53.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7130810d-019c-40b4-bf35-a3a8a0489a99", + "createdTime": "2020-12-24T20:04:48.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3556c2cb-fc0d-4842-baa1-6184bead8fda", + "createdTime": "2020-12-24T20:08:54.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7474e4ca-c62e-4d61-a256-e99389c6011a", + "createdTime": "2020-12-24T20:08:52.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8bcb59b9-38f4-4842-b708-346d10515e85", + "createdTime": "2020-12-24T20:08:52.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a50f775d-e969-425d-aa66-30043fb1f31d", + "createdTime": "2020-12-24T20:06:45.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b46a6857-a63b-4675-93c6-092e76f37169", + "createdTime": "2020-12-24T20:06:43.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "518c7b4c-a8f0-4757-a1dc-b63d864998db", + "createdTime": "2020-12-24T20:06:43.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ed2b8c3-9d1e-4e99-8a65-bdf64ab9aee6", + "createdTime": "2020-12-24T20:05:42.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f36f7e8a-5b59-48ea-952d-f312385d0d6b", + "createdTime": "2020-12-24T20:05:41.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6eaa4933-fdef-4df4-a329-6e78319e5e26", + "createdTime": "2020-12-24T20:05:40.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47171d57-32e5-45f0-94f4-cd5e50e817a1", + "createdTime": "2020-12-24T20:05:20.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c5d6e224-024c-4990-8580-11d96fcf9d3d", + "createdTime": "2020-12-24T20:05:18.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "169f1de2-36ec-4512-9ce4-63ce18c1fb23", + "createdTime": "2020-12-24T20:05:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4faff2e-461b-4861-a64f-2024a9568d3a", + "createdTime": "2020-12-24T20:04:49.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7e0bf8f7-6b6e-4817-911b-2b092f695d6b", + "createdTime": "2020-12-24T20:04:48.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "38e45064-6a9f-4b6c-8d62-d6d9756ff8b2", + "createdTime": "2020-12-24T20:04:48.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "42e16f55-a418-4ae9-8da9-ea8da6631b2b", + "createdTime": "2020-12-24T20:04:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "fe4c8aa9-6329-4c1a-a355-4df07d23949b", + "createdTime": "2020-12-24T20:04:47.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e0cf5c20-842c-4ee8-a25d-1217ad645473", + "createdTime": "2020-12-24T20:04:47.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1b7604e-0695-4555-914d-9afd9f90e8d4", + "createdTime": "2020-12-24T20:04:46.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de72de46-c2d3-43df-bf7d-119632f6301e", + "createdTime": "2020-12-23T20:57:14.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7e00fed1-e379-4016-a69c-4d0ffc44020c", + "createdTime": "2020-12-23T20:55:55.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "89d033c3-b29e-499d-9ba3-61477be156b3", + "createdTime": "2020-12-23T20:55:49.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1695baef-106c-4250-9545-27ec27ee13c3", + "createdTime": "2020-12-23T20:55:41.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "31fcaa73-0f9e-49a5-80c7-82d0d3938564", + "createdTime": "2020-12-23T20:59:21.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6537f314-72af-4a46-8254-8c988e600e6d", + "createdTime": "2020-12-23T21:02:17.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3aa2d7eb-6d83-49d2-b1f1-1b8e8d404ce8", + "createdTime": "2020-12-23T21:02:16.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9972891b-4ec2-4ed1-8684-4c560322b6f1", + "createdTime": "2020-12-23T21:02:16.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "61dee648-34cd-4d7e-845a-2bcd8dcdcc29", + "createdTime": "2020-12-23T21:02:15.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "271541ce-831c-4b60-9efd-5f3cfd560355", + "createdTime": "2020-12-23T20:59:21.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0bb80b85-dcb0-434d-b38f-b03de71606ca", + "createdTime": "2020-12-23T20:59:20.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7b201aae-2290-4eff-9c19-cfde840e505c", + "createdTime": "2020-12-23T20:59:19.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a317b0-5c8a-4430-90eb-3d6736241c9a", + "createdTime": "2020-12-23T20:57:15.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d987b8bf-1983-48b4-8cca-662fb034fe5f", + "createdTime": "2020-12-23T20:57:12.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f3cee7b2-bdd8-4887-a345-75571b06c06a", + "createdTime": "2020-12-23T20:57:11.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb393066-09a2-42d2-b4d1-4e84301f6b58", + "createdTime": "2020-12-23T20:55:56.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "61323aa0-5cd3-4799-b0fb-9e1130218214", + "createdTime": "2020-12-23T20:55:54.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3f6a47b2-8880-4980-ab36-e65279c757c1", + "createdTime": "2020-12-23T20:55:54.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc771f83-7120-4dd1-8ddd-298c2f297796", + "createdTime": "2020-12-23T20:55:49.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70932eba-4296-441b-8b55-8d5e7d986767", + "createdTime": "2020-12-23T20:55:48.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7dee9cf5-da65-4b97-9eef-8a358c676ca0", + "createdTime": "2020-12-23T20:55:47.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d6445f5-7c8f-4983-8e42-91a3d8b57d15", + "createdTime": "2020-12-23T20:55:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "339376c1-ffa5-4d6d-b976-2e489e11acae", + "createdTime": "2020-12-23T20:55:40.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0ade10ed-63c3-4456-95f8-d1b233f37cc5", + "createdTime": "2020-12-23T20:55:39.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af85bbd3-0c7d-4295-830d-636b9f292da0", + "createdTime": "2020-12-23T20:55:28.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f57e46c8-87e3-4178-91af-26bfbb400234", + "createdTime": "2020-12-23T20:55:27.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3f791a9d-2a33-4be2-bece-86a8cba5cf40", + "createdTime": "2020-12-23T20:55:26.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6053b909-48d0-49bf-ba8b-a4ef4f46c1b2", + "createdTime": "2020-12-23T20:55:25.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "37732f37-1def-40e5-831b-ac529a35968b", + "createdTime": "2020-12-23T09:15:09.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41719929-c6fc-480e-ac1e-40875d7ca2ec", + "createdTime": "2020-12-23T09:15:09.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "66a1c652-1d16-4c7c-adfb-9bc06aa9e082", + "createdTime": "2020-12-23T09:15:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e691afe-b49e-4ec0-ba50-bc1dafec10e7", + "createdTime": "2020-12-23T09:15:07.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba31bc66-cbca-4c06-b314-26dbf02c627f", + "createdTime": "2020-12-23T09:11:29.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "33bb3722-83cc-48ed-a135-8f7939ca2d1a", + "createdTime": "2020-12-23T09:11:28.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "80f60981-19d3-45bd-a34b-a94e6104ac3b", + "createdTime": "2020-12-23T09:11:28.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5f214c22-adff-4e49-9e36-fb82c533a60b", + "createdTime": "2020-12-23T09:11:27.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65ef382d-bf8f-4a62-9bb1-bce0dcae694e", + "createdTime": "2020-12-23T09:00:03.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "057009cb-46f5-4084-8e7b-9fac9ccb6c54", + "createdTime": "2020-12-23T09:00:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dbb69e5e-3ce5-4fe7-81eb-96d2eaf0a8ce", + "createdTime": "2020-12-23T09:00:01.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f6b1cc3-2489-4522-80a4-7f7f6881b9cf", + "createdTime": "2020-12-23T09:00:01.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "89daaa3e-5a7d-4dc3-8aa2-69f33d44e95c", + "createdTime": "2020-12-23T08:56:24.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b45c5b1-f0f8-49cc-998f-f391b657d8aa", + "createdTime": "2020-12-23T08:56:23.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09bbcac7-81fc-4721-90e1-70846c0a0bd9", + "createdTime": "2020-12-23T08:56:22.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5837ed1b-0f3e-4ca8-87b4-e450935a2a7e", + "createdTime": "2020-12-23T08:56:21.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a6ac7d-8cb8-43f4-b32d-01fe191665b6", + "createdTime": "2020-12-23T08:47:47.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91fe007b-5d38-4669-bbf7-842c8f5d9736", + "createdTime": "2020-12-23T08:47:46.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "23538581-9115-4af6-bbe9-0989e266e343", + "createdTime": "2020-12-23T08:47:45.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a7aec005-b9ae-4fe6-b820-ccb62e716852", + "createdTime": "2020-12-23T08:47:45.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "655d24e9-dc15-4672-82f1-a5edeed36ea5", + "createdTime": "2020-12-23T08:24:41.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d7b984-973b-4cba-846a-53538bb5826c", + "createdTime": "2020-12-23T08:34:21.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1d3719d6-f5fa-4118-b053-2a3b49f36bda", + "createdTime": "2020-12-23T08:37:49.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f2dbfab9-056a-460e-a864-d53c758f8721", + "createdTime": "2020-12-23T08:37:48.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e85a6886-832a-4398-bfec-ee4bfe4d64c3", + "createdTime": "2020-12-23T08:37:47.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8fb381ea-cd25-4cb1-8fd9-b0d546662d21", + "createdTime": "2020-12-23T08:37:46.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "121ea8c0-9752-4e74-a70c-bbd09fcd15c7", + "createdTime": "2020-12-23T08:34:20.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b5450ce-eadd-4b65-9b45-8845be4a59b9", + "createdTime": "2020-12-23T08:34:19.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "332f2f4a-58bb-43d8-8c20-39c37fcfa083", + "createdTime": "2020-12-23T08:34:18.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b28bf906-ba52-4bde-819b-e87d45fe2050", + "createdTime": "2020-12-23T08:24:40.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5868f983-9bfd-4580-a405-067192b7899e", + "createdTime": "2020-12-23T08:24:39.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ccf48000-1df0-449a-a445-34637dd9ef7a", + "createdTime": "2020-12-23T08:24:38.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77abdf63-abc8-4f99-99f5-f70717a0bbc4", + "createdTime": "2020-12-23T08:21:06.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "454b7a57-ee4e-41c7-af70-aef6d91ce632", + "createdTime": "2020-12-23T08:21:05.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e78a2c14-5b98-4a98-a76c-2bd8dcb0660f", + "createdTime": "2020-12-23T08:21:05.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "124c4ac7-f8a4-4b30-99a9-00dfd165de51", + "createdTime": "2020-12-23T08:21:04.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aef428f5-3d71-4c27-b456-ab86b8b5bd2f", + "createdTime": "2020-12-22T20:41:06.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9b7e3df-fbca-41f0-9ee6-54508ffec82c", + "createdTime": "2020-12-22T20:41:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1383546a-0c4f-410c-a69a-7e27cbf6e51d", + "createdTime": "2020-12-22T20:41:04.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "957bb947-548b-481a-aa3f-2c7c3cbf0e95", + "createdTime": "2020-12-22T20:41:03.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42a9b275-d5bc-435a-89f2-58f4051d35ff", + "createdTime": "2020-12-22T20:33:34.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f3a3b1e3-ce4d-40d5-a72c-d544161abd4e", + "createdTime": "2020-12-22T20:34:35.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cdf73d2d-f045-4ecc-a56f-48e08ac4e43b", + "createdTime": "2020-12-22T20:35:11.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5c2c96ed-2a2b-4ffa-bf54-6896805b34c8", + "createdTime": "2020-12-22T20:39:05.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "671bf225-71ae-4b82-970a-6972ab8b2576", + "createdTime": "2020-12-22T20:34:55.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "489f6406-93bc-4dcc-94a3-54dd0621f32e", + "createdTime": "2020-12-22T20:33:42.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a7fc5352-987f-4a5a-bd82-a77e67999573", + "createdTime": "2020-12-22T20:39:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e2dc54ea-1fbd-4dfd-9b85-81c084c4c8bd", + "createdTime": "2020-12-22T20:39:04.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7105d376-82f4-4733-a89a-67c7ea66d5e5", + "createdTime": "2020-12-22T20:39:03.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee0ce34-6d99-4a43-9566-b51f85ac978a", + "createdTime": "2020-12-22T20:35:12.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f7841f1-f60f-4505-948a-373307cd08ce", + "createdTime": "2020-12-22T20:35:10.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0427dcc9-2f94-471f-abae-3108bc2412c9", + "createdTime": "2020-12-22T20:35:07.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82f2a35c-90ee-4ea7-aafc-0f324b46c88b", + "createdTime": "2020-12-22T20:34:57.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9817a6b9-0fe9-4611-b20a-690a93c2bc2a", + "createdTime": "2020-12-22T20:34:53.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fbeba7b9-ca0d-4309-b795-e4c5bf91d69c", + "createdTime": "2020-12-22T20:34:52.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42c50a9e-1012-45be-acb8-8656ed1d4b6b", + "createdTime": "2020-12-22T20:34:36.282Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a0c5c1dd-3950-4b8b-84bc-4dd17e9e0a73", + "createdTime": "2020-12-22T20:34:34.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9ebfdb96-98d9-404f-bec6-1b4905c8f70e", + "createdTime": "2020-12-22T20:34:32.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0bbb61c-83ea-4041-86dc-400dea6256ee", + "createdTime": "2020-12-22T20:33:44.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cb41e179-0b9b-4788-a94a-5c274d3387a8", + "createdTime": "2020-12-22T20:33:40.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b323e93c-48f4-4b00-a256-8fbf3ae2cbc2", + "createdTime": "2020-12-22T20:33:39.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "207d3d01-b193-4a36-b40e-a824effdd5c5", + "createdTime": "2020-12-22T20:33:36.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "494133f4-2576-4159-8cc8-cb43de2e9b72", + "createdTime": "2020-12-22T20:33:32.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8e031594-5754-4cfa-a906-c498d6f8cf51", + "createdTime": "2020-12-22T20:33:27.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61582416-c8b2-4259-a8df-c960a89343e6", + "createdTime": "2020-12-22T09:28:15.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24f8f4c2-7477-4e7d-80c9-16eb34d0c29a", + "createdTime": "2020-12-22T09:28:14.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a05d8f9-40aa-4951-8015-f1d1953e8a01", + "createdTime": "2020-12-22T09:28:13.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96792278-e3b6-47fd-a86a-41f2cdfa3381", + "createdTime": "2020-12-22T09:28:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62f805d2-d710-4222-ba2e-3e392dc06e11", + "createdTime": "2020-12-22T09:24:53.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "587aab10-93ae-488c-aa40-9c1d90662875", + "createdTime": "2020-12-22T09:24:53.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9394eac-b7f9-42d1-904f-00e361966943", + "createdTime": "2020-12-22T09:24:52.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9ed5706a-d087-4245-905d-ec71d60e5855", + "createdTime": "2020-12-22T09:24:52.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccd8fb88-1f5a-42da-98ff-b25f82315ff4", + "createdTime": "2020-12-22T09:17:02.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb13e7c-f42e-45d8-b631-b7a17909a652", + "createdTime": "2020-12-22T09:17:02.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e2bd4df2-d576-4f6e-b013-85778415e4e1", + "createdTime": "2020-12-22T09:17:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad7b3118-caf8-48eb-9e8a-9eefdb19fe23", + "createdTime": "2020-12-22T09:17:01.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48c72110-917c-482c-bfad-d06d3cb0c4f5", + "createdTime": "2020-12-22T09:13:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f886c0a9-abaa-48da-a17e-023a994998cf", + "createdTime": "2020-12-22T09:13:47.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "331d8f18-addd-42df-9a28-55d0860e43e4", + "createdTime": "2020-12-22T09:13:45.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2fd0087-032a-405b-95fc-81e1b058c9bc", + "createdTime": "2020-12-22T09:13:44.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c87b6ce-94a6-4f2e-a973-031e8269ab1f", + "createdTime": "2020-12-22T09:00:39.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb25ec64-3e3d-4900-b337-b17b09d48905", + "createdTime": "2020-12-22T09:00:38.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7764a419-9796-403b-96d3-b86781af166d", + "createdTime": "2020-12-22T09:00:37.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ab9ac661-9721-4f3f-b237-fbc9626bc073", + "createdTime": "2020-12-22T09:00:36.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83a928be-08b1-4aeb-866e-6469dc577878", + "createdTime": "2020-12-22T08:36:30.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91886741-c714-43f8-a994-e1900a0c7c75", + "createdTime": "2020-12-22T08:48:05.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "241a4128-5e39-4db0-86fd-3d8bffbcaf29", + "createdTime": "2020-12-22T08:44:46.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb06585e-fa92-44bc-8b55-389936e1fa63", + "createdTime": "2020-12-22T08:48:04.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0cafde42-d85f-4034-b8dc-995b1b125b85", + "createdTime": "2020-12-22T08:48:04.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bbcf92cd-32b2-477a-bb30-9e19afb30a37", + "createdTime": "2020-12-22T08:48:03.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "294c92cf-9ea5-45d2-b56c-a38d7324f726", + "createdTime": "2020-12-22T08:44:46.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "60cf03fa-278e-4f08-a64d-c7cdec0c5ab9", + "createdTime": "2020-12-22T08:44:45.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a44ca88d-c940-461e-9983-b848a527dfea", + "createdTime": "2020-12-22T08:44:44.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6bfaf4a9-070a-4af4-9c9c-a9a9e9aadac6", + "createdTime": "2020-12-22T08:36:29.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "56b1e4d3-51cc-40a3-82df-e327a8142651", + "createdTime": "2020-12-22T08:36:29.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf926732-204c-4d47-8d21-15cdee948c56", + "createdTime": "2020-12-22T08:36:28.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d375965f-8162-4901-a01e-5b859e0c1d97", + "createdTime": "2020-12-22T08:33:08.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8b43225-d36e-4cea-9805-917e13e0ed09", + "createdTime": "2020-12-22T08:33:08.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f04ab051-0209-4be9-a968-6dae5a6b9d8e", + "createdTime": "2020-12-22T08:33:07.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "437f365b-6f22-494f-ac32-799531bc18f6", + "createdTime": "2020-12-22T08:33:07.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c59609d5-61f8-47c8-add7-08e6358aa25f", + "createdTime": "2020-12-22T01:56:58.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c5ecd7b-91f3-4cf3-9ca7-e2170c1d44b5", + "createdTime": "2020-12-22T01:56:57.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a0152cfa-b0a2-4b86-83bb-82eba4150ffb", + "createdTime": "2020-12-22T01:56:57.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf3b2e07-fc2c-4b0a-b6c9-509c97278554", + "createdTime": "2020-12-22T01:56:56.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "030d6e2e-d0d4-4c2e-be86-c7f1af91808d", + "createdTime": "2020-12-22T01:52:58.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a5a13bd7-a0ba-4aee-8996-00a186a8822d", + "createdTime": "2020-12-22T01:52:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "391bf812-d2a0-4cfd-9e85-08439102f085", + "createdTime": "2020-12-22T01:52:56.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "184cafcd-0a6c-4d11-bd3b-9b082fa7ab9a", + "createdTime": "2020-12-22T01:52:56.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32fd172c-585f-477e-9e64-8ead8c3fd49b", + "createdTime": "2020-12-22T01:46:10.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f41eea61-6e23-4b76-ba2d-7e61dee3b98c", + "createdTime": "2020-12-22T01:46:10.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9f9e7e24-dcc4-463f-9a0d-fac8bda2487c", + "createdTime": "2020-12-22T01:46:09.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8c19a778-2a27-4eb9-a038-a753312285cc", + "createdTime": "2020-12-22T01:46:08.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd20251a-c2af-4530-a606-5aa13011edeb", + "createdTime": "2020-12-22T01:42:19.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "896cec48-1291-400b-9aa4-2b2eb5605476", + "createdTime": "2020-12-22T01:42:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39b08c09-e886-4ecf-a659-691c61a54522", + "createdTime": "2020-12-22T01:42:17.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f7d6579-1034-4427-a8ad-9b0bacd20f0c", + "createdTime": "2020-12-22T01:42:16.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46408c8c-a711-440e-9af3-a07be85092d6", + "createdTime": "2020-12-22T01:33:32.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c2d2350b-44a9-4072-99c2-1a437e2cbab4", + "createdTime": "2020-12-22T01:33:31.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9909321-90ea-41b1-bdd0-edfb97c55d6d", + "createdTime": "2020-12-22T01:33:31.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "488489f8-2cc2-4e95-a5db-9a9ef9056ca7", + "createdTime": "2020-12-22T01:33:30.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaa1251f-bc99-49ee-9e59-7f22ceebba15", + "createdTime": "2020-12-22T01:23:31.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8e43277b-3165-47aa-a21c-a6c448440dbc", + "createdTime": "2020-12-22T01:20:09.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41c19240-6e79-4996-9ca8-52d27d270b1a", + "createdTime": "2020-12-22T01:13:30.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f3a4264f-c691-4cd6-8bea-66ae5197ed7c", + "createdTime": "2020-12-22T01:23:29.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "891df15f-d72a-4c5f-b59e-db53b7298c88", + "createdTime": "2020-12-22T01:23:28.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "af864a46-16e9-48b2-8014-c6a345191e52", + "createdTime": "2020-12-22T01:23:28.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2dbd77a-40c8-4de8-a3a8-5d73e2652d82", + "createdTime": "2020-12-22T01:20:07.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c42e7d4-54d0-4c23-912d-9613e08aa9e7", + "createdTime": "2020-12-22T01:20:07.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a5f7e8f-fc0d-4b2e-ac5b-7aa6dd5870b3", + "createdTime": "2020-12-22T01:20:06.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419f69af-4434-4470-90fe-95c601408a15", + "createdTime": "2020-12-22T01:13:29.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43290590-f206-4d66-85c1-65a708f3cfd4", + "createdTime": "2020-12-22T01:13:29.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "580f2e65-b4fd-421a-876a-f8ca0eb63ae9", + "createdTime": "2020-12-22T01:13:28.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "997b195b-9a9a-46c0-8873-38d0c0b65c6c", + "createdTime": "2020-12-22T01:10:38.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "20ae3052-6a9a-43b1-b472-c63e9f7d0918", + "createdTime": "2020-12-22T01:10:37.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0f7f2807-16bc-4572-ab1a-758c953b091e", + "createdTime": "2020-12-22T01:10:37.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "656d1936-0248-455c-a6e1-bd9fc88a20f6", + "createdTime": "2020-12-22T01:10:36.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ad5c44b-eaea-4f61-9979-7e4c9dee770d", + "createdTime": "2020-12-21T20:06:58.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e4cad3d3-4432-4450-9968-ddf201292322", + "createdTime": "2020-12-21T20:11:41.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68213513-ecfc-4642-96c4-30e0d2d38e57", + "createdTime": "2020-12-21T20:05:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bc5dabdd-ee81-4440-b416-fce6727c0c2c", + "createdTime": "2020-12-21T20:10:11.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7b5edb6a-c0be-45b1-96bd-cf9ac8dc3b87", + "createdTime": "2020-12-21T20:05:05.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53f340b6-2ea9-45b2-be1e-adb49953edf1", + "createdTime": "2020-12-21T20:05:00.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ee9a3907-9d91-4587-93cb-437961dff2f2", + "createdTime": "2020-12-21T20:11:41.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f5b74891-32aa-40c4-95c4-906c7d3f49d1", + "createdTime": "2020-12-21T20:11:40.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "88d7c425-0302-4fac-bf37-b71289e6c409", + "createdTime": "2020-12-21T20:11:39.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8d67b49-044b-41b4-88ba-884d8e1e9857", + "createdTime": "2020-12-21T20:10:12.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70963599-7dac-47a1-8d71-fb45b408e080", + "createdTime": "2020-12-21T20:10:11.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d010d7aa-10db-482a-8165-8b2ca27f6c31", + "createdTime": "2020-12-21T20:10:11.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f576d28-0e21-4e2c-adc6-9f181f5a3639", + "createdTime": "2020-12-21T20:06:59.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ce75e4e2-e35c-4222-8634-4daf92e1aae0", + "createdTime": "2020-12-21T20:06:58.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ba24119-bb70-4c8c-b1f0-8aca6700b4ce", + "createdTime": "2020-12-21T20:06:57.346Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbf71920-a54f-41b2-a79d-eb1900d7ad4e", + "createdTime": "2020-12-21T20:05:38.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4434d7df-5c0e-4da8-9243-76e1bca52e78", + "createdTime": "2020-12-21T20:05:36.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "782791c2-0dfb-45ca-a305-78d023dc7b8c", + "createdTime": "2020-12-21T20:05:35.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7701327-2962-4f98-adc4-146bb9e7ad54", + "createdTime": "2020-12-21T20:05:06.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "51f570a4-915e-4720-bc7f-e36ef49c5b8b", + "createdTime": "2020-12-21T20:05:04.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ed7f4b88-350b-43d1-89bf-b17b0a696494", + "createdTime": "2020-12-21T20:05:03.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffb837a-1c8b-4d79-85a5-dba9c92537fa", + "createdTime": "2020-12-21T20:05:01.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c1b6e51c-fa2a-48a1-9ea9-d0289a16e4fc", + "createdTime": "2020-12-21T20:05:00.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6c093bb-1bb9-4012-bdc4-7f34d4aeda63", + "createdTime": "2020-12-21T20:04:59.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7992feb-b713-409e-a8ea-aa5173ec24ea", + "createdTime": "2020-12-21T20:04:53.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d5e144d7-3140-4860-81df-cd6e072fe130", + "createdTime": "2020-12-21T20:04:52.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "73c63d08-cb04-47c3-a1bc-690339937f1d", + "createdTime": "2020-12-21T20:04:51.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d293a698-37ae-458a-a986-46cb81ddb81c", + "createdTime": "2020-12-21T20:04:51.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a5b997b-a07d-4294-a2ec-8a95d9c02471", + "createdTime": "2020-12-21T09:16:21.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bce89fd-697b-4c24-b4df-aa0286ed4e90", + "createdTime": "2020-12-21T09:16:20.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2764deb1-6c2a-4446-adb0-8881dab5170c", + "createdTime": "2020-12-21T09:16:15.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ea30f813-a923-40ec-a626-2b06424a46fe", + "createdTime": "2020-12-21T09:16:14.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12b67cfb-dfa4-45df-b3c7-485924cf3a7d", + "createdTime": "2020-12-21T09:12:31.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa3759d9-e629-4252-9699-ef33fc54a812", + "createdTime": "2020-12-21T09:12:31.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0caf195a-b9ca-47dd-a05c-0c4382459d50", + "createdTime": "2020-12-21T09:12:30.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e97db822-38ea-4fa2-958b-b380b79deec1", + "createdTime": "2020-12-21T09:12:29.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6bc6bd2-e1e8-4c43-98bd-f8ecadcc29e4", + "createdTime": "2020-12-21T09:02:31.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a7f98f2-a65c-42c6-ae66-c7660aa49664", + "createdTime": "2020-12-21T09:02:31.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "14cc7aee-81fd-4b75-9246-af319d5fcbb8", + "createdTime": "2020-12-21T09:02:30.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc24d7dd-28e1-4f4f-a1ee-6fce4e4540f2", + "createdTime": "2020-12-21T09:02:29.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "379cda55-5f97-44dc-8060-12d11b929f0d", + "createdTime": "2020-12-21T08:59:09.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e7d947af-ea5c-4046-b9af-f00fdf541ed9", + "createdTime": "2020-12-21T08:59:08.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05ee127f-c5d8-4966-93b5-d686178719e9", + "createdTime": "2020-12-21T08:59:08.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ec406b95-d72c-4129-93cb-a2480ec56f45", + "createdTime": "2020-12-21T08:59:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e67bec9d-7363-44f0-b7ca-96255a4de836", + "createdTime": "2020-12-21T08:49:34.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45cd6fe9-9e83-47e9-9edc-b1cad6def5d2", + "createdTime": "2020-12-21T08:49:34.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "835b1362-c0b7-489b-8257-671d8f75f945", + "createdTime": "2020-12-21T08:49:33.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9f85f44-5c9f-4cb4-bcaf-d636f09ae352", + "createdTime": "2020-12-21T08:49:32.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3939b12-c0c0-4804-90f6-5e4b59db0e4a", + "createdTime": "2020-12-21T08:35:58.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88e26549-5d6b-4221-b3fc-e0008c26448f", + "createdTime": "2020-12-21T08:39:28.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4818551b-9a9f-45c7-9c47-03b86b1aae9d", + "createdTime": "2020-12-21T08:25:00.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d0a9c6b0-1f42-47f6-8e29-db0adb8b29a2", + "createdTime": "2020-12-21T08:39:27.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9434abd6-3feb-4081-9fab-90f7b606ce44", + "createdTime": "2020-12-21T08:39:26.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "91691658-aab4-45c2-9696-7698b2691464", + "createdTime": "2020-12-21T08:39:25.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd5f6c17-f9d2-4406-abc2-eb95f6c0a8ba", + "createdTime": "2020-12-21T08:35:57.927Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db7fbbdb-41f8-49ce-af8a-5a2605520264", + "createdTime": "2020-12-21T08:35:57.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6e0c5f91-de44-40b9-b7c4-65592b342d8e", + "createdTime": "2020-12-21T08:35:56.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4530377-c29b-498e-a1f2-8d3c3773add6", + "createdTime": "2020-12-21T08:24:59.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1170056b-e936-45e9-8c57-5c759aaad2c2", + "createdTime": "2020-12-21T08:24:59.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1326c27-5701-48d4-8575-ff1d97fd51d7", + "createdTime": "2020-12-21T08:24:58.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77df024c-0ab5-4ef1-8092-1f0d6063ddf3", + "createdTime": "2020-12-21T08:21:20.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ccc374-9fa5-4532-89a9-27043243707c", + "createdTime": "2020-12-21T08:21:19.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63d7b793-a5eb-45ed-964e-c0a1f914b4de", + "createdTime": "2020-12-21T08:21:19.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f53f4bfd-309e-471c-b77b-c47c69b6f22a", + "createdTime": "2020-12-21T08:21:18.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9663eef4-5478-405f-acb5-e652bb76ad06", + "createdTime": "2020-12-18T20:05:09.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f6368bb-86c3-4601-b57c-fe93662bf5cc", + "createdTime": "2020-12-18T20:04:35.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "63ce5795-2a00-47d4-86cb-f5e016367cf4", + "createdTime": "2020-12-18T20:12:32.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a94c549f-f76b-49bb-b00c-6c60c70a5c8c", + "createdTime": "2020-12-18T20:12:32.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6fbc6d60-d9c1-4e22-9946-c83faedad174", + "createdTime": "2020-12-18T20:12:31.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "44798a38-6683-45b9-a045-c91abcf4c640", + "createdTime": "2020-12-18T20:12:30.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c806877d-5789-4157-b089-8a5636379be1", + "createdTime": "2020-12-18T20:07:26.588Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5f8b3c02-3131-4476-b279-b6efa1c8af26", + "createdTime": "2020-12-18T20:10:21.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1758ed3a-c590-4b2d-8183-e1f7c2852b37", + "createdTime": "2020-12-18T20:05:10.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "754ccde0-da05-476e-9eec-e15c62e2e88e", + "createdTime": "2020-12-18T20:10:21.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be3bf3e4-bc5d-40b7-9e84-671863c43268", + "createdTime": "2020-12-18T20:10:20.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c9ad198a-004a-4789-909d-eb825c4eb9fd", + "createdTime": "2020-12-18T20:10:20.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8ec561c-c48d-4615-b15c-3594f7229d2a", + "createdTime": "2020-12-18T20:07:27.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1886af61-5ba7-41ba-9399-700a05c24531", + "createdTime": "2020-12-18T20:07:25.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e89d9100-fe6b-4464-8c46-c3063338a105", + "createdTime": "2020-12-18T20:07:25.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bcb83a9-1be8-447c-9d01-696a25734582", + "createdTime": "2020-12-18T20:05:15.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "64a585ee-2dfd-4510-90ab-847636559098", + "createdTime": "2020-12-18T20:05:10.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d8203b8e-3fd5-4b54-9c99-3e5c09ca1ac8", + "createdTime": "2020-12-18T20:05:09.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8dcbc710-89d0-4de5-802c-90c6d6142fa0", + "createdTime": "2020-12-18T20:05:09.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78a8f8d8-ebf7-420f-b8d8-d98c99cda553", + "createdTime": "2020-12-18T20:05:08.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dc434381-4746-4eb1-a0e3-e5eebe3ca765", + "createdTime": "2020-12-18T20:05:08.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d47c562-e927-4be1-ac21-b81c46da782d", + "createdTime": "2020-12-18T20:04:36.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d87a4f57-d301-4dca-b73a-1ea899be7fc2", + "createdTime": "2020-12-18T20:04:34.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "423ea879-afcb-4f34-9cc1-c462029d30aa", + "createdTime": "2020-12-18T20:04:34.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6c2aa646-d49e-485c-a35e-c7ba62727787", + "createdTime": "2020-12-18T20:04:29.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c5ea709-483e-48e4-80aa-a37dce600cac", + "createdTime": "2020-12-18T20:04:28.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce28c74-1e1e-46b4-a588-1393f5844636", + "createdTime": "2020-12-18T20:04:28.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c7303528-8773-45c7-bf96-97347e68ac4f", + "createdTime": "2020-12-18T20:04:27.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a39d9071-6ef4-4f4e-96d7-0303618bda62", + "createdTime": "2020-12-18T09:08:42.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69669442-1020-4b88-b421-73a971090452", + "createdTime": "2020-12-18T09:08:41.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf5ef7a4-bcc1-4f65-bf52-a64b0553ce29", + "createdTime": "2020-12-18T09:08:40.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "79b6629a-f91f-4b15-bbd1-60a4346139b1", + "createdTime": "2020-12-18T09:08:39.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c3572f8-d970-469f-8f3c-f7da5c9e6549", + "createdTime": "2020-12-18T09:04:58.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d048bc9-7202-4b6f-b2ce-a94ebc16c870", + "createdTime": "2020-12-18T09:04:58.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9044a46-6ac7-4014-a822-a193b392c022", + "createdTime": "2020-12-18T09:04:57.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6f3f0a6-3000-4b00-8325-0f2538a3e3a6", + "createdTime": "2020-12-18T09:04:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "133d4eb5-c12d-4ba9-a08d-7ec823d30936", + "createdTime": "2020-12-18T08:58:18.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "145d185f-c70a-4d1a-9c59-a135549cc6d1", + "createdTime": "2020-12-18T08:58:17.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99935685-0216-4153-941f-c059628068dc", + "createdTime": "2020-12-18T08:58:17.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c9d468e4-a468-4607-b8a1-ce002690c67a", + "createdTime": "2020-12-18T08:58:16.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "066b2370-f7a3-4d5a-a51e-ab78d186aaad", + "createdTime": "2020-12-18T08:54:19.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e95e206-6e83-4433-8de5-ff7c07afac96", + "createdTime": "2020-12-18T08:54:19.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f2252935-aac2-4d85-b358-192b8f1ca00c", + "createdTime": "2020-12-18T08:54:18.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce87c703-441f-490d-af03-1bb2c9f11258", + "createdTime": "2020-12-18T08:54:17.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "650f9646-2c36-49eb-9a6b-c4eb13974f77", + "createdTime": "2020-12-18T08:45:18.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c25627d5-969b-439c-856b-9e164bd4054a", + "createdTime": "2020-12-18T08:45:18.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32d2ce14-1158-4804-b05f-fcda9efcc8c7", + "createdTime": "2020-12-18T08:45:17.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "906d7d76-5934-4b1b-8ba6-c41fe631ba09", + "createdTime": "2020-12-18T08:45:17.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75f53536-b8b9-4dd5-a61f-47da8662d348", + "createdTime": "2020-12-18T08:32:01.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acdc17e8-a3ef-4c01-8f12-3265364a212e", + "createdTime": "2020-12-18T08:24:43.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c4568631-4d6c-4c2c-8314-a8cef88320f3", + "createdTime": "2020-12-18T08:35:33.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ee569a-e172-41c7-a5ed-0c474ff9b5bf", + "createdTime": "2020-12-18T08:35:32.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd687913-ffde-490c-9a7b-02d2653893f3", + "createdTime": "2020-12-18T08:35:32.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd7cfb47-1e31-425e-ab3e-1b703e0ef4c0", + "createdTime": "2020-12-18T08:35:31.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d99477d8-4db3-4c69-8c2d-fb0ef88f8dfe", + "createdTime": "2020-12-18T08:32:00.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c61a0a-e0b4-4a03-b698-20a93d61bc38", + "createdTime": "2020-12-18T08:32:00.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "996b42e3-88a7-41f8-89fd-0aa4ddb014a5", + "createdTime": "2020-12-18T08:31:59.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23d65c93-f4ad-4b11-9d20-081d7df691a8", + "createdTime": "2020-12-18T08:24:42.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25b3af23-028c-4c96-83cb-ac2b0db7e822", + "createdTime": "2020-12-18T08:24:41.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d48f827-4d7d-4036-af3d-f6b40d154c52", + "createdTime": "2020-12-18T08:24:40.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3507eaf9-baec-44e3-b39c-182408c61713", + "createdTime": "2020-12-18T08:21:02.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b7fc6e1f-964e-4ec9-82aa-5c3078410eec", + "createdTime": "2020-12-18T08:21:02.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7757a6f3-773c-495e-80e7-354740a790ea", + "createdTime": "2020-12-18T08:21:01.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c038a980-5328-4a95-8439-eff3c371aeb0", + "createdTime": "2020-12-18T08:21:01.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3edc139d-b44f-4ab6-bb14-7406bd1271dd", + "createdTime": "2020-12-17T20:08:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "283974a6-c947-4bf2-bb92-917bd84cd5be", + "createdTime": "2020-12-17T20:07:58.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9e02a74d-11fc-4680-8e09-08abddd311fe", + "createdTime": "2020-12-17T20:07:55.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2fec2e0b-dee4-43b7-b9b3-ee78ebc7c145", + "createdTime": "2020-12-17T20:11:40.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aa3c5f90-ee3a-47c4-b612-431f228a0e9b", + "createdTime": "2020-12-17T20:08:33.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c368c0c9-2be0-4cb8-a780-6b6140dca6ea", + "createdTime": "2020-12-17T20:14:32.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4a64fca-545e-4c76-a4ee-19a1b131e0d4", + "createdTime": "2020-12-17T20:14:32.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1395a3ac-b7c8-4650-b4ff-4d16456daa70", + "createdTime": "2020-12-17T20:14:31.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2f3f7a0f-a8c0-45d4-af19-7ff01442f13a", + "createdTime": "2020-12-17T20:14:31.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87945667-649e-481f-a311-9f879b3a7b0b", + "createdTime": "2020-12-17T20:11:40.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "18b848eb-f5f9-4c7b-a551-9d7a9d050919", + "createdTime": "2020-12-17T20:11:39.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6cd9410-adc4-4cdc-b750-5a4d21cff2fb", + "createdTime": "2020-12-17T20:11:38.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10439fdd-92c3-4712-8aa2-4284870994e9", + "createdTime": "2020-12-17T20:08:34.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7a8eef48-882a-4766-b731-a79aa45e2223", + "createdTime": "2020-12-17T20:08:32.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b975a83f-9d8e-4bd1-9a5f-9983628f45c1", + "createdTime": "2020-12-17T20:08:32.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61f08483-89ab-48bd-a588-7312cc484bce", + "createdTime": "2020-12-17T20:08:02.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "95d28482-f91f-4e31-b455-29a69291da4e", + "createdTime": "2020-12-17T20:08:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f81cdcc-ecd7-407d-8655-c16c652d08af", + "createdTime": "2020-12-17T20:08:00.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e8518d4-6596-4ec6-b658-c2672f18ef96", + "createdTime": "2020-12-17T20:07:58.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "123a2431-67bc-4ad7-9f9c-03ab89ead8a0", + "createdTime": "2020-12-17T20:07:57.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "795b8ce5-7e31-4c13-8943-7e59790e52a3", + "createdTime": "2020-12-17T20:07:57.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "897771e3-8ed8-4aef-89c5-ec2338702589", + "createdTime": "2020-12-17T20:07:56.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8817f5f2-5360-4738-b7ca-216c8e004a71", + "createdTime": "2020-12-17T20:07:55.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4060cb7f-d356-446d-8f27-eeebae6cbe5b", + "createdTime": "2020-12-17T20:07:54.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "243aed22-08fd-44f4-9d7f-223c5312ce59", + "createdTime": "2020-12-17T20:06:59.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0db74e27-9fba-4398-9f9c-b245f4d1c8cf", + "createdTime": "2020-12-17T20:06:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f1722f-8232-4fa4-9c3e-ee9f5ab94c26", + "createdTime": "2020-12-17T20:06:58.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "24b15149-faca-484e-b28a-eee6ecaeb8ae", + "createdTime": "2020-12-17T20:06:57.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "194ce8fe-f3da-47db-9cd5-93acce1b419e", + "createdTime": "2020-12-17T09:11:13.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c54e6221-c744-488a-8df6-e5adf3f6b65c", + "createdTime": "2020-12-17T09:11:12.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0a28eca4-dfe4-49b4-b02d-1e05f0112c03", + "createdTime": "2020-12-17T09:11:12.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4388c5ab-daf5-4da9-9eeb-2e5729c0a691", + "createdTime": "2020-12-17T09:11:11.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ecedb7d-61d4-4176-8f3d-ce8e3d8e8935", + "createdTime": "2020-12-17T09:07:15.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "78bc8e40-8b44-450f-855f-1a3d186810d7", + "createdTime": "2020-12-17T09:07:14.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd204b1-f588-4aef-9409-9b6efa8c9457", + "createdTime": "2020-12-17T09:07:13.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "616c6807-89bb-415b-8f2b-24f40c8c3512", + "createdTime": "2020-12-17T09:07:13.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "298b0899-915b-4b85-a842-d37357f8f1b4", + "createdTime": "2020-12-17T08:59:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8692396a-0f72-42ef-a6a4-3f84223cb1ef", + "createdTime": "2020-12-17T08:59:18.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d8b95612-0b12-4a6c-a846-089500758c95", + "createdTime": "2020-12-17T08:59:17.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "575adccf-5861-4845-9793-36574ffdd83f", + "createdTime": "2020-12-17T08:59:17.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8a14622-12d6-4b6d-a756-52cce65c88d0", + "createdTime": "2020-12-17T08:55:24.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "809d3ad6-94a4-40a6-b91e-7ff23fd75198", + "createdTime": "2020-12-17T08:55:24.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3fb9bfbc-5448-47d4-abdd-a075568da318", + "createdTime": "2020-12-17T08:55:23.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bd427dd3-9986-436a-bf28-56ccd01dc634", + "createdTime": "2020-12-17T08:55:22.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0c90228-6b66-434f-90e8-6d4b6f6c8906", + "createdTime": "2020-12-17T08:46:17.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "18477b5e-57db-4046-a685-152a1fcda513", + "createdTime": "2020-12-17T08:46:16.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "46efc1fd-fe21-4300-a460-0184b8d4d98e", + "createdTime": "2020-12-17T08:46:16.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2bf9e06-dd60-4c63-8c31-7de3eba60cbe", + "createdTime": "2020-12-17T08:46:15.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8d85bd3-94c5-4ef1-acdc-9b19346c1c3e", + "createdTime": "2020-12-17T08:33:05.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3e502217-3054-44e0-9997-6d1ee387f8bc", + "createdTime": "2020-12-17T08:36:45.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d5e72cc-56f2-46d8-8f6d-83d0a796cb36", + "createdTime": "2020-12-17T08:36:44.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8cfa28c3-67b5-48d9-9353-cd9c9ba5e06b", + "createdTime": "2020-12-17T08:36:43.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f24c42c2-3a9b-4a4e-a19d-7d8b21435c1a", + "createdTime": "2020-12-17T08:36:42.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2039ef3f-2388-4e8d-8db1-e45e255716ff", + "createdTime": "2020-12-17T08:21:26.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9fe7b3e-2b44-470b-81b3-b2d21f6f8cbb", + "createdTime": "2020-12-17T08:25:24.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c8d7f13-aeb4-4784-ad33-64e758850bf9", + "createdTime": "2020-12-17T08:33:05.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "549aec3f-d8cc-44e4-b996-35a5b458105a", + "createdTime": "2020-12-17T08:33:04.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8d92be9-c0b1-44fd-84ae-682031ec4de8", + "createdTime": "2020-12-17T08:33:03.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92affdca-1402-473c-8e86-847f2b6b0dd4", + "createdTime": "2020-12-17T08:25:24.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d9873558-0e44-4acc-a56c-e3b139745aee", + "createdTime": "2020-12-17T08:25:22.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37404930-c2ec-4c2c-8fd3-7b07ed72c212", + "createdTime": "2020-12-17T08:25:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7125acd-f3b5-425a-bbcc-489539852dc0", + "createdTime": "2020-12-17T08:21:24.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "927735ba-5135-425e-a01b-c7fa6f2b1611", + "createdTime": "2020-12-17T08:21:22.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "522e8b5d-c29c-42c4-ba36-fd1d28abed00", + "createdTime": "2020-12-17T08:21:16.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ee6766e-a2de-465b-be63-fe689cc5902b", + "createdTime": "2020-12-16T20:05:22.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "09b509df-a8aa-481e-b986-571030f2faad", + "createdTime": "2020-12-16T20:05:12.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d4e0f28-5ee5-4540-9650-899219518f29", + "createdTime": "2020-12-16T20:12:08.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "599582a5-57c9-4fea-bdbc-faad803b5fa1", + "createdTime": "2020-12-16T20:06:49.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "46affe3e-19ba-485b-ab10-f190051eabad", + "createdTime": "2020-12-16T20:05:45.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3cbaa889-9c5d-4335-a1e9-3c867ac4f3bb", + "createdTime": "2020-12-16T20:12:37.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "552b9a99-c493-49bf-87db-2ad1a70ff440", + "createdTime": "2020-12-16T20:12:36.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "55373cb3-72c3-4b49-9796-970f0cc3f7c5", + "createdTime": "2020-12-16T20:12:34.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fd1c94e8-c946-4e9a-ac1f-c6d83615d3cd", + "createdTime": "2020-12-16T20:12:33.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4316407e-eb27-4591-af11-95b346dc3f10", + "createdTime": "2020-12-16T20:12:08.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a3cd4b76-2cd8-4021-801a-34159cda0e84", + "createdTime": "2020-12-16T20:12:07.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1addfd55-da55-4afe-9265-57f3ea1b1a3c", + "createdTime": "2020-12-16T20:12:07.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dda56b7e-6fb9-4d70-a23d-8a288024c0d6", + "createdTime": "2020-12-16T20:06:49.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ecd45ee0-0d67-498c-94ac-f2fcc6a3fd37", + "createdTime": "2020-12-16T20:06:48.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bd0d0615-ae7b-42ab-b925-b25039d8aa3f", + "createdTime": "2020-12-16T20:06:47.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87c24904-6e2e-4dcd-923b-fd52bc8a75b8", + "createdTime": "2020-12-16T20:05:46.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e8f1bbde-23e3-4773-b42b-20915696d3c0", + "createdTime": "2020-12-16T20:05:44.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e94f7ebc-0e37-416f-9d1a-d091f953f224", + "createdTime": "2020-12-16T20:05:43.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c04583e7-5040-488a-a487-ccea42902a71", + "createdTime": "2020-12-16T20:05:23.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f0bd55c0-1ad8-4722-8263-a6de4a46fa44", + "createdTime": "2020-12-16T20:05:20.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "20ffbd26-892e-4b78-935a-55b056ccf52e", + "createdTime": "2020-12-16T20:05:19.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94eb3d95-402d-407b-9741-fefd6432e286", + "createdTime": "2020-12-16T20:05:13.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c8dae370-e7f9-40f9-ac09-038782b1d30a", + "createdTime": "2020-12-16T20:05:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b040eab4-8841-49be-92ff-2e6161ffdb87", + "createdTime": "2020-12-16T20:05:11.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3ba8286-7e1f-4929-b3de-e98ec50e97c1", + "createdTime": "2020-12-16T20:05:08.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "58a8c495-75b4-474c-80d3-5196152eeb5d", + "createdTime": "2020-12-16T20:05:07.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "12ae16cb-b418-477f-9c73-110be6ff2a26", + "createdTime": "2020-12-16T20:05:07.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "53ccc287-b680-461c-9118-356566b55c57", + "createdTime": "2020-12-16T20:05:06.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0b851d8-7b34-4ce9-bffc-4963c7222c76", + "createdTime": "2020-12-16T17:37:38.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e70019a1-0d0c-4741-bbeb-8326641d1b9c", + "createdTime": "2020-12-16T17:37:37.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f159de-a1a4-40f6-aa71-cc6efe5d9515", + "createdTime": "2020-12-16T17:37:36.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a7eccf5-aaeb-4779-b4cc-f28fe6cd0262", + "createdTime": "2020-12-16T17:37:35.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d0c9ab3-abd7-4b00-8fbe-67fe070cd37f", + "createdTime": "2020-12-16T17:34:02.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f1f7090-edb7-4ed4-bc06-5a603d036073", + "createdTime": "2020-12-16T17:34:02.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0e67ddd7-eb00-46ac-aafc-d4b66484ef1e", + "createdTime": "2020-12-16T17:34:01.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "03aa6e5d-77fa-46d8-9617-06f70f66c606", + "createdTime": "2020-12-16T17:34:01.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761061b2-6fc2-4750-a26b-1840eb4ad7fb", + "createdTime": "2020-12-16T17:27:13.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89eb8328-7a04-429b-a82e-eaf75442566d", + "createdTime": "2020-12-16T17:27:12.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf6f5b9-9f5a-4e87-954b-1bf28ab6509d", + "createdTime": "2020-12-16T17:27:11.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b1609865-4cbf-491d-9280-27f597292799", + "createdTime": "2020-12-16T17:27:11.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e927ae7a-2717-46ee-9473-b0e8ee3c247d", + "createdTime": "2020-12-16T17:23:44.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e43fdd60-d1d3-4353-b058-88a21be5a688", + "createdTime": "2020-12-16T17:23:43.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "978b4db7-5981-4c2b-a5e6-9c886e896f6a", + "createdTime": "2020-12-16T17:23:42.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc40a2cd-629d-4813-877f-32d5dd0780be", + "createdTime": "2020-12-16T17:23:41.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4a65a5d-ab09-4fc1-a601-9178b8575ca9", + "createdTime": "2020-12-16T17:13:23.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c44a85ba-3410-447a-972f-58bde62f2142", + "createdTime": "2020-12-16T17:13:22.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25f91160-b6ee-424b-9ddf-201872235508", + "createdTime": "2020-12-16T17:13:21.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59219346-7a2f-46b5-bf46-90bab052cdeb", + "createdTime": "2020-12-16T17:13:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f993cb7-ce37-4fe0-9809-7b8a86db9a05", + "createdTime": "2020-12-16T16:57:23.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be4439aa-15b0-4eea-ae16-d23361d3fc54", + "createdTime": "2020-12-16T17:01:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2926a1ca-791d-4a4c-b272-ab57142d22f1", + "createdTime": "2020-12-16T17:01:06.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7759f9c5-4eed-42ea-b9b4-eb56a3cca475", + "createdTime": "2020-12-16T17:01:06.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "01b6ac49-6bf3-41ff-85e9-b25380761667", + "createdTime": "2020-12-16T17:01:05.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e679fd08-b07e-4fe4-b920-b7f9c4d81124", + "createdTime": "2020-12-16T16:45:44.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7e155c3a-7333-481b-89cf-f5326db5dcb1", + "createdTime": "2020-12-16T16:49:41.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5df29647-fac4-4a35-b1fa-a9ea6212c13e", + "createdTime": "2020-12-16T16:57:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1c4e3799-c0fb-407a-a3ac-ae0ddcf0b7d3", + "createdTime": "2020-12-16T16:57:22.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1f9c4727-7986-409f-99b2-e4a84c63c337", + "createdTime": "2020-12-16T16:57:21.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4499406-3e59-4d37-972b-80250c66f4a6", + "createdTime": "2020-12-16T16:49:38.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "beb769b2-4f4c-4298-a236-a16cc3b96dc4", + "createdTime": "2020-12-16T16:49:37.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b0b70a99-e0b6-4771-9733-df68bcdcdee0", + "createdTime": "2020-12-16T16:49:34.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdcfdd58-472f-4995-bc76-c19a38217012", + "createdTime": "2020-12-16T16:45:42.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8ead6503-bf85-475a-a0d4-3391e67a6fb5", + "createdTime": "2020-12-16T16:45:40.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bea06748-7b01-40db-b8e1-6c1d5cafcc28", + "createdTime": "2020-12-16T16:45:36.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e5a30a4-a2aa-448e-a23b-33015b266ced", + "createdTime": "2020-12-16T10:10:15.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd6c5734-d463-4514-b7b9-6237adb73cf8", + "createdTime": "2020-12-16T10:10:14.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f63d9736-7b8c-4210-b693-8afe57c904d4", + "createdTime": "2020-12-16T10:10:13.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa6c9012-ab4c-4edc-90be-bdf094bff7ad", + "createdTime": "2020-12-16T10:10:13.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "376d60f8-c3ab-43b5-9127-c9ae2f0a42f0", + "createdTime": "2020-12-16T09:58:30.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bb30db51-476a-43e9-b21e-080163b60de2", + "createdTime": "2020-12-16T09:58:30.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "529e5a10-60b3-4e6b-8596-c460ba2845da", + "createdTime": "2020-12-16T09:58:29.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b22a10a6-8748-4ac6-8f0b-b953fc62ca26", + "createdTime": "2020-12-16T09:58:28.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c170b77f-1059-4058-a4d1-f6d075f27ed4", + "createdTime": "2020-12-16T09:42:43.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ccbeff1f-b0ae-4b91-a3bf-1f06cc068c03", + "createdTime": "2020-12-16T09:42:43.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9dceb65-a17c-4b72-b037-78c133a6a19d", + "createdTime": "2020-12-16T09:42:42.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5b3b0607-8af0-4a93-ad5c-1c04fdce94b7", + "createdTime": "2020-12-16T09:42:42.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb558c25-917d-4c3d-9a0e-01f365fa8f05", + "createdTime": "2020-12-16T09:34:36.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5318354a-3323-4989-beac-18ee524e09c2", + "createdTime": "2020-12-16T09:34:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32043475-9dfe-4c48-82c0-e9b125ac9e0e", + "createdTime": "2020-12-16T09:34:34.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc690e93-6ffd-41e6-b6e7-055827f70e32", + "createdTime": "2020-12-16T09:34:33.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6002afcd-3400-430a-bd8b-7070e4296afd", + "createdTime": "2020-12-16T09:08:31.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ae77a9-ab26-4745-ae21-28bac1c41abf", + "createdTime": "2020-12-16T09:08:31.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a9bae51b-1b91-4e6f-906b-a9bfd6e7dd37", + "createdTime": "2020-12-16T09:08:30.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4869dcb-f76c-4404-8e60-148e0a9219e7", + "createdTime": "2020-12-16T09:08:29.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbcf0a9d-6ab3-4ed5-9835-a96992ea3cc3", + "createdTime": "2020-12-16T08:48:47.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17400839-0e27-4c33-86c1-b6ac31bd11a3", + "createdTime": "2020-12-16T08:48:46.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8fa1cfe5-e360-4819-9674-48e169d36372", + "createdTime": "2020-12-16T08:48:46.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc608b97-6194-440a-8f42-f3da9ba6ffa9", + "createdTime": "2020-12-16T08:48:45.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ddfae7a-1f91-418f-995b-80e43f10febc", + "createdTime": "2020-12-16T08:38:44.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5e5d7522-7441-47dd-8197-ffdec59b0044", + "createdTime": "2020-12-16T08:38:44.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc8fd2f-419f-4679-8443-30db4d35d19b", + "createdTime": "2020-12-16T08:38:43.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf9fc5bd-d7dd-4315-b0c4-6609d7cda3c6", + "createdTime": "2020-12-16T08:38:42.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23fc0eef-ce3e-477e-b3e1-61d9e7bbef57", + "createdTime": "2020-12-16T08:29:03.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cfc252ab-16ee-4a03-8645-f5e5eb0e5110", + "createdTime": "2020-12-16T08:29:02.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b98929c0-f55d-48f2-9964-cb475b26fe49", + "createdTime": "2020-12-16T08:29:02.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "183934a0-a3ba-4f27-b6a4-2685214081c7", + "createdTime": "2020-12-16T08:29:01.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba313fcb-21d5-4f6e-949c-0166084088ff", + "createdTime": "2020-12-16T08:23:06.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bc87b35-1e92-49d3-8932-964809a836a9", + "createdTime": "2020-12-16T08:23:06.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac396330-5fe8-4484-b184-4ce917fe59ec", + "createdTime": "2020-12-16T08:23:04.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a2abd210-4c26-4fec-b6a5-b8439817725d", + "createdTime": "2020-12-16T08:23:04.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ca0c55b-6ef2-4ae4-a2a9-0dbaed305920", + "createdTime": "2020-12-15T20:15:37.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1ec9678c-691c-43d7-b09e-bf9532600df7", + "createdTime": "2020-12-15T20:15:36.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "740bc226-7c41-46dc-8160-f55a27e8c1a7", + "createdTime": "2020-12-15T20:15:35.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1f99a0e5-47f3-490b-934f-0aac24a6b70e", + "createdTime": "2020-12-15T20:15:35.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "871b26cb-19f2-4659-a869-d93d8ec095ab", + "createdTime": "2020-12-15T20:12:19.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ab4179a-16e1-48ac-b850-2c82b2870612", + "createdTime": "2020-12-15T20:12:18.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8fd4a2f1-e11a-4872-a363-736f610f0457", + "createdTime": "2020-12-15T20:12:17.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "efb5e291-9502-4bcd-99b9-e29bab03f1fb", + "createdTime": "2020-12-15T20:12:16.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2231c3c3-726c-4050-9463-72834a3d9438", + "createdTime": "2020-12-15T20:11:50.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e40524f7-3c6e-4518-bee4-9d01f82e63da", + "createdTime": "2020-12-15T20:11:49.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e0ab132b-1c3d-431e-8e55-e403b61934b7", + "createdTime": "2020-12-15T20:11:48.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8afd0247-b76b-4393-8fd8-3100a7fe51c9", + "createdTime": "2020-12-15T20:11:47.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8054194b-6e98-408e-9962-2b32900ff0bc", + "createdTime": "2020-12-15T20:06:47.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c1e2ced-7df3-4947-bdd0-6a59091f6367", + "createdTime": "2020-12-15T20:06:45.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a952b1cb-d503-4cb4-b613-3a8f113af433", + "createdTime": "2020-12-15T20:06:43.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1d74bf10-735d-4131-9688-421c39a15caa", + "createdTime": "2020-12-15T20:06:41.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a052766f-8252-4414-940e-382f2776dde3", + "createdTime": "2020-12-15T20:06:41.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1d337188-7df5-4fe5-aacf-1a0a688e55c8", + "createdTime": "2020-12-15T20:06:39.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "26a35a78-0ed3-456b-9611-b1cd749066cd", + "createdTime": "2020-12-15T20:06:36.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9045b945-8f45-43e5-be06-774eef831284", + "createdTime": "2020-12-15T20:06:32.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21aa0998-91fa-41ce-b153-7a05a6d6586b", + "createdTime": "2020-12-15T20:06:02.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b1f8fa18-da67-4c80-bfe5-5bebaed61982", + "createdTime": "2020-12-15T20:06:02.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "974597a5-ebb2-46fd-b2bd-a71051004f2c", + "createdTime": "2020-12-15T20:06:01.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0c3379f-a01a-4ccb-82a0-1f267ee74750", + "createdTime": "2020-12-15T20:06:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ced23829-e176-4dde-9593-f53e281b7ab6", + "createdTime": "2020-12-15T20:05:46.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b9df66a6-cacd-414c-b53b-08c02ebb78d4", + "createdTime": "2020-12-15T20:05:45.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f7c60f8a-4ee2-4164-9e1e-39ff62a8162a", + "createdTime": "2020-12-15T20:05:42.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b07dee7-004b-4a2e-9a0b-a7a6ed9f5dc0", + "createdTime": "2020-12-15T20:05:42.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1752cbf0-6b1d-4e19-a556-5280211b8d15", + "createdTime": "2020-12-15T09:18:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e2457cb-a3f7-4635-b142-35dcb49ad032", + "createdTime": "2020-12-15T09:18:44.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc05d5a2-ee02-456b-a809-19ccc324e938", + "createdTime": "2020-12-15T09:18:43.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fafcdda2-897e-4ec9-93a0-cfdb01b66f21", + "createdTime": "2020-12-15T09:18:42.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "826ab393-4099-450b-b0fd-05f462f00d64", + "createdTime": "2020-12-15T09:15:00.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9bdd6465-43c2-4471-9413-cc4af2cbaad4", + "createdTime": "2020-12-15T09:14:59.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7b01663-9937-4cd7-bc0e-1e5462c2cb7b", + "createdTime": "2020-12-15T09:14:58.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "113c94e3-d49f-408f-992a-1882edf5060c", + "createdTime": "2020-12-15T09:14:57.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9cb4deb-0b4c-4aaf-83c8-1f7f2ea1c145", + "createdTime": "2020-12-15T09:04:06.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bc01276e-8437-43a7-b19d-601d89c1c892", + "createdTime": "2020-12-15T09:04:05.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "009eaf54-3a07-46a8-969e-a689ab4ff5da", + "createdTime": "2020-12-15T09:04:05.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5bd7089b-f0ac-414f-abc2-ed5c36ceda5a", + "createdTime": "2020-12-15T09:04:04.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da58f497-4fee-4111-b6e0-67f44f3e5452", + "createdTime": "2020-12-15T09:00:09.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66a0ae88-92bc-48bb-8516-b6fa716918ec", + "createdTime": "2020-12-15T09:00:08.75Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf4dae37-bfef-4163-bae0-6d056eb2793b", + "createdTime": "2020-12-15T09:00:08.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e87a25f-af39-4d27-a40c-7a811e09107c", + "createdTime": "2020-12-15T09:00:07.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4d2b141-d372-4906-80a6-05113d1ae722", + "createdTime": "2020-12-15T08:50:44.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a06f5988-2d42-405c-b97f-8c7dab137b2e", + "createdTime": "2020-12-15T08:50:43.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1628ce8-70d9-46fe-886d-f6895ed4c6ac", + "createdTime": "2020-12-15T08:50:43.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "82ebbecb-27c2-46e8-b371-b3f96f6ab1ab", + "createdTime": "2020-12-15T08:50:42.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef4958b2-f4c5-47a2-acbd-f82c1e8a99b5", + "createdTime": "2020-12-15T08:35:37.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1be057c6-e7fd-46c8-a6f5-5ad462d45e66", + "createdTime": "2020-12-15T08:35:36.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67f9fa90-9a96-489b-9ed0-b284213d81b7", + "createdTime": "2020-12-15T08:35:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e760e518-2c34-4128-b559-4bf114ff2427", + "createdTime": "2020-12-15T08:35:34.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd53f617-b376-4a44-91b9-d93054d41663", + "createdTime": "2020-12-15T08:31:33.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7a527e8b-35bc-471e-bb01-8c8d38dd9053", + "createdTime": "2020-12-15T08:31:33.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca28843-4633-453e-a0bc-80fce622b15d", + "createdTime": "2020-12-15T08:31:32.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdca9fd9-735f-4622-81bd-378a2ac04de1", + "createdTime": "2020-12-15T08:31:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff27d1b-e37d-4c53-8d75-4187d695056a", + "createdTime": "2020-12-15T08:23:55.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dac40d6-cff6-4626-aad2-b87ae9ed6ba8", + "createdTime": "2020-12-15T08:23:55.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "68ecb4ac-908d-4419-9165-fa88a140d1b9", + "createdTime": "2020-12-15T08:23:54.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "21af922e-0e91-47e7-8baa-0b5f94d8e25d", + "createdTime": "2020-12-15T08:23:54.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7dcfc795-24d0-4bec-af06-8974dc1cd49d", + "createdTime": "2020-12-15T08:20:52.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd26f148-54fe-45cb-8dba-befdeafb7603", + "createdTime": "2020-12-15T08:20:51.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f02260e1-8ba6-4bfa-9555-c6b6e76f21e5", + "createdTime": "2020-12-15T08:20:50.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3c6b410-7ace-4639-adb4-e71498ceb10e", + "createdTime": "2020-12-15T08:20:49.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, { "feedbackId": "5820d88b-5d9c-4d28-855f-226e16c543ac", "createdTime": "2020-12-15T01:34:48.519Z", @@ -67448,6 +122248,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "53579725" + "RandomSeed": "807809979" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(False)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(False)Async.json new file mode 100644 index 000000000000..2f310eb95dc0 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(False)Async.json @@ -0,0 +1,122293 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "51", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-70fa9f5992d0914093a22eba064b523c-7be51099b59b404e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-api-key": "Sanitized", + "x-ms-client-request-id": "7b71156992782a9909749c47bac4436c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90987cdf-ae32-41ac-ab79-bb5c1771cff3", + "Content-Length": "2691347", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "553", + "x-request-id": "90987cdf-ae32-41ac-ab79-bb5c1771cff3" + }, + "ResponseBody": { + "value": [ + { + "feedbackId": "8935fa65-b9a2-4332-92ac-ceaed102e385", + "createdTime": "2021-01-19T17:42:54.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd53110c-065b-4dd3-95b2-b39072112df2", + "createdTime": "2021-01-19T17:42:54.172Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47a18850-ffbd-480c-88d7-5fc5366268d3", + "createdTime": "2021-01-19T17:42:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "008612a2-6724-4a17-b760-5f86d8d02f2f", + "createdTime": "2021-01-19T17:42:45.087Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ede44c96-2193-4d80-b81a-d6183215fb5d", + "createdTime": "2021-01-19T14:00:57.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1015a268-3ee0-4135-878a-3f6059a99558", + "createdTime": "2021-01-19T13:58:56.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3cb5140c-0d33-4c24-a790-57f93557634d", + "createdTime": "2021-01-19T14:00:56.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bee3b9b-778e-4a3d-8b7c-00a29aa8ebca", + "createdTime": "2021-01-19T14:00:55.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8422038-0e71-4487-b17b-53633b2b9378", + "createdTime": "2021-01-19T14:00:54.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9d0de277-14a1-4bf8-a754-6c18ad1b0ad3", + "createdTime": "2021-01-19T13:56:52.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cbcafbfb-8582-48d3-af3b-649cc9e19602", + "createdTime": "2021-01-19T14:00:53.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9aa1d4cd-ddaf-43c8-8086-8c32f19794a9", + "createdTime": "2021-01-19T14:00:52.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "febcf3f5-b9f6-4711-9df4-d889dd4f3d1e", + "createdTime": "2021-01-19T14:00:48.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "08b88acb-8688-4308-bc0d-3455b6559456", + "createdTime": "2021-01-19T13:57:47.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "347631bc-5265-411a-a2d9-c0fc1ec1ea04", + "createdTime": "2021-01-19T14:00:47.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0806cb5-451c-4ce0-9771-30582cfe35b9", + "createdTime": "2021-01-19T14:00:47.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "15bcfb63-bc14-42ec-aee9-061839326752", + "createdTime": "2021-01-19T14:00:46.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "917acc72-86ef-4e6e-9adc-15df2cacfc5c", + "createdTime": "2021-01-19T14:00:45.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "28f8535d-6378-43d5-9f6e-f5d232c6a7b5", + "createdTime": "2021-01-19T14:00:45.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b0c1c7d-477e-42c4-8ce7-c5502d45e1e4", + "createdTime": "2021-01-19T13:57:42.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d367f764-e2d7-4b28-a5f3-74cee2895fb7", + "createdTime": "2021-01-19T13:56:39.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "697baf50-a35e-4744-b648-c0c461006f86", + "createdTime": "2021-01-19T13:58:32.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "294c76f4-ef62-4538-b940-b590fa8496a2", + "createdTime": "2021-01-19T13:59:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7df6e3fc-19fe-4349-974a-e6646dd85813", + "createdTime": "2021-01-19T13:58:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "63fba0dd-4137-40f9-9740-076f7c556d8c", + "createdTime": "2021-01-19T13:58:28.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6481394f-7249-42d2-9005-9d5b6e5f7bc3", + "createdTime": "2021-01-19T13:59:22.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3d1df1bd-072a-4c32-962c-86e6f5474bab", + "createdTime": "2021-01-19T13:58:17.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9ccf6e9-0470-4fb7-9231-314c7ef2f7df", + "createdTime": "2021-01-19T13:59:02.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9341c2b-c759-408f-ab33-9b9cb6f8024f", + "createdTime": "2021-01-19T13:56:59.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d6aea3f0-9c36-40a3-8229-5124633136c3", + "createdTime": "2021-01-19T13:59:28.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5e9ea17-9c54-4676-a275-6b83f77fb4ba", + "createdTime": "2021-01-19T13:59:28.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1e40a33c-f757-4a58-841d-896f5d818057", + "createdTime": "2021-01-19T13:59:27.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a3527c98-0e5a-4bd7-8bbd-ffa8e00292c9", + "createdTime": "2021-01-19T13:59:26.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "09f5c613-d0bc-433c-8acb-c2266f2790ea", + "createdTime": "2021-01-19T13:59:26.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b7cd843-8394-4074-a60a-510d3a718295", + "createdTime": "2021-01-19T13:59:21.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a83f1b1-5e50-48dc-9cb9-b2d121dd2271", + "createdTime": "2021-01-19T13:59:20.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c4777788-244c-41a9-aed0-48f8ab2a1833", + "createdTime": "2021-01-19T13:59:20.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7893084d-e15c-4313-9ed1-883b871ab0d0", + "createdTime": "2021-01-19T13:59:19.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "af8ba216-402f-4d14-87ab-28b2f2c7213c", + "createdTime": "2021-01-19T13:59:18.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b419dd53-fcf9-4fda-9102-2a0d2e8c1122", + "createdTime": "2021-01-19T13:59:01.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b2887c32-1721-4dba-9338-c03bb97efd91", + "createdTime": "2021-01-19T13:59:01.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30d865ed-4024-46f6-9f03-0f3fcc00906a", + "createdTime": "2021-01-19T13:59:00.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "874db9f6-b4f8-4846-b993-9617c821fbd0", + "createdTime": "2021-01-19T13:59:00.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "346715b1-9065-4d99-802e-27ffebf88787", + "createdTime": "2021-01-19T13:58:59.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1009a511-6fc7-41c9-b055-1d14d11c946c", + "createdTime": "2021-01-19T13:58:55.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad7fe893-4057-459d-b2e0-918ede832075", + "createdTime": "2021-01-19T13:58:54.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "65c8f3ee-ff50-4df0-8053-458efce117a6", + "createdTime": "2021-01-19T13:58:54.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74a8fb65-8ce0-4c3f-ba8b-6193acc9795a", + "createdTime": "2021-01-19T13:58:53.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1eb74126-cecf-4c98-99be-fffb3f80cb0c", + "createdTime": "2021-01-19T13:58:52.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d3da7e5-dd6e-4b04-ac53-c7e3d10b8f20", + "createdTime": "2021-01-19T13:58:31.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f9b93775-d528-41f6-89a6-a96b16d9faae", + "createdTime": "2021-01-19T13:58:31.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "848ed39c-e513-43ab-9054-db022d31d0d5", + "createdTime": "2021-01-19T13:58:30.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "69677d63-a330-48f7-9d00-39f63a52391c", + "createdTime": "2021-01-19T13:58:30.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5a548f36-47b2-493d-b0e4-eff6a4befd89", + "createdTime": "2021-01-19T13:58:29.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "492f4b22-32d6-4137-9dc5-d906e5dbcb96", + "createdTime": "2021-01-19T13:58:27.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cb3ae15-36c0-4d37-8f4d-6d8aa8215159", + "createdTime": "2021-01-19T13:58:27.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "039781d3-ad58-4b87-98f2-85be18785d2b", + "createdTime": "2021-01-19T13:58:27.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85ec2cdd-2603-461a-86ae-02c34fcb1fce", + "createdTime": "2021-01-19T13:58:26.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e72d127c-6637-4872-8751-85c8d53edc52", + "createdTime": "2021-01-19T13:58:26.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2be22f8-59ff-4c31-b42a-04f992409eff", + "createdTime": "2021-01-19T13:58:26.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "497df40f-09a9-4d89-8e24-edc9f13be9f4", + "createdTime": "2021-01-19T13:58:26.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "599dd42a-428f-49b0-be60-dea735103d86", + "createdTime": "2021-01-19T13:58:21.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d48bbdc3-6f15-4ea7-97c4-324153b6a4c2", + "createdTime": "2021-01-19T13:58:20.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a04486f-3165-4d04-ae26-1523ca58df36", + "createdTime": "2021-01-19T13:58:19.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e9f3ddbb-f3b5-4bad-b91c-c572aca698ec", + "createdTime": "2021-01-19T13:58:17.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a43b85c-40f0-4fe9-825b-33e45c10132c", + "createdTime": "2021-01-19T13:58:16.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "57c8339a-73f2-42bd-88f0-c66c5a8f2e9c", + "createdTime": "2021-01-19T13:58:15.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "64cb7e02-126b-4820-9448-9d0c2d0dccef", + "createdTime": "2021-01-19T13:58:15.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a08f3fc4-19c1-47c6-a4b4-9ac75f1a0f33", + "createdTime": "2021-01-19T13:58:14.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ad65cfa-ecc8-4922-8dca-c0046f994b2f", + "createdTime": "2021-01-19T13:57:46.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "52477c92-e87e-419f-a9e9-ffa465cb2357", + "createdTime": "2021-01-19T13:57:45.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbdba9f4-523c-4c36-be5a-856942cd705a", + "createdTime": "2021-01-19T13:57:45.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "95e09ad0-0d5a-4a4a-8625-cd963fa324c3", + "createdTime": "2021-01-19T13:57:44.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "44448b96-8ac6-47fe-8168-15391c41f6ed", + "createdTime": "2021-01-19T13:57:43.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c55df2c-fa46-4ce2-8fe8-aedd79e648f8", + "createdTime": "2021-01-19T13:57:41.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "09a7c3cc-5d33-4a7d-bd9c-a448ec473d3b", + "createdTime": "2021-01-19T13:57:41.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2205c32c-ca6c-4803-b1dc-5027694a1fc0", + "createdTime": "2021-01-19T13:57:40.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0da17f6a-4c32-4423-a307-06ecfb336535", + "createdTime": "2021-01-19T13:57:40.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4878bdbd-098d-41e4-94fd-4a9515248699", + "createdTime": "2021-01-19T13:57:39.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb6086a2-c70d-4df6-b846-2c40f9da9e59", + "createdTime": "2021-01-19T13:56:59.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d0fa41be-d2fc-4496-ae94-beac708855fc", + "createdTime": "2021-01-19T13:56:58.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8b0f8a2-7a0f-4cba-a1a5-07ed3ee034e4", + "createdTime": "2021-01-19T13:56:57.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "baa237db-ab51-42ca-971e-e6bd0c1fb8eb", + "createdTime": "2021-01-19T13:56:56.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6e7543d2-6281-45a8-a3fe-6017e57a5c40", + "createdTime": "2021-01-19T13:56:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1ea80d8-df5d-4b90-856f-aa9a7e0c8ece", + "createdTime": "2021-01-19T13:56:52.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b933dcd1-e3ce-4a15-9812-c9c2921f7669", + "createdTime": "2021-01-19T13:56:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afe3ac5a-7df3-499a-bf56-1848c38ce103", + "createdTime": "2021-01-19T13:56:50.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0450183-0ec4-46da-992b-07da1067cce2", + "createdTime": "2021-01-19T13:56:49.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "eb010e35-b77b-49c6-96f1-2510b41e7d24", + "createdTime": "2021-01-19T13:56:49.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9d7aab6-5925-4223-9ced-7a9988ff6a13", + "createdTime": "2021-01-19T13:56:38.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "04380f9a-4c5c-4f9c-9b63-8191f277c19d", + "createdTime": "2021-01-19T13:56:37.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8b44e4f1-6294-4926-861a-eb970a8da13b", + "createdTime": "2021-01-19T13:56:36.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "898ed7e4-e181-4b3f-9ad8-cfbc6a74362a", + "createdTime": "2021-01-19T13:56:35.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bbcc749c-7f5c-49d9-97ad-b2d73438bf9a", + "createdTime": "2021-01-19T13:56:35.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69d198b4-3d86-4d4a-856c-fb34c0b012c1", + "createdTime": "2021-01-19T13:56:30.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b00fba3-e39a-4ff7-ac62-e983778ec87d", + "createdTime": "2021-01-19T13:56:30.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0b507d2-8192-4db3-9e99-47c8dd97b7c6", + "createdTime": "2021-01-19T13:56:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9c827ea6-ed2a-4138-8e3c-b96b6f869e4a", + "createdTime": "2021-01-19T13:56:28.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8f811069-066c-43ba-b046-2db6e8179bb7", + "createdTime": "2021-01-19T13:56:27.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d957ad4-77ff-4edf-ae39-baf4741ae2fc", + "createdTime": "2021-01-19T13:56:26.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f3798d0-8f23-4e23-8ac2-81df405a4887", + "createdTime": "2021-01-19T13:53:52.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ae36ed2-fc09-4349-b4cc-a88ea0f1e08f", + "createdTime": "2021-01-19T13:51:59.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a8aa20-0c12-42e7-9a64-8f8c407135fd", + "createdTime": "2021-01-19T13:51:57.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb69c325-6ecf-4124-8512-edd78b28231c", + "createdTime": "2021-01-19T13:51:54.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ac5e48c-b6b5-46b6-930c-2715b987417c", + "createdTime": "2021-01-19T13:51:02.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "56fac71a-b794-48ff-b062-da1d396c67e7", + "createdTime": "2021-01-19T13:50:49.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d964bafc-c6ba-4309-8673-7e15e71f1685", + "createdTime": "2021-01-19T13:49:15.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3565340-d655-45b9-800f-d91e049c76f8", + "createdTime": "2021-01-19T13:48:49.272Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc3c5500-b908-4b7c-ab57-5f32b959b214", + "createdTime": "2021-01-19T09:10:05.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1b47c303-964f-4485-b638-3e1f59347001", + "createdTime": "2021-01-19T09:10:05.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8418d4a8-7952-497f-b99a-42fcdfe76e96", + "createdTime": "2021-01-19T09:10:04.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5dbe01a-4789-4684-a6e0-74b8bd9e12a4", + "createdTime": "2021-01-19T09:10:04.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "948a5f11-7cff-4c40-aa65-a40cbf8b3fe9", + "createdTime": "2021-01-19T09:06:10.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "26d5d32c-da25-4aec-b18c-92e11394113c", + "createdTime": "2021-01-19T09:06:09.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0b2a938d-11ad-471d-b2aa-83b5c08988a7", + "createdTime": "2021-01-19T09:06:09.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06055519-8385-4609-a994-0fcb4bfd9586", + "createdTime": "2021-01-19T09:06:08.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5855d515-f18a-49e5-b550-2742d977b17b", + "createdTime": "2021-01-19T08:58:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "748476b8-6937-46fb-a180-2ac88d0d74e7", + "createdTime": "2021-01-19T08:58:38.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6747aad3-7410-4284-82c6-1e60279a0974", + "createdTime": "2021-01-19T08:58:37.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "335205bf-97b6-4008-8b6e-7bf5924df34f", + "createdTime": "2021-01-19T08:58:36.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761564b8-7a84-4625-9bd4-bf2d0d93a97b", + "createdTime": "2021-01-19T08:54:59.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c1542c5-8d4f-42a8-bf5e-d93e0a1b323a", + "createdTime": "2021-01-19T08:54:58.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3387fd61-0bb8-4694-9026-1284bb7d7391", + "createdTime": "2021-01-19T08:54:58.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a2c4398-eb02-4a9d-a4ee-296d0f8e9ba1", + "createdTime": "2021-01-19T08:54:57.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3675b2c3-a11f-4aad-8402-7a0c71c105d2", + "createdTime": "2021-01-19T08:45:45.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45dbb823-45c6-4e67-8554-c18856404c86", + "createdTime": "2021-01-19T08:45:45.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe055248-219f-44ee-a16c-404bbf167d27", + "createdTime": "2021-01-19T08:45:44.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "df531156-b7ad-4469-9e5a-c463882dbc61", + "createdTime": "2021-01-19T08:45:43.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00b00aa3-2317-4678-b8ad-e5d6a2c15c15", + "createdTime": "2021-01-19T08:35:35.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23b1e4f5-2c9c-4b6d-8071-efeb18cf8a65", + "createdTime": "2021-01-19T08:31:26.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cda57caf-5533-497e-895a-1f2492fb02de", + "createdTime": "2021-01-19T08:24:00.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "93153303-1149-4252-8b14-d4a637585e01", + "createdTime": "2021-01-19T08:35:34.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b8c142f-1e9f-4506-8e4b-569ce88acbf9", + "createdTime": "2021-01-19T08:35:33.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2f57064c-8bcd-4863-82e4-c1151e007b74", + "createdTime": "2021-01-19T08:35:32.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dd116d1d-95ba-4415-bd69-25e85bd3f9b5", + "createdTime": "2021-01-19T08:31:25.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b161f8e0-6d9d-4581-aa93-590f07fbdb84", + "createdTime": "2021-01-19T08:31:25.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f39476fd-e1d1-410b-82ac-98184393e784", + "createdTime": "2021-01-19T08:31:24.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "275c3d77-c699-4ab0-b82f-8df43dfdf59e", + "createdTime": "2021-01-19T08:23:59.912Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a7a085b-a677-459d-bcf8-0b0ddb5f5942", + "createdTime": "2021-01-19T08:23:59.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "67ac83b7-7653-4762-849e-4ce0257adb23", + "createdTime": "2021-01-19T08:23:58.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93a4c768-3a6a-4fcc-b0a4-ce6f7d030e48", + "createdTime": "2021-01-19T08:20:28.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36373d9e-ef96-40f1-9f1a-6286448e91a0", + "createdTime": "2021-01-19T08:20:27.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "19ff0c44-54f4-499f-93c1-e8d895a8d05e", + "createdTime": "2021-01-19T08:20:26.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1af2aacb-2f8b-4932-9a5d-d56501640894", + "createdTime": "2021-01-19T08:20:25.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7315a56-e93c-4a17-a6bd-1595d36b1e1e", + "createdTime": "2021-01-19T01:07:39.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2a2feaf4-bb65-48cd-afb0-72f45abbaaee", + "createdTime": "2021-01-19T01:07:39.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e808d27-075b-4b47-85c7-b9e90e3eba71", + "createdTime": "2021-01-19T01:07:38.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9683141-a0b3-40ca-b49a-c20f05e81e7f", + "createdTime": "2021-01-19T01:07:38.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e280721-906e-4b0a-af2d-29446b7ee17f", + "createdTime": "2021-01-19T01:07:37.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe1f385d-6137-49b5-bc18-2324494c5ce5", + "createdTime": "2021-01-19T01:07:37.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "24d2947d-c23c-4566-8d2d-5a8c1cde840d", + "createdTime": "2021-01-19T01:07:33.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ae07c997-4a0c-47c1-90bf-2a0b525f77d2", + "createdTime": "2021-01-19T01:07:32.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c06aa8b0-1355-471e-bb7a-97d9bd61228d", + "createdTime": "2021-01-19T01:07:32.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2487e600-1fcd-48b4-a1a5-5426bec32877", + "createdTime": "2021-01-19T01:07:31.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd743465-f3c8-43ec-8ed4-848bd566ed9d", + "createdTime": "2021-01-19T01:07:31.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fac408f0-672f-48b7-85bf-497f2fc4419c", + "createdTime": "2021-01-19T01:07:30.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd2b4346-d161-4de2-a858-67b634036640", + "createdTime": "2021-01-19T01:07:01.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a9304316-1e78-48b0-9168-4b6a4274cac8", + "createdTime": "2021-01-19T01:07:00.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "121fbc8e-f0f4-41f4-8ab4-712f1ce7085e", + "createdTime": "2021-01-19T01:07:00.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7651503f-461a-477e-9729-c92b1ba74013", + "createdTime": "2021-01-19T01:06:59.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e05d6efe-fae3-4cc2-84ad-37f500714da8", + "createdTime": "2021-01-19T01:06:58.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "45aedc28-d13a-4731-9147-65405d081339", + "createdTime": "2021-01-19T01:06:58.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d1f4f3c-97ea-4d24-9052-cc6be9529ab0", + "createdTime": "2021-01-19T01:06:53.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a811584f-053c-4789-9eaa-d754e72577f9", + "createdTime": "2021-01-19T01:06:53.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1c8dc050-fc78-465e-8ad8-6ff80261e46d", + "createdTime": "2021-01-19T01:06:52.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0af352a-0ad9-494f-9860-f2535d6c9550", + "createdTime": "2021-01-19T01:06:51.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "28742aea-eed2-4416-88be-65dd5d40ae70", + "createdTime": "2021-01-19T01:06:51.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a44c8424-3977-474e-bbbd-bb0124f0eb30", + "createdTime": "2021-01-19T01:06:50.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7a82848-2a4b-46c3-aabe-c7dd92635c57", + "createdTime": "2021-01-19T01:06:49.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5939f944-879e-420a-9082-c1b8e8c622d4", + "createdTime": "2021-01-19T01:06:49.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "243043b9-446e-4526-86cb-f1e17d12243d", + "createdTime": "2021-01-19T01:06:48.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5111ce69-39c0-47b6-b1d3-e1022f67be4d", + "createdTime": "2021-01-19T01:06:47.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6aeb5f11-665c-4680-b395-30475f19a5fe", + "createdTime": "2021-01-19T01:06:47.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "367dde79-f8cb-49be-87e5-805ebd4240bb", + "createdTime": "2021-01-19T01:06:46.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ae5bd15-5ef8-4655-8e2e-2a369da8c1c4", + "createdTime": "2021-01-19T01:06:42.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "25e35e33-4dbc-41a9-87e5-200cc68a20c0", + "createdTime": "2021-01-19T01:06:42.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e9897081-dc5b-4521-8075-be7e719bbbda", + "createdTime": "2021-01-19T01:06:42.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b363b009-3f17-4e98-8bab-27bad07da52c", + "createdTime": "2021-01-19T01:06:41.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "49caaf15-00dd-489d-927c-c20621f17613", + "createdTime": "2021-01-19T01:06:41.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0511533-92a8-4bdf-ac16-8543e4f5cd5f", + "createdTime": "2021-01-19T01:06:40.922Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ac0d4586-fb21-4d48-abdf-f77e7cc65559", + "createdTime": "2021-01-19T01:06:40.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b4599f09-d209-423b-b030-2d6590fcbcf7", + "createdTime": "2021-01-19T01:06:40.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e5ed2cd9-3df7-4e55-b6af-29972bf07803", + "createdTime": "2021-01-19T01:06:40.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f25d3b8f-33a5-4363-ab36-74551409eb12", + "createdTime": "2021-01-19T01:06:39.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0e55feb1-60a1-4791-b661-5130c6bcc2c0", + "createdTime": "2021-01-19T01:06:39.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec7ef9b7-b606-4cf5-9c6f-ac9081d9e439", + "createdTime": "2021-01-19T01:06:38.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef352772-2821-4c20-9113-023fd9d9e8a6", + "createdTime": "2021-01-19T01:06:34.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1279c7c8-4d76-46bc-ab06-620923fd5768", + "createdTime": "2021-01-19T01:06:33.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "86317b4c-7c5b-41c5-83bb-c20f3da93686", + "createdTime": "2021-01-19T01:06:32.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dc284e2a-ffbe-461e-9658-8bdd6e5fac47", + "createdTime": "2021-01-19T01:06:31.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "65e59d89-efbb-4335-8acf-ca106f0d00c3", + "createdTime": "2021-01-19T01:06:31.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9afb068b-f48f-4084-8eec-b32f4da14a14", + "createdTime": "2021-01-19T01:06:30.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baa470a3-6222-43ff-a2bb-507145eca70b", + "createdTime": "2021-01-19T01:06:29.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4e62d072-99f5-4d43-befa-0b3bd28bf60f", + "createdTime": "2021-01-19T01:06:28.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "94cbfee6-d0d5-47e9-9cf3-7438498e374c", + "createdTime": "2021-01-19T01:06:27.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "076e455b-a29b-44ce-8c3d-aa550813168f", + "createdTime": "2021-01-19T01:06:27.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9665b1f3-dab0-4427-9de8-632d7c8e9ecb", + "createdTime": "2021-01-19T01:06:26.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "37cc7d7a-ef74-4f5b-b967-7a23b53fc7c4", + "createdTime": "2021-01-19T01:06:26.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f115db2-4994-4c33-87d7-0f682a62a961", + "createdTime": "2021-01-19T01:06:22.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "44c5cbe0-feba-450f-8263-0fe161072c5e", + "createdTime": "2021-01-19T01:06:21.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "82bde737-b216-4246-9ed7-cc65305296bf", + "createdTime": "2021-01-19T01:06:21.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e7e889fb-d1a4-4642-87ad-1abdd7aa1cd3", + "createdTime": "2021-01-19T01:06:20.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "27de048b-a8db-4e84-85f1-b483be33a89d", + "createdTime": "2021-01-19T01:06:20.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a89f88bf-ea3a-4345-a12e-ed9876417391", + "createdTime": "2021-01-19T01:06:19.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "546674b2-f3c6-47bc-97be-569b576e00d6", + "createdTime": "2021-01-19T01:05:56.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a7dc71d2-bf2a-4431-945d-9259cc6db368", + "createdTime": "2021-01-19T01:05:55.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7514b0e-94be-4ce6-879b-745bca8c6c24", + "createdTime": "2021-01-19T01:05:55.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54cbc164-b48b-4f24-9d59-9e3e86145b06", + "createdTime": "2021-01-19T01:05:54.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cdcc44cf-a69e-4b39-b843-acbf281286cf", + "createdTime": "2021-01-19T01:05:53.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2756fdd1-4f1b-4c6e-9607-a0ab67874027", + "createdTime": "2021-01-19T01:05:53.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ada6147f-ca9b-4936-81df-b1ee371c42f8", + "createdTime": "2021-01-19T01:05:49.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ce57b74e-7c3b-4028-be96-2549c73dafc6", + "createdTime": "2021-01-19T01:05:48.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cea1fdc7-f132-4f06-a0ff-476b94e5e509", + "createdTime": "2021-01-19T01:05:48.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5799355b-becf-47f6-99b4-bdb63795a49a", + "createdTime": "2021-01-19T01:05:47.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b57d961-f870-43e2-944b-8ce9c3bfc4e3", + "createdTime": "2021-01-19T01:05:46.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "baa75995-bbeb-4ab0-86d3-6c58d7355847", + "createdTime": "2021-01-19T01:05:46.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d20a2d9-2e07-4069-9bd6-1928b6d41939", + "createdTime": "2021-01-19T01:03:19.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2efe071c-7398-4633-94d9-2d7ae2826aae", + "createdTime": "2021-01-19T01:03:18.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "61b7ff71-415d-4907-979f-509fa7d846e1", + "createdTime": "2021-01-19T01:03:17.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3522e47-ea83-419d-a16d-0b4809b8cba8", + "createdTime": "2021-01-19T01:03:16.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bdb54d39-06cb-4605-b472-167767431d7e", + "createdTime": "2021-01-19T01:03:15.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "24d47030-9276-46e3-ad15-b2cf6b95e056", + "createdTime": "2021-01-19T01:03:14.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f76714c-b9fb-43a5-aef1-ba8b30069013", + "createdTime": "2021-01-19T01:03:11.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ee774ea-ea47-4979-8e8a-9542fd5398b1", + "createdTime": "2021-01-19T01:03:10.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d92c9d87-9cc0-48b8-8d5a-e3f393e26f46", + "createdTime": "2021-01-19T01:03:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "15298377-2281-4bc8-a20d-6eaa422ee8e4", + "createdTime": "2021-01-19T01:03:09.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "20ed5127-b5c1-4dc2-a7ce-7bb5fdef3547", + "createdTime": "2021-01-19T01:03:09.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "01efea0a-6ec6-4c54-901f-01b62d679678", + "createdTime": "2021-01-19T01:03:08.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43a0ccbf-078a-429d-bbc9-6419135bd0e0", + "createdTime": "2021-01-19T01:03:08.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "73ce71f6-cbc7-466c-b6f3-7394d04b7196", + "createdTime": "2021-01-19T01:03:08.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93588134-6ffa-454b-9df2-d7d2f0042479", + "createdTime": "2021-01-19T01:03:08.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d75ec0a0-6d07-4d23-a6ed-88b532cc4224", + "createdTime": "2021-01-19T01:03:07.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "957540ac-dff5-4a90-94f2-41b24ef33cd4", + "createdTime": "2021-01-19T01:03:06.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "206abe3d-4321-481b-9b7c-d13a504e74ef", + "createdTime": "2021-01-19T01:03:05.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4f3cb4c-43f6-4933-96ed-e733e24c84df", + "createdTime": "2021-01-19T01:03:01.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a03eb23-3b2b-4904-ab5c-4c2270ac2409", + "createdTime": "2021-01-19T01:03:01.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "303dee09-09b6-48b1-a873-47bfa00c73be", + "createdTime": "2021-01-19T01:03:00.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "746ef064-a093-4d36-a5ce-428a9c39eed9", + "createdTime": "2021-01-19T01:02:59.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5929eeb6-11ca-4ddc-a5c2-7431fd83dadb", + "createdTime": "2021-01-19T01:02:58.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0db045a1-8833-4d3a-81aa-72f6b89757d1", + "createdTime": "2021-01-19T01:02:57.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3aeb2208-c8c8-4741-8dd0-a86ff918d028", + "createdTime": "2021-01-19T01:01:00.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71134de1-f939-4fb5-9dbd-a238d586c637", + "createdTime": "2021-01-19T00:59:37.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8a54d6-bac8-45ba-814c-69b8c5b1c822", + "createdTime": "2021-01-19T00:59:19.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2889ddb1-e7a3-4e0d-9458-c122b88a43f7", + "createdTime": "2021-01-19T00:59:11.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf6a3b4c-13c2-4172-8ff7-7317802ecca0", + "createdTime": "2021-01-19T00:58:54.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "607b7c58-f4f5-4464-945d-98a38f4c4a94", + "createdTime": "2021-01-19T00:58:36.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f70b88af-8bf1-4f5f-ba0a-e5f32f7e8c1b", + "createdTime": "2021-01-19T00:55:42.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f201963-2b59-4eb7-bbab-9cb1f572389a", + "createdTime": "2021-01-19T00:55:40.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "447643f9-c3be-4891-85c4-60c70a5a0458", + "createdTime": "2021-01-19T00:26:16.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "69b90675-238c-4fde-a966-18f1dcaef637", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "315e935c-a01c-4e51-8080-e96642d86f5c", + "createdTime": "2021-01-19T00:26:08.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "023331b6-7d33-4b71-ac45-5ff246c565da", + "createdTime": "2021-01-19T00:25:07.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "095884b3-eab8-45f0-a344-ad06cd097e91", + "createdTime": "2021-01-19T00:26:07.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d3698c88-ec8d-4ddc-8ea4-33be8fa46819", + "createdTime": "2021-01-19T00:21:04.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "49f7dcef-d662-4727-b225-a3e5267b2f00", + "createdTime": "2021-01-19T00:25:00.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5d3bfd0f-9856-41f2-9efd-feb93259a221", + "createdTime": "2021-01-19T00:20:56.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bb84562f-9654-4d71-b3e0-60797d9cf6bb", + "createdTime": "2021-01-19T00:25:38.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "98da1c1f-22bc-45dd-8a3a-04081b6fe773", + "createdTime": "2021-01-19T00:25:37.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "35b1ba05-a532-4eb4-887d-b119f8729493", + "createdTime": "2021-01-19T00:25:31.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "fdfe9ba6-c7ac-4c4b-8868-7d6f96dc3f1f", + "createdTime": "2021-01-19T00:20:29.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "238c89f4-dc13-46db-9b94-24bbe8893c41", + "createdTime": "2021-01-19T00:25:30.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8239b457-436b-458c-9dd2-fac29bba3bb0", + "createdTime": "2021-01-19T00:26:27.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0300d75a-1208-43dd-96ec-46631fb7c93f", + "createdTime": "2021-01-19T00:26:26.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b1312aa-0b77-478b-8a3f-77096ae88bf9", + "createdTime": "2021-01-19T00:26:26.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3a11fcb-4b9b-4705-8ad2-5f7ddfa4016a", + "createdTime": "2021-01-19T00:26:25.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "554f3718-a580-4d6b-991b-4422fa3bfb22", + "createdTime": "2021-01-19T00:26:24.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5256ed10-ac40-4e54-99f6-eef5ba220914", + "createdTime": "2021-01-19T00:26:24.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67ca7e28-f386-422b-90cd-80611c770c56", + "createdTime": "2021-01-19T00:26:20.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "96747e4c-95b4-43e5-921c-dd02bcb30dde", + "createdTime": "2021-01-19T00:26:19.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b694a4da-e693-4f81-86d8-35afa3440e80", + "createdTime": "2021-01-19T00:26:19.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "80783a23-30c9-45fb-ae6a-05a028bd2d9f", + "createdTime": "2021-01-19T00:26:18.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "640753b7-b112-4eb7-8399-63544a8c1f7e", + "createdTime": "2021-01-19T00:26:18.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "78ffbb29-9d05-4b3e-9277-f9ee16450910", + "createdTime": "2021-01-19T00:26:17.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3206ea4-6299-4c1f-9f0f-57f0b9a53c75", + "createdTime": "2021-01-19T00:26:15.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8628b076-f53b-4d0b-ba25-24b4dca1a0c0", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "590d7d1c-00c3-447b-8200-18669c208d79", + "createdTime": "2021-01-19T00:26:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f47acb9e-1271-411c-9a90-c76f568323aa", + "createdTime": "2021-01-19T00:26:13.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3a97111-c591-4f78-97b6-63ffff8b6ba2", + "createdTime": "2021-01-19T00:26:13.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "18dcad3e-0518-4b47-b74e-2a893ddebeb1", + "createdTime": "2021-01-19T00:26:13.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "07533e43-0d3b-4e13-99dc-9db0f88b508f", + "createdTime": "2021-01-19T00:26:12.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbed8283-66f0-4287-a18d-d16fa706c6c2", + "createdTime": "2021-01-19T00:26:12.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8695075-c7cd-410e-a01f-63a756dfcb0e", + "createdTime": "2021-01-19T00:26:11.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e71b64ba-7d85-4b82-828b-539a4ba5d64f", + "createdTime": "2021-01-19T00:26:11.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1956d3da-2770-466c-b8ba-7747bf04b4e1", + "createdTime": "2021-01-19T00:26:07.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a03990f4-320e-4cfd-bf9f-213cd71f18c4", + "createdTime": "2021-01-19T00:26:06.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03b4edff-7680-4cad-a83b-b3bd4dff305a", + "createdTime": "2021-01-19T00:26:06.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "825b9bf9-f6b9-4d42-a621-d5ba28c18c77", + "createdTime": "2021-01-19T00:26:06.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0b36c050-a25f-4ea2-999d-d5c130fb9048", + "createdTime": "2021-01-19T00:26:06.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e83e5302-aff0-46a2-9721-2ce1eee7fb64", + "createdTime": "2021-01-19T00:26:05.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f24e52f2-085f-4611-bb48-0c30a5fc164c", + "createdTime": "2021-01-19T00:26:05.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81511988-652a-4b64-a42b-155cb9a86f46", + "createdTime": "2021-01-19T00:26:04.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d5a4c59e-0cab-453b-b73e-561012e02579", + "createdTime": "2021-01-19T00:26:04.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47a65df3-04cf-4e8a-8960-5911cfa60e33", + "createdTime": "2021-01-19T00:26:04.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e858c12e-2812-4441-abc1-41c6482d7814", + "createdTime": "2021-01-19T00:25:38.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "916f1954-ab5a-48a6-8323-4456a527f032", + "createdTime": "2021-01-19T00:25:37.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "05b956f2-812d-4dd6-9b22-d5ed73b126bb", + "createdTime": "2021-01-19T00:25:36.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3d1e8265-44f7-4b6f-8485-9fbef354aa2d", + "createdTime": "2021-01-19T00:25:36.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0aaa780a-7fd5-47da-8ba6-e99af7d097f7", + "createdTime": "2021-01-19T00:25:36.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "616f1dad-9e7a-43a1-b459-fc3f1fbf872c", + "createdTime": "2021-01-19T00:25:35.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9871867b-fc24-480f-919c-b834cf23271b", + "createdTime": "2021-01-19T00:25:35.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df41b57-f4ae-48ab-831b-a9eac26905ed", + "createdTime": "2021-01-19T00:25:35.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "08a138a3-1bd0-472e-9af3-68b3b7278bd2", + "createdTime": "2021-01-19T00:25:34.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f9c170e-a310-4c01-9b23-76de2a782ffe", + "createdTime": "2021-01-19T00:25:33.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f53a8c4-79a5-4b6f-a82d-e31a17c7c575", + "createdTime": "2021-01-19T00:25:31.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cdf0c68c-5631-48f3-a148-1aab94ee4edf", + "createdTime": "2021-01-19T00:25:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "524b18ff-ac3a-46b4-8209-d8407bcb9709", + "createdTime": "2021-01-19T00:25:30.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9877d6cb-016f-4a87-a822-e94a9e96dec9", + "createdTime": "2021-01-19T00:25:29.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d96cf73a-ae64-4537-9aad-1185c1fdc259", + "createdTime": "2021-01-19T00:25:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "acf5e6bd-61ed-490f-852e-eba6cc694b15", + "createdTime": "2021-01-19T00:25:29.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "43a7d62c-921d-4cfd-a14e-da5e1ab7ea1b", + "createdTime": "2021-01-19T00:25:28.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02308a30-b4ed-41b3-8cac-5d4b760dbe43", + "createdTime": "2021-01-19T00:25:28.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b2c9859-7b2e-4b75-a97e-49dbde6a023d", + "createdTime": "2021-01-19T00:25:27.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7f9b252-03ec-455c-85e5-eee4c727d2ce", + "createdTime": "2021-01-19T00:25:27.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07cbe92c-af47-4353-bbf5-d917462a4e18", + "createdTime": "2021-01-19T00:25:06.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5be02e6e-3a0c-49d3-80cb-16ea47e0a8dc", + "createdTime": "2021-01-19T00:25:06.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbc38873-cf2c-4bab-9f22-34f659658422", + "createdTime": "2021-01-19T00:25:05.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "db24ab6c-f112-4af8-91be-c3e049621820", + "createdTime": "2021-01-19T00:25:05.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "809a9c48-54e9-40ea-a80a-17ec6bd7583f", + "createdTime": "2021-01-19T00:25:04.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "508d452f-6003-452a-a1de-f0bb7a699932", + "createdTime": "2021-01-19T00:25:00.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe182ecf-bd7a-40f6-997f-381b3336c49f", + "createdTime": "2021-01-19T00:24:59.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67becf6a-e224-48dc-8704-65471e7c8cfc", + "createdTime": "2021-01-19T00:24:59.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "612d3a6a-e2c8-46d2-8cd5-1a458c24ed61", + "createdTime": "2021-01-19T00:24:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "88e9a13f-75fb-4c1c-9cba-f926711982f3", + "createdTime": "2021-01-19T00:24:57.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2c36b81-46c6-499e-892c-d40c07a68ae2", + "createdTime": "2021-01-19T00:21:04.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0a9a9894-39b5-4426-b68d-9faeaa97747e", + "createdTime": "2021-01-19T00:21:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5166bd87-6a0a-46e7-ae6b-d274f46f0ca7", + "createdTime": "2021-01-19T00:21:01.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "950f915c-b1f1-4c2f-a4ca-2b2252481b70", + "createdTime": "2021-01-19T00:21:00.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "27e68169-afc6-4b5c-96d9-cb3c974aef91", + "createdTime": "2021-01-19T00:21:00.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "361c40cb-a1e1-4c7a-93f7-16f69a86ed6b", + "createdTime": "2021-01-19T00:20:55.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a4dc67bd-ca4d-44c6-ad21-f87a3747be05", + "createdTime": "2021-01-19T00:20:55.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bd82df04-9352-431c-8e01-b7e08fbd41b1", + "createdTime": "2021-01-19T00:20:54.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "857c584d-7651-42a4-a90b-215e65712065", + "createdTime": "2021-01-19T00:20:53.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b8d26670-b552-43b0-b7ee-c201ab617f7f", + "createdTime": "2021-01-19T00:20:52.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16a95a06-fc02-4b66-9a07-237e13542e62", + "createdTime": "2021-01-19T00:20:28.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "25280544-5401-43c6-a610-0500628bc960", + "createdTime": "2021-01-19T00:20:28.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "be101e83-880f-45fa-9ef3-cf44247f0dd0", + "createdTime": "2021-01-19T00:20:27.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "efea6587-2f40-4a4b-b39d-f07aa82a8779", + "createdTime": "2021-01-19T00:20:27.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "65da6265-d6b9-4e0e-9a8b-b35cb5535548", + "createdTime": "2021-01-19T00:20:26.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5209c149-2e13-4465-91f0-f4e1285c4615", + "createdTime": "2021-01-19T00:20:24.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3b3f6df1-036a-4b2c-9174-bcc2e55ade1e", + "createdTime": "2021-01-19T00:20:23.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "640a0a2b-ccb9-45fd-b7de-0347ae8302e5", + "createdTime": "2021-01-19T00:20:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3ef50080-0ac0-4067-86ea-6927e556afe7", + "createdTime": "2021-01-19T00:20:22.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2ec9f8e0-412c-4966-9a31-57475cd3ac91", + "createdTime": "2021-01-19T00:20:21.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e58caf5a-3361-4150-8bb4-cc31246e4790", + "createdTime": "2021-01-19T00:20:21.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7f46c7b-b75e-4435-babc-b277e85e0bf2", + "createdTime": "2021-01-19T00:17:43.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6a601bc-b4f1-4dd2-b4aa-d5f827668762", + "createdTime": "2021-01-19T00:16:19.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d58358a-41af-4acb-9ea7-daf6c8cc5401", + "createdTime": "2021-01-19T00:16:10.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc596c7d-c338-4c70-b1b5-2adb19505ecb", + "createdTime": "2021-01-19T00:16:09.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88f50ab-3d12-4bd7-adf7-9d9e957f7a34", + "createdTime": "2021-01-19T00:16:04.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "895d5a3e-3c57-4c09-b472-160f28c05c1d", + "createdTime": "2021-01-19T00:15:03.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419ee12f-cbb5-4015-b318-c810ba9f1492", + "createdTime": "2021-01-19T00:13:20.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "581600d7-7c17-4f3e-913b-6b8aecad976a", + "createdTime": "2021-01-19T00:12:56.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d21e4462-5537-4daf-9559-118819b0b75d", + "createdTime": "2021-01-18T20:12:04.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64c5744d-82fc-43c9-91ba-78aea74a230c", + "createdTime": "2021-01-18T20:05:55.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f7adb0-bb01-494f-8589-342fe308567e", + "createdTime": "2021-01-18T20:05:49.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d0be9853-ca42-466c-b2a0-a5c55fc094f6", + "createdTime": "2021-01-18T20:09:38.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "eba3a6c5-a4cc-4197-b8b5-20a32e239daf", + "createdTime": "2021-01-18T20:05:22.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1d5786cc-d04d-47b9-bcca-2e6ed1672923", + "createdTime": "2021-01-18T20:07:09.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0e9607c2-41d6-4c58-baa2-b56648ba27d9", + "createdTime": "2021-01-18T20:12:04.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "60912236-9e07-41b2-ad3e-0e4e72ddea8a", + "createdTime": "2021-01-18T20:12:03.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c892741b-ddef-43f9-b38a-5330fb7d3858", + "createdTime": "2021-01-18T20:12:02.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9770ede0-8443-4968-bcec-76d987d855ba", + "createdTime": "2021-01-18T20:09:39.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a93e3eb0-16ee-4465-940c-de7ca38aa9ed", + "createdTime": "2021-01-18T20:09:38.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "79974548-0e76-467a-8a39-8e91f3e3c905", + "createdTime": "2021-01-18T20:09:37.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f663c25b-a759-4add-b6f6-36274ed8613a", + "createdTime": "2021-01-18T20:07:09.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b64690c-5c79-441a-a8aa-30f0d17ddfce", + "createdTime": "2021-01-18T20:07:08.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b291c4b-19e2-455b-9d1e-dd6f1f318da9", + "createdTime": "2021-01-18T20:07:08.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bff967f7-7ab3-471e-9761-f16666b3f1b5", + "createdTime": "2021-01-18T20:05:56.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d114f610-c1ce-4d08-95dd-f0d0a3b14964", + "createdTime": "2021-01-18T20:05:55.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d2504254-6aa7-443f-8008-5363a7f08b49", + "createdTime": "2021-01-18T20:05:54.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a72f005-e577-4f1d-9ff0-a7be8c91de53", + "createdTime": "2021-01-18T20:05:50.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c3a62520-b1c9-4261-b27f-5a415250ab9b", + "createdTime": "2021-01-18T20:05:48.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5ef2c20-6f09-47d1-97e6-fe08ebc73e8a", + "createdTime": "2021-01-18T20:05:48.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbb4d554-4711-4af5-9a6f-88246289ae59", + "createdTime": "2021-01-18T20:05:23.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ec432ed-2b0e-4f3b-a1a4-95a319c983fa", + "createdTime": "2021-01-18T20:05:22.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1a4b4e34-1892-4416-8634-4152d55e5309", + "createdTime": "2021-01-18T20:05:22.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eedfa818-3872-46a3-9f51-9000697eabac", + "createdTime": "2021-01-18T20:05:17.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fea1758e-9142-47df-a8fb-f44a2957c1cb", + "createdTime": "2021-01-18T20:05:16.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e218377b-d686-40bb-ac6c-cfd15e53c65d", + "createdTime": "2021-01-18T20:05:15.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "18485003-b52e-4d85-ab43-e04c12c17118", + "createdTime": "2021-01-18T20:05:15.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d74f3389-944a-44e1-9548-c44e8d612d13", + "createdTime": "2021-01-18T14:02:19.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e69f4669-e8c3-4e22-8616-f03907471634", + "createdTime": "2021-01-18T14:02:14.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fcd41dd-22fd-40fd-b47e-ff305692b292", + "createdTime": "2021-01-18T14:02:13.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3a6f4be3-fe1d-40b7-a985-c1bfde3025d5", + "createdTime": "2021-01-18T14:01:03.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3dc5d5a0-e6c5-4f4a-aee3-ed10cfbd67e4", + "createdTime": "2021-01-18T14:00:59.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b4a26b33-6dd8-4011-8fbb-9615106b12ac", + "createdTime": "2021-01-18T13:58:56.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5f59323e-5c19-4d6e-bdfd-be80214246ca", + "createdTime": "2021-01-18T14:01:43.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9c63c04a-3ebe-4d55-a79f-1e3ecc9c9806", + "createdTime": "2021-01-18T14:01:42.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cfe35f29-243f-4139-bea7-ce89695c6a9a", + "createdTime": "2021-01-18T14:01:37.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9faa75fc-4e5e-41ab-a380-9655d30390c9", + "createdTime": "2021-01-18T14:01:35.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b513e061-217e-4c21-b6e7-6001e505c0e0", + "createdTime": "2021-01-18T14:02:29.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d4c36006-54f9-42ce-a6f7-9f12281347e9", + "createdTime": "2021-01-18T14:02:26.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4f105b31-509b-4454-9f5f-67d530371632", + "createdTime": "2021-01-18T14:02:23.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "47e3cc17-7ed8-4779-a080-454c8cd2198c", + "createdTime": "2021-01-18T14:02:20.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a5bf795a-625c-4dfa-98fd-730ef6e427c0", + "createdTime": "2021-01-18T14:02:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23b9c8dd-208c-4725-8c83-3fc50899c2c7", + "createdTime": "2021-01-18T14:02:28.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9fed2197-4707-4841-b0a6-bebd9bd805c1", + "createdTime": "2021-01-18T14:02:28.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f2c27125-8ca2-467e-85b6-d706422022c9", + "createdTime": "2021-01-18T14:02:27.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6b5f985-4027-4820-935e-b7a96a054f9c", + "createdTime": "2021-01-18T14:02:27.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "648b8a42-8553-4398-8505-a6747ec8979f", + "createdTime": "2021-01-18T14:02:26.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81f088a6-ab52-42cd-893b-a5d3407f1bcd", + "createdTime": "2021-01-18T14:02:25.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33399602-eab0-48a7-802c-0d7e89f60a3d", + "createdTime": "2021-01-18T14:02:25.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "276f0864-875d-41a9-9045-fe401d9fb143", + "createdTime": "2021-01-18T14:02:24.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6ad2ed44-a693-4412-a50f-082374272493", + "createdTime": "2021-01-18T14:02:23.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "889c312e-40dc-471c-87ca-10bb954de1fa", + "createdTime": "2021-01-18T14:02:23.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f1085453-ba3a-4b86-a881-172407296a43", + "createdTime": "2021-01-18T14:02:22.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21266d7d-6989-405e-89dd-1fc0a896bc8c", + "createdTime": "2021-01-18T14:02:22.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "40ce6741-aa60-422e-93e3-eaf8094e60b6", + "createdTime": "2021-01-18T14:02:22.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "13d24587-68ca-46cd-8f2b-6ebb199118b8", + "createdTime": "2021-01-18T14:02:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c29a4d8b-ebf0-4c38-804a-d200b8d995de", + "createdTime": "2021-01-18T14:02:20.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f96ca7fd-ba29-445d-adee-678a586d35a9", + "createdTime": "2021-01-18T14:02:19.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "60632a38-9fde-4a48-8588-8badfde99a5b", + "createdTime": "2021-01-18T14:02:19.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23f08fb4-1192-41c3-b1ad-81d9679ed25f", + "createdTime": "2021-01-18T14:02:18.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "692fbc12-e56c-4745-8413-8df6fd134e55", + "createdTime": "2021-01-18T14:02:18.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5a60d43-6e8d-4bad-a5a1-4366dd79db2f", + "createdTime": "2021-01-18T14:02:18.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44fc4b0d-9c52-48b9-ae92-0f2d81460813", + "createdTime": "2021-01-18T14:02:18.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0afddd9-3596-4796-91ad-c6a53a186688", + "createdTime": "2021-01-18T14:02:17.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ce080e2-6a13-48e6-aa8c-271121ff158e", + "createdTime": "2021-01-18T14:02:17.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0c35506-9c36-4cd8-b3b1-1e2f66fea573", + "createdTime": "2021-01-18T14:02:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6350ae83-1bcb-4c9c-985f-23ac0d353684", + "createdTime": "2021-01-18T14:02:17.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b2f4b5d-47ff-4ca8-a04a-34e64d4e5578", + "createdTime": "2021-01-18T14:02:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ced8ff01-1731-4528-b34d-ac7a4c8a7330", + "createdTime": "2021-01-18T14:02:16.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d0b38b58-d825-42cf-93be-b529797bf0de", + "createdTime": "2021-01-18T14:02:16.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32552c46-42f1-4dc5-a5b1-7389f6622ecf", + "createdTime": "2021-01-18T14:02:15.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34c2db40-9d62-40a4-ac62-e3940be93210", + "createdTime": "2021-01-18T14:02:15.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d76825b-06e7-4c19-a052-1c88417f73d7", + "createdTime": "2021-01-18T14:02:14.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28e18a77-3bf3-4762-88c1-014f70bcb224", + "createdTime": "2021-01-18T14:02:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "74a1396c-72f8-4573-95e2-99426c535ab5", + "createdTime": "2021-01-18T14:02:13.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d5c7d407-a340-4707-a383-17de3304aae7", + "createdTime": "2021-01-18T14:02:12.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e6bf7af5-8476-42ed-adcf-e7210bb6f7c3", + "createdTime": "2021-01-18T14:02:12.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b56a31b-c2f3-4b9f-a7da-db7671d0c1aa", + "createdTime": "2021-01-18T14:02:12.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "617be967-b3d8-4f08-83ca-2c7a4c1c2048", + "createdTime": "2021-01-18T14:02:11.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0be038e-b5eb-4c7b-a422-9b105f021dc2", + "createdTime": "2021-01-18T14:02:11.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "822b1e15-bcee-417c-92b5-894d0fdfdb3e", + "createdTime": "2021-01-18T14:02:10.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4a2755f5-b6d8-4bc1-bc04-4fa5f7746f88", + "createdTime": "2021-01-18T14:02:10.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab20dd75-cf4b-4a94-9d46-e2384e8da92a", + "createdTime": "2021-01-18T14:01:42.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7aae7fab-6765-428d-b26f-a83ad1a09b76", + "createdTime": "2021-01-18T14:01:41.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ba19ce9c-79df-43b4-9ee5-84ebc41b5721", + "createdTime": "2021-01-18T14:01:41.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "daa8ae05-abd2-4e44-89ff-6b0f763efd5f", + "createdTime": "2021-01-18T14:01:41.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a160a02c-4aab-4c13-9050-f6d07ba699ce", + "createdTime": "2021-01-18T14:01:41.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5ef0899-b9f7-4d37-a6b2-f5b8df14f692", + "createdTime": "2021-01-18T14:01:40.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e3f22df-9eaa-4c97-aba6-f88d608f1ba3", + "createdTime": "2021-01-18T14:01:40.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7a0ab9e5-d109-44a3-93da-e3671246ff0b", + "createdTime": "2021-01-18T14:01:40.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8501051f-b446-48fc-b9e5-9c277c3d8c97", + "createdTime": "2021-01-18T14:01:39.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "46cff660-c023-47d6-a616-a831458dce4b", + "createdTime": "2021-01-18T14:01:39.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d73b49c-4c9f-4533-9940-5d6002c3f399", + "createdTime": "2021-01-18T14:01:37.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "287d1ad6-e48c-4d27-b2d6-bb9e409b05d5", + "createdTime": "2021-01-18T14:01:36.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "364da32c-aab7-4110-a6be-c41d6fa9e7ce", + "createdTime": "2021-01-18T14:01:36.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b375ff19-f964-4e40-bbbd-17057af52085", + "createdTime": "2021-01-18T14:01:35.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1bca4249-0009-4bb4-9230-84b75ff1ca7c", + "createdTime": "2021-01-18T14:01:34.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7c9c07d-311b-4436-aee9-820f5324ae44", + "createdTime": "2021-01-18T14:01:34.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff79f82-3407-4e76-acf1-a1769125ab36", + "createdTime": "2021-01-18T14:01:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1530866-8289-49df-b432-4485c7af29c8", + "createdTime": "2021-01-18T14:01:33.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2874c845-e947-4ebc-b842-670f184113ac", + "createdTime": "2021-01-18T14:01:32.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "df786a84-9afa-42a7-a8e1-9cc24e9d963b", + "createdTime": "2021-01-18T14:01:31.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5256282d-8c3c-4aad-8204-3c7aaa5e14fb", + "createdTime": "2021-01-18T14:01:03.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "37e094fa-1ac8-493f-8145-36adcd20ed1d", + "createdTime": "2021-01-18T14:01:02.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b38d251c-ffd7-400c-baf4-c890191bf771", + "createdTime": "2021-01-18T14:01:02.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e7203501-0347-473e-872d-5850083537cb", + "createdTime": "2021-01-18T14:01:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0822a8e6-3819-4fd5-8e23-289c063bc7c4", + "createdTime": "2021-01-18T14:01:01.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e03d045d-a6c2-44f1-a347-219b948b6628", + "createdTime": "2021-01-18T14:00:58.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3eba25fb-2de1-4543-96d1-cb0bebf7dcab", + "createdTime": "2021-01-18T14:00:57.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "90f62e07-1cd5-4189-8e98-ab999b7071f8", + "createdTime": "2021-01-18T14:00:57.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1878717e-e4e9-43e1-a46b-931e2e26a664", + "createdTime": "2021-01-18T14:00:56.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1db1380e-b91b-4a2f-b401-47147f212763", + "createdTime": "2021-01-18T14:00:56.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d6432868-f43e-4154-b443-bd77684c6a78", + "createdTime": "2021-01-18T13:58:19.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c951ad9b-b1ae-4b0d-9614-f12ee0403749", + "createdTime": "2021-01-18T13:58:18.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "427e78ae-f7ac-45d9-a400-b7db2ccb684e", + "createdTime": "2021-01-18T13:58:17.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "18d68ec0-4953-4daa-8491-d7059db94eb9", + "createdTime": "2021-01-18T13:58:17.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e03d7649-8a52-4c1b-a35a-7e4893887cdd", + "createdTime": "2021-01-18T13:58:16.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a4611545-02e6-4a82-9a0a-e87c41476678", + "createdTime": "2021-01-18T13:58:13.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2618ac21-b5c2-4224-8799-feef38e077f9", + "createdTime": "2021-01-18T13:58:13.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a95c5062-f254-4bb2-8789-d14482c4e8ff", + "createdTime": "2021-01-18T13:58:12.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f939b262-7e8e-4c72-ae82-e191ce6a36b2", + "createdTime": "2021-01-18T13:58:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f0ee4243-9437-43b1-9cff-85e87a4f1ee8", + "createdTime": "2021-01-18T13:58:11.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "87548cf0-976c-4bd8-b1a7-96b8bd1e1f46", + "createdTime": "2021-01-18T13:58:10.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65014fcd-bc80-4766-a80f-9e24e0288138", + "createdTime": "2021-01-18T13:52:53.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18bd04ef-e0e1-4f80-8199-f7a5fbaa6eb3", + "createdTime": "2021-01-18T13:52:46.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42e2e8cc-86f0-4020-bcf4-68a720b4d5e3", + "createdTime": "2021-01-18T13:52:34.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb5eaf4d-6880-420b-b16b-9f59453b41d7", + "createdTime": "2021-01-18T13:52:30.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23286deb-bc92-42f8-9e07-5844aac40f6c", + "createdTime": "2021-01-18T13:52:08.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8828c9e7-fdd0-40d0-beb0-adfb8ac8b2fb", + "createdTime": "2021-01-18T13:51:21.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53698aae-9d2e-4c30-a438-ee37bcce8101", + "createdTime": "2021-01-18T13:51:12.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ffcd3c7-5964-422e-a173-712ddeb56dd4", + "createdTime": "2021-01-18T13:49:12.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f6d04bf-0ca4-4044-82be-49b224814f31", + "createdTime": "2021-01-18T09:14:55.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c784ab00-25b7-43aa-8983-8baec5725eac", + "createdTime": "2021-01-18T09:14:54.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed68bdf-5137-4c5f-9ebd-dd399f9fbecc", + "createdTime": "2021-01-18T09:14:54.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5199b0b3-38c1-45c6-ad91-a4f987ec1d9e", + "createdTime": "2021-01-18T09:14:53.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb73c8fc-aba8-43f4-b166-24b0b342012f", + "createdTime": "2021-01-18T09:11:06.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8705feb0-2eef-42cb-a11a-6e84db470088", + "createdTime": "2021-01-18T09:11:06.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdc048b-e7db-48e0-85d6-b58f9331fa1b", + "createdTime": "2021-01-18T09:11:05.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47d57fb3-beea-4927-87f2-cc786900b3f6", + "createdTime": "2021-01-18T09:11:04.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6de583b7-d744-42c9-a95f-18373f17e69c", + "createdTime": "2021-01-18T09:03:31.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "df968310-5768-4bc4-8dd7-fa25b12b35b5", + "createdTime": "2021-01-18T09:03:30.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0d6526a4-93ad-46f8-a5ce-d4c04284a0eb", + "createdTime": "2021-01-18T09:03:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6d0c2aa7-e6c0-4b43-8a0a-0ed5f881b602", + "createdTime": "2021-01-18T09:03:28.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "677dbba1-72e6-4588-bd29-7c47e4653edc", + "createdTime": "2021-01-18T08:59:33.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e0d199a-c8f1-4326-9681-05d43fe47e72", + "createdTime": "2021-01-18T08:59:32.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1c1d49a-7ccd-4423-b2ef-d6a9636f5b8e", + "createdTime": "2021-01-18T08:59:31.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8d3a1709-2e09-4360-804c-23c9b4ce377c", + "createdTime": "2021-01-18T08:59:30.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5517ff8-10ad-47eb-8fe6-2ba530d81f70", + "createdTime": "2021-01-18T08:46:02.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be8aeae6-7f0f-44f8-a4f9-f6acdbdac860", + "createdTime": "2021-01-18T08:46:01.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "228bf853-674f-4d16-9b4b-a570063993e3", + "createdTime": "2021-01-18T08:46:01.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f3fcda7-ed32-4b32-8e05-29d541378220", + "createdTime": "2021-01-18T08:46:00.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea88d538-9e1c-4924-929a-c53100df4206", + "createdTime": "2021-01-18T08:23:29.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25e2a34b-ac95-459c-bb8f-a64c70f60097", + "createdTime": "2021-01-18T08:30:27.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb886c9d-b5aa-4f9c-b783-578409ab5f64", + "createdTime": "2021-01-18T08:34:25.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "627aafa8-bda8-4625-ac59-31509ce0c770", + "createdTime": "2021-01-18T08:34:24.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1efc463-668a-49e9-99a6-0cec894843e1", + "createdTime": "2021-01-18T08:34:23.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8f363d7-eebe-4885-aea9-e9166d8dc177", + "createdTime": "2021-01-18T08:34:22.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed0f68f1-9e13-48ee-952d-9ddc03b27399", + "createdTime": "2021-01-18T08:30:26.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e9c5050e-a428-4310-8794-9d53690a69bc", + "createdTime": "2021-01-18T08:30:25.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37ed9442-ff91-4d11-abcf-f87ab6a2e30a", + "createdTime": "2021-01-18T08:30:24.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47cff8a8-e64a-4dec-93b0-7dda05cee693", + "createdTime": "2021-01-18T08:23:29.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ecdd2489-ae25-4e10-84ee-c9798d76728a", + "createdTime": "2021-01-18T08:23:28.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e3f8e935-4c5a-4dfb-a50f-93c2ebaa660e", + "createdTime": "2021-01-18T08:23:28.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35b63a75-6650-44f0-addb-560a613dd3e3", + "createdTime": "2021-01-18T08:20:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3d35f2e-291e-40f0-b592-1c5229d6026e", + "createdTime": "2021-01-18T08:20:08.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29bbcc1b-1762-459d-adfc-910d1cda2a52", + "createdTime": "2021-01-18T08:20:07.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fb1b6a20-723a-45ea-ab84-3381dc6b5c53", + "createdTime": "2021-01-18T08:20:07.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2322f66d-6b84-4b1f-9b1e-09bf91588e49", + "createdTime": "2021-01-15T22:48:03.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "34039686-a399-49ac-997e-1ac8b1b94a0d", + "createdTime": "2021-01-15T22:48:02.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "609bda38-1b68-4c7b-a1e3-3d1784b9c449", + "createdTime": "2021-01-15T22:48:02.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a00b1fd-c0c3-4d09-b3e3-4bbba74d1e48", + "createdTime": "2021-01-15T22:48:01.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "48b4e84a-18bd-4ca3-8b0d-995776a4ea0a", + "createdTime": "2021-01-15T22:48:01.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "76faffa1-8e1f-4c12-861c-d5c3824eff3c", + "createdTime": "2021-01-15T22:48:01.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "152125f8-2bc3-4438-b75c-1ac2384c1caa", + "createdTime": "2021-01-15T22:48:00.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30c56c19-6dd7-4616-aaf8-e23640ba2afe", + "createdTime": "2021-01-15T22:48:00.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7274c248-d35a-48cd-89e3-6befd9e81203", + "createdTime": "2021-01-15T22:48:00.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "45158b85-5a3e-4fdb-8dec-a6abeff4c49b", + "createdTime": "2021-01-15T22:47:59.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "229bd3b4-9e28-4972-aee3-c640b92cf481", + "createdTime": "2021-01-15T22:47:59.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1f64e0a9-0c5c-4ab4-bfd0-c7e8e9388e12", + "createdTime": "2021-01-15T22:47:58.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e0de04bc-bd2a-44d5-991d-2ee58b94fb62", + "createdTime": "2021-01-15T22:47:57.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f45de2d-abb7-4cfa-b4e5-c01f2b281c70", + "createdTime": "2021-01-15T22:47:57.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d72e4b9-0e98-4d7f-ae10-3077b19e0881", + "createdTime": "2021-01-15T22:47:56.725Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e11ec43-a324-4da6-8b06-1dc686ba13bf", + "createdTime": "2021-01-15T22:47:56.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d57bd594-b0cf-4d1b-8b49-8fd03b3239ab", + "createdTime": "2021-01-15T22:47:55.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "397d4b15-7bdd-489b-a06a-d876195d7220", + "createdTime": "2021-01-15T22:47:54.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4262b3c7-80fc-4b32-b4cd-ad6e7e666c3d", + "createdTime": "2021-01-15T22:47:54.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee93e2ef-f5e8-44e9-8e44-d171069ef989", + "createdTime": "2021-01-15T22:47:54.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "442bcfbc-74d3-46b2-9d06-0d9c0181bd4c", + "createdTime": "2021-01-15T22:47:53.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe6a74e5-ca30-4963-a9bf-27e7661b65d2", + "createdTime": "2021-01-15T22:47:52.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7da25cf-08a4-44f9-bdee-89e1515e9fed", + "createdTime": "2021-01-15T22:47:52.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1af594a3-8c12-4db4-8055-ee1a88fedd45", + "createdTime": "2021-01-15T22:47:51.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0386269a-594a-424d-8518-73c5d607dd07", + "createdTime": "2021-01-15T22:47:47.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e00afb46-54fd-4bb5-89b3-6d1b8b8729fe", + "createdTime": "2021-01-15T22:47:46.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "392289a1-45f2-4bb9-aca8-880ef5ef042c", + "createdTime": "2021-01-15T22:47:46.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a451c7bb-60c6-4c7b-b5f2-c631ec0bf9ac", + "createdTime": "2021-01-15T22:47:45.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1138b388-7541-4d92-9fde-b84c3064fe52", + "createdTime": "2021-01-15T22:47:45.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2c5014d1-e27d-478d-9cc1-b61c2ec62968", + "createdTime": "2021-01-15T22:47:44.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d7b511c-4864-49cb-a597-c46d5fb7f898", + "createdTime": "2021-01-15T22:47:41.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f036f2c9-2ccb-46c6-9c87-acec2b1afadb", + "createdTime": "2021-01-15T22:47:40.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e86da520-1142-49d0-8405-f2c0730011bd", + "createdTime": "2021-01-15T22:47:40.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5fab0592-45fb-466a-b865-7983ad8f084a", + "createdTime": "2021-01-15T22:47:39.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88727778-f4bd-4274-8715-49dcd54fbf88", + "createdTime": "2021-01-15T22:47:39.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "595d260f-840e-423e-92a4-eefc4aeeb52d", + "createdTime": "2021-01-15T22:47:38.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "201e8bac-b1cb-43d5-b6a3-e2438b009792", + "createdTime": "2021-01-15T22:47:32.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e85c7dc2-0464-4e83-97e2-c8599776ce43", + "createdTime": "2021-01-15T22:47:32.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3786674-fa01-4df4-8c10-14244f7cab96", + "createdTime": "2021-01-15T22:47:31.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c1a8408-c23a-48f5-b4a1-bd99bedeb6a3", + "createdTime": "2021-01-15T22:47:31.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "30a58028-c501-45f8-9ac9-4a200bdd806d", + "createdTime": "2021-01-15T22:47:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "10cbf709-0298-4b76-85ef-c13c306f025a", + "createdTime": "2021-01-15T22:47:29.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "883d8fea-983b-42fb-8fe3-479917733af5", + "createdTime": "2021-01-15T22:47:26.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "692d1728-f52e-49be-be09-c8c7242b10b3", + "createdTime": "2021-01-15T22:47:26.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1cb5f785-3ad7-4206-a462-7807d73151e7", + "createdTime": "2021-01-15T22:47:25.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "467e33b1-8021-4ec4-a1c4-85bebcd84bca", + "createdTime": "2021-01-15T22:47:24.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "171a466b-67d1-479c-9de6-1b6518cf89e4", + "createdTime": "2021-01-15T22:47:24.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b862ac66-7563-4200-9eb1-5bafa15a54ca", + "createdTime": "2021-01-15T22:47:23.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b02cd29-5635-44f4-b569-f6d31f4dbd6f", + "createdTime": "2021-01-15T22:46:52.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1e261a38-a863-4ebf-b39b-d57bc5afaf36", + "createdTime": "2021-01-15T22:46:51.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b7eba64-43e3-4baa-bc13-c608a197c955", + "createdTime": "2021-01-15T22:46:51.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6b13d336-f31b-4b2c-a08b-440ed8ac9389", + "createdTime": "2021-01-15T22:46:50.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e442a937-efe6-4a98-b9f1-9bd88bc21d45", + "createdTime": "2021-01-15T22:46:50.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e91cb59-4aa1-4e50-bc76-9f042cb2ca62", + "createdTime": "2021-01-15T22:46:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8ebc80f8-e193-4f8b-98e9-404a022ae87f", + "createdTime": "2021-01-15T22:46:48.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "afc70d81-a0e2-427e-b6bf-c1811b0b2c68", + "createdTime": "2021-01-15T22:46:47.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ed152-709f-4318-af69-abf429218c98", + "createdTime": "2021-01-15T22:46:47.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a46d9c7c-80ae-4bc6-b195-4f6341e365fc", + "createdTime": "2021-01-15T22:46:47.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd6fff20-7031-4efb-ba27-759b01a63dfd", + "createdTime": "2021-01-15T22:46:46.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8198d335-3d22-42ce-b24d-68bf75d93094", + "createdTime": "2021-01-15T22:46:46.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5c230f1-3b66-4304-a9b4-8583b929cbc3", + "createdTime": "2021-01-15T22:46:45.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8e5bee3b-a5e0-4be3-a4ae-e7e89df7c290", + "createdTime": "2021-01-15T22:46:45.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "facf5ab6-dd6c-41b0-919e-31be5d650064", + "createdTime": "2021-01-15T22:45:58.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4fc467-b67f-400a-b1fc-6df0063e37f2", + "createdTime": "2021-01-15T22:45:56.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b0c72571-34b7-4b63-bfa5-16a02145ac55", + "createdTime": "2021-01-15T22:45:56.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93c2e442-c339-4234-af1b-22ef9ef34f1a", + "createdTime": "2021-01-15T22:45:56.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "11513dcb-a253-409c-958a-6f3612d2360c", + "createdTime": "2021-01-15T22:45:55.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "755c07f5-d983-4cd5-8678-ad136ab216c1", + "createdTime": "2021-01-15T22:45:55.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0e1aabb-7e7c-4f8a-bcf1-9b8a8a17a2c9", + "createdTime": "2021-01-15T22:45:54.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "00b428e7-0d0a-4e54-b7b5-d82a4eac95f2", + "createdTime": "2021-01-15T22:45:54.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a785b03-d927-4f3a-92d2-045b19e3f40d", + "createdTime": "2021-01-15T22:45:53.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e8cd296b-3351-4956-b1e0-c1e195c1256f", + "createdTime": "2021-01-15T22:45:52.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03afa5d1-894a-491d-98de-a7e453371075", + "createdTime": "2021-01-15T22:43:49.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8a0973e5-1739-49cb-8dd9-651df370448d", + "createdTime": "2021-01-15T22:43:49.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fc2f2ac-5186-46de-88c6-795438472356", + "createdTime": "2021-01-15T22:43:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "300448ea-4a5e-4091-a9a3-5073fe1afb76", + "createdTime": "2021-01-15T22:43:47.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a2166a97-903e-44f6-a1de-7672052dd729", + "createdTime": "2021-01-15T22:43:46.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "da8714a6-73d6-447e-be24-c177a9d5ff2b", + "createdTime": "2021-01-15T22:43:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7356751a-a52c-47bc-9a1c-27b32fa92d56", + "createdTime": "2021-01-15T22:43:41.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ec5129d-2fca-4c4e-9a43-7e07f13d67b2", + "createdTime": "2021-01-15T22:43:41.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33caf257-38c0-4d8f-b35f-ee0966410209", + "createdTime": "2021-01-15T22:43:40.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cf980399-a0e1-4014-b8e9-46955787c3a3", + "createdTime": "2021-01-15T22:43:39.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "36f4daea-e8d7-40ec-a27e-6fd42d36ee80", + "createdTime": "2021-01-15T22:43:38.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cc1c720c-3614-4d5b-9bf7-137df82e39be", + "createdTime": "2021-01-15T22:43:37.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f77f947-d93d-462d-99f6-50a1caddce23", + "createdTime": "2021-01-15T22:43:06.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "524cecb3-f84e-4475-8a75-dd1d3881ecd6", + "createdTime": "2021-01-15T22:43:05.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a2adc0d-abeb-439d-b24c-b89681a03612", + "createdTime": "2021-01-15T22:43:04.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a7ccf72-6719-47bc-8921-78a0be67226a", + "createdTime": "2021-01-15T22:43:03.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9dcce235-49f1-45aa-8e3d-28f0ccaa9e6f", + "createdTime": "2021-01-15T22:43:02.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec024541-1804-4a80-8252-30bb0f8fcfda", + "createdTime": "2021-01-15T22:42:56.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b5fa1e9-589b-4bb1-9a7a-8779d131d3a0", + "createdTime": "2021-01-15T22:42:52.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5a913dd1-5f68-41b2-b99d-5696cd297950", + "createdTime": "2021-01-15T22:42:51.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4a11b61c-77cc-4cf0-98e1-64c55bb4d89b", + "createdTime": "2021-01-15T22:42:50.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1f5f4aaf-360a-4ce5-a232-5396c2cc170c", + "createdTime": "2021-01-15T22:42:49.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4b392d2-f500-4cd4-8d81-d64a541d9ea0", + "createdTime": "2021-01-15T22:42:47.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec98072a-bcde-43ba-a2da-ad4faf2ade08", + "createdTime": "2021-01-15T22:42:46.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a47c29-8419-4cfb-bcca-d7a9e2e4c88d", + "createdTime": "2021-01-15T22:40:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b176878f-b1f1-4994-b854-8efe96c0a014", + "createdTime": "2021-01-15T22:40:10.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8facb3f8-1794-4161-8ae7-139cb2c78859", + "createdTime": "2021-01-15T22:40:07.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d23d2352-b69c-469c-9eea-032152d2bd32", + "createdTime": "2021-01-15T22:39:55.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6437ec39-7689-4a43-9436-201f816a664e", + "createdTime": "2021-01-15T22:39:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1827f012-1895-47d5-b1f5-c5a4a8eeb379", + "createdTime": "2021-01-15T22:39:27.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f960e154-81c6-42ae-9074-9afc8ba21b2e", + "createdTime": "2021-01-15T22:36:16.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2b2d6a2-911e-46f5-860b-72a55792c2e5", + "createdTime": "2021-01-15T22:35:55.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee2cc2ad-aee9-4674-bd68-958d08b0a047", + "createdTime": "2021-01-15T22:27:56.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6527cedf-82be-49e1-8ab4-c94e4bc66686", + "createdTime": "2021-01-15T22:29:53.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "192e0c44-92bf-4745-9b16-a10648bad0fa", + "createdTime": "2021-01-15T22:29:51.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d95d2873-54ef-43e0-ab1c-720f405ce7f8", + "createdTime": "2021-01-15T22:27:49.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6889ba40-0beb-4810-8767-2b9636576321", + "createdTime": "2021-01-15T22:29:46.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ce582de-eda2-4327-a684-bfaa5df2d42b", + "createdTime": "2021-01-15T22:29:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d613855d-9fc6-49af-b760-0f6ac8092b12", + "createdTime": "2021-01-15T22:27:39.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cf01a009-dea2-459f-8f5d-db73829c5736", + "createdTime": "2021-01-15T22:27:32.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8bfd1ed0-32a1-40e0-afac-8ae53f8d67b8", + "createdTime": "2021-01-15T22:30:30.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ecf94ca1-3fb5-4a19-b150-ee4a6effc4cd", + "createdTime": "2021-01-15T22:30:23.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "088877ba-9607-466a-ace8-94af26579ac5", + "createdTime": "2021-01-15T22:27:17.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "da4f898f-73c4-4d01-82ac-f667d38f0450", + "createdTime": "2021-01-15T22:30:29.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12c4d1d1-2ff2-4483-971b-a8ddc825bf0a", + "createdTime": "2021-01-15T22:30:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f2e912c-bff8-43e7-a2ce-ea50f34a3bbb", + "createdTime": "2021-01-15T22:30:28.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4c36e3f7-410e-49ae-b62d-b1a06dce1c29", + "createdTime": "2021-01-15T22:30:28.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "204a1558-506d-474b-a24b-1c16742c46c8", + "createdTime": "2021-01-15T22:30:27.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1f8f335-469c-49f3-b839-f226bb1571bb", + "createdTime": "2021-01-15T22:30:22.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2869a7ac-5a54-4fbb-a478-0ebd0fbaf2ae", + "createdTime": "2021-01-15T22:30:22.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ecfbe245-0791-4263-b5fb-1fad5048a316", + "createdTime": "2021-01-15T22:30:21.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "52b0d652-9193-4ee8-ae59-94484906cf99", + "createdTime": "2021-01-15T22:30:21.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b0d411b-c23e-4eee-8d68-24b320996e96", + "createdTime": "2021-01-15T22:30:20.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4816673e-58a3-4a84-957f-288a102c647c", + "createdTime": "2021-01-15T22:29:52.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a652f3dc-5643-42b1-8a23-d7565d2c6484", + "createdTime": "2021-01-15T22:29:51.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a3fe2677-d098-49e8-b4dc-f5ee5bd36f7e", + "createdTime": "2021-01-15T22:29:51.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "32b4c722-6ebd-442d-b7cf-c907d8694448", + "createdTime": "2021-01-15T22:29:50.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f7475f9-fadc-4008-87af-890e07991126", + "createdTime": "2021-01-15T22:29:50.753Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "87f7236a-a2c6-4ce0-925e-8c42ab011d84", + "createdTime": "2021-01-15T22:29:50.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f01d9c72-ee19-4057-aa2e-3ed53be42d0e", + "createdTime": "2021-01-15T22:29:50.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aa99d3da-2a6a-4032-aab9-775485c83666", + "createdTime": "2021-01-15T22:29:49.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92f9c74b-3081-408f-b8f0-3c1d11493af8", + "createdTime": "2021-01-15T22:29:48.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0ac083b8-d7ad-4f7a-a447-8104ad579344", + "createdTime": "2021-01-15T22:29:47.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d67a2ef-9aa3-4353-a12a-ddacf212ad0c", + "createdTime": "2021-01-15T22:29:46.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a2e557-f9bd-488d-a1b1-cba2a7d4873c", + "createdTime": "2021-01-15T22:29:45.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8e9c66c4-3684-4075-a8c3-c0044fcdf526", + "createdTime": "2021-01-15T22:29:44.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f84f825b-125d-4327-9bc4-4fcdf67d14db", + "createdTime": "2021-01-15T22:29:44.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "167abeed-4e74-4e98-8d5c-b1010cd9661a", + "createdTime": "2021-01-15T22:29:43.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0f1d968a-64f3-457d-b29b-5a73751bd829", + "createdTime": "2021-01-15T22:29:43.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b601310-2243-4509-917f-c124890b8484", + "createdTime": "2021-01-15T22:29:42.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d4d694ab-d049-4bd5-bdab-ed400f970490", + "createdTime": "2021-01-15T22:29:42.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b8e582d5-74e4-41b1-9409-4e7b148b5d39", + "createdTime": "2021-01-15T22:29:41.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1df622c5-06fd-4f09-bf0c-cca9f5de8a94", + "createdTime": "2021-01-15T22:29:41.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce3dfb30-6715-44a3-8c1c-4676009d9d20", + "createdTime": "2021-01-15T22:27:55.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c361221-42d7-4657-920a-4ce1aaf35708", + "createdTime": "2021-01-15T22:27:55.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c95260e8-0634-4940-9719-d8408a289106", + "createdTime": "2021-01-15T22:27:54.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3830677-734d-422e-8c69-fd6cda51b7c6", + "createdTime": "2021-01-15T22:27:53.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9fc2bafb-57af-44a7-9db1-be78d9b2bd6e", + "createdTime": "2021-01-15T22:27:52.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f383d74-2218-48d5-a799-53d5ee17b2b7", + "createdTime": "2021-01-15T22:27:48.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e7530fc-4231-40c2-bfc9-b5a04c7ff4d1", + "createdTime": "2021-01-15T22:27:47.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b40ea32e-33e2-4262-bbf8-993de0462aa4", + "createdTime": "2021-01-15T22:27:47.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4a61487-ce43-4778-9213-0f8111f1ca1e", + "createdTime": "2021-01-15T22:27:46.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f968dda-01fb-48ae-89d4-06d90de9579f", + "createdTime": "2021-01-15T22:27:45.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b439d1a-51a5-426a-96f3-e82533e7094d", + "createdTime": "2021-01-15T22:27:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "13956631-d901-44cd-9b90-e73b3e1eba4f", + "createdTime": "2021-01-15T22:27:38.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "153ffb2e-f51a-4782-9350-69ad968f3442", + "createdTime": "2021-01-15T22:27:37.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4305f5ba-800e-431e-b727-b35e02265fd0", + "createdTime": "2021-01-15T22:27:37.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15a94f3c-8a59-4136-8934-f2a2dea70541", + "createdTime": "2021-01-15T22:27:36.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23af3c7c-fcee-42c8-b083-d6449157eab1", + "createdTime": "2021-01-15T22:27:31.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b8e650fe-9e57-4f35-8da7-e851f127b85a", + "createdTime": "2021-01-15T22:27:30.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fcc526a-8472-4f5f-b93b-a1126fe6658a", + "createdTime": "2021-01-15T22:27:30.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2c2456d8-8698-4b9f-b0f4-5bb46f8e9b31", + "createdTime": "2021-01-15T22:27:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "20555efd-a294-44e8-99f2-a75d437bee59", + "createdTime": "2021-01-15T22:27:28.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33b68261-4e8f-483a-b173-771773777292", + "createdTime": "2021-01-15T22:27:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e48c087-d880-4d71-a09b-1473d9eddfb7", + "createdTime": "2021-01-15T22:27:16.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e8895d6a-e48c-4359-834b-3ad70b31867c", + "createdTime": "2021-01-15T22:27:15.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d6c22672-6978-42b7-8260-04e69791fd62", + "createdTime": "2021-01-15T22:27:14.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "341eb9c6-f04f-45f1-86e8-474fa8c18824", + "createdTime": "2021-01-15T22:27:14.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d590e7b5-4193-400f-bf6d-ab148d1625ec", + "createdTime": "2021-01-15T22:27:10.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "744d82ed-ceb7-4941-93f5-80ec4e4eff78", + "createdTime": "2021-01-15T22:27:09.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e6b69137-7945-4e45-8baa-ef1f4fa2f6b2", + "createdTime": "2021-01-15T22:27:09.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "88838bca-732f-451e-8e09-5cd0554b8246", + "createdTime": "2021-01-15T22:27:08.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f120eb57-b097-4e6d-ba2f-9edea0845b74", + "createdTime": "2021-01-15T22:27:07.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee610d7f-ded0-4654-bcb2-d320b3bd13d8", + "createdTime": "2021-01-15T22:27:07.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f11260cd-a4ed-41a1-8f06-d3126ff5c5f3", + "createdTime": "2021-01-15T22:24:09.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "16f3a4c7-7877-410c-8411-3bda237af183", + "createdTime": "2021-01-15T22:24:09.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5323fc78-fcca-4a5b-89df-eef786f3ca7d", + "createdTime": "2021-01-15T22:24:08.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2bd4d0c-7e2d-429a-9df3-d49cc2c3b285", + "createdTime": "2021-01-15T22:24:07.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cec37f31-0301-412b-add2-d9cdf9f56de6", + "createdTime": "2021-01-15T22:24:07.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "52fd5e69-be1c-41d8-8e89-985bc13cdeec", + "createdTime": "2021-01-15T22:24:06.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1be3d46a-200b-4a80-ad22-4a445a94181a", + "createdTime": "2021-01-15T22:24:02.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bc21fa80-6a6b-4cd9-ba44-f3795dc0ef87", + "createdTime": "2021-01-15T22:24:01.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ef027498-bec1-4972-9766-eaa887467ffd", + "createdTime": "2021-01-15T22:24:01.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2f8a948-dcd2-487c-aed2-08417ac41bee", + "createdTime": "2021-01-15T22:24:00.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cbd48fd1-371f-4b24-9625-647bd4acc32e", + "createdTime": "2021-01-15T22:23:59.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d2f3f80-e1ec-49f6-b6ff-1e52cca7129f", + "createdTime": "2021-01-15T22:23:59.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b966d731-8e42-4ac5-a4c9-b637bc64ed9f", + "createdTime": "2021-01-15T22:23:04.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "456afc45-fc42-43c8-9155-f5d02d7cb1db", + "createdTime": "2021-01-15T22:23:03.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "19b0d49d-4c33-45bb-b331-4a776b4dcbfc", + "createdTime": "2021-01-15T22:23:02.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea565676-2b18-4f1b-803e-5d73d9d5b5a8", + "createdTime": "2021-01-15T22:23:02.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d16afae9-dffa-449b-a150-937272d8bbde", + "createdTime": "2021-01-15T22:23:01.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8871ced3-ae2b-429f-ae6f-abe4c16e7f28", + "createdTime": "2021-01-15T22:23:00.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1b2f921-b034-4b3b-8cb9-ee1cc51b45c6", + "createdTime": "2021-01-15T22:22:57.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f005f466-1805-482e-9339-3f726b46feb2", + "createdTime": "2021-01-15T22:22:56.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "906634c0-67db-43c3-97da-7dc95757300d", + "createdTime": "2021-01-15T22:22:55.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f64adc53-d7b2-4826-84fd-f95a5c45fd36", + "createdTime": "2021-01-15T22:22:54.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ccb30ec-d4bb-4e8a-8f6e-f45509e42a8f", + "createdTime": "2021-01-15T22:22:53.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "41d0d1ba-ad70-4247-a535-a97bc8f8dc42", + "createdTime": "2021-01-15T22:22:52.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2b44dc7-4ff0-4932-8bb2-5cbc6fea7d65", + "createdTime": "2021-01-15T22:21:36.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78938f62-6d33-4589-be27-a7fe49d52509", + "createdTime": "2021-01-15T22:20:51.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9850f294-a5c5-444c-818b-5926bbeed74f", + "createdTime": "2021-01-15T22:20:21.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0218e43-ce9e-4e56-a92c-0bed28e57c69", + "createdTime": "2021-01-15T22:19:30.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "faafec77-0462-4df8-990b-bf52453a5372", + "createdTime": "2021-01-15T22:19:03.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2fdd1e1b-0098-4a56-aef6-012a8244c8da", + "createdTime": "2021-01-15T22:18:44.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "38488033-40c7-4227-b3a5-46661dd43527", + "createdTime": "2021-01-15T22:16:54.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30186b33-7d3e-4b83-8dbf-15fa56d006f4", + "createdTime": "2021-01-15T22:16:10.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50caab4c-4bd7-434b-a31f-e753ad4fc52f", + "createdTime": "2021-01-15T21:21:19.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "29379133-fd21-49c5-9c42-1cab4ffcc3aa", + "createdTime": "2021-01-15T21:21:15.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d181e8dc-9159-4a2f-b8ca-394a8674d2b9", + "createdTime": "2021-01-15T21:21:46.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fc36bb1-8f73-4270-b258-d5eab1eb152a", + "createdTime": "2021-01-15T21:21:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6246631d-393f-4549-93f9-9a1d45fef618", + "createdTime": "2021-01-15T21:21:26.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "00205c92-3252-4d33-becb-cf8a3b1af284", + "createdTime": "2021-01-15T21:21:21.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6685c4b5-46ee-4f5d-86b9-40c2add4c02c", + "createdTime": "2021-01-15T21:21:20.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "07e7a179-30a4-4e74-bc62-0c228b9178dd", + "createdTime": "2021-01-15T21:21:45.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0fb52223-7d1f-4788-932a-e8f77e393aa3", + "createdTime": "2021-01-15T21:21:44.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b390c22c-a730-465b-a8b2-0950d15b0c1d", + "createdTime": "2021-01-15T21:21:44.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "59bb84cd-931c-47d4-b66d-55d2f4be0714", + "createdTime": "2021-01-15T21:21:43.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "213c7e14-714b-4431-802e-08436fa817e7", + "createdTime": "2021-01-15T21:21:42.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cf7383c-e00d-48a2-a5ac-13bf351feb46", + "createdTime": "2021-01-15T21:21:38.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "89b766c7-4b47-44eb-9055-eeb6cd92951f", + "createdTime": "2021-01-15T21:21:38.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "91d5d5aa-c826-4447-be14-90c3aeb9ab6a", + "createdTime": "2021-01-15T21:21:37.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2df737d5-7088-4fc2-a08b-d48036b68c07", + "createdTime": "2021-01-15T21:21:36.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "61288851-1522-4c0f-af1f-79083932281b", + "createdTime": "2021-01-15T21:21:35.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d133834b-2524-41f4-9e50-e0d1c46242bf", + "createdTime": "2021-01-15T21:21:25.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7833d544-41ed-4275-b297-bd2763c34543", + "createdTime": "2021-01-15T21:21:24.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aedac735-2f33-4a61-a949-d7636ddd81c0", + "createdTime": "2021-01-15T21:21:23.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "72759eac-2fc7-4594-99e8-2a073cc812e4", + "createdTime": "2021-01-15T21:21:23.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6080385d-8c09-4d9a-9e13-ce05d6b508c8", + "createdTime": "2021-01-15T21:21:22.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58321663-6fc1-46bc-86b0-2ff9f521ff2c", + "createdTime": "2021-01-15T21:21:20.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa64d1bc-2298-4d6b-bd25-bc412b26db41", + "createdTime": "2021-01-15T21:21:20.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "faeb07c1-430a-410e-895e-56cc828b5080", + "createdTime": "2021-01-15T21:21:19.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4a9324aa-385d-4ef8-b0d3-9d56f9cf97ae", + "createdTime": "2021-01-15T21:21:19.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2781eac5-20d2-4441-82dd-95396ec4a835", + "createdTime": "2021-01-15T21:21:19.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6108b3d5-93ea-4913-9562-a13b7bd3cac0", + "createdTime": "2021-01-15T21:21:18.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1ae6dd9f-5714-46a3-9aad-507a8142c6e9", + "createdTime": "2021-01-15T21:21:18.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a5d87ba3-cd51-4a7a-8641-aeee6114da84", + "createdTime": "2021-01-15T21:21:18.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d7065af4-06d8-4bc0-9c40-39edbd820282", + "createdTime": "2021-01-15T21:21:18.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d229c2aa-079a-4dd4-ac59-18c2632fedb0", + "createdTime": "2021-01-15T21:21:17.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "38084e22-009f-4c8f-9555-0833054156a2", + "createdTime": "2021-01-15T21:21:17.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32b38efb-268b-4a52-834e-90837664f7e9", + "createdTime": "2021-01-15T21:21:17.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad009ae3-38ce-4197-a58e-0bd850a29932", + "createdTime": "2021-01-15T21:21:16.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da5565cf-7771-4cdb-b3bd-903535f8e824", + "createdTime": "2021-01-15T21:21:16.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a71bae1b-90ea-4179-91bf-05a8e12e0ac0", + "createdTime": "2021-01-15T21:21:15.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2713b32c-0053-4a4b-b8ee-e0adfc8c7dfc", + "createdTime": "2021-01-15T21:21:14.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db14a0fb-4558-414e-be00-03efd3744d02", + "createdTime": "2021-01-15T21:21:14.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fd39b039-d113-4ce4-bf72-13c80b76826f", + "createdTime": "2021-01-15T21:21:13.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4ba8073-2e49-4dff-8c57-9cbd2a9491bb", + "createdTime": "2021-01-15T21:21:13.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "12359dc9-16ca-4480-92fa-027fdfe6a7ab", + "createdTime": "2021-01-15T21:21:12.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f7e269fa-c0ad-44cb-8562-d134c28075ed", + "createdTime": "2021-01-15T21:21:12.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1256b08c-5c14-45bf-ad3b-13543782db42", + "createdTime": "2021-01-15T21:21:12.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9f0ef92-e896-44fa-905b-d4d258464f00", + "createdTime": "2021-01-15T21:21:12.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9801053c-1edc-4c1c-8f50-9849e20ef7c2", + "createdTime": "2021-01-15T21:21:11.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8dedfa33-261e-453b-ae73-fef418f31956", + "createdTime": "2021-01-15T21:21:10.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fa129d3d-f263-458e-b7b7-ee0f7a47c4f8", + "createdTime": "2021-01-15T21:21:10.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8750b36e-e0e8-4ed9-ae91-b5821a4f81f1", + "createdTime": "2021-01-15T21:20:47.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f57780b6-9eba-472e-adee-57841ea45391", + "createdTime": "2021-01-15T21:20:46.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7a34f1-a492-48dc-a99f-b1cc5808b350", + "createdTime": "2021-01-15T21:20:46.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f09c7ad8-92ca-46df-b208-035a7cd8c7ee", + "createdTime": "2021-01-15T21:20:45.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eb431d6c-0712-42ce-a7cb-c8b57d54dc01", + "createdTime": "2021-01-15T21:20:44.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5905ba12-8871-4cd9-aaa4-bfa3e6940d6c", + "createdTime": "2021-01-15T21:20:43.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f9e9129-3137-4f9c-96f0-7ae673c58192", + "createdTime": "2021-01-15T21:20:40.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2b522df8-5254-462d-92e1-638a30f55f39", + "createdTime": "2021-01-15T21:20:40.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "07878fa0-b79c-4f2a-8961-dd3b46fba923", + "createdTime": "2021-01-15T21:20:39.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "921af42d-a735-4289-b40a-e98905997f17", + "createdTime": "2021-01-15T21:20:38.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6490fdc-9408-4248-8fa3-7b4f1424f3d6", + "createdTime": "2021-01-15T21:20:38.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c3fcc851-2acb-42ca-bcd2-72251b61b115", + "createdTime": "2021-01-15T21:20:37.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a603d128-d58f-4ae2-ae73-89420c8e209a", + "createdTime": "2021-01-15T21:20:04.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee729d6a-c31e-48ad-af1a-3c9f32db2123", + "createdTime": "2021-01-15T21:20:03.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0c6f6213-e21c-418e-83e5-3a81f090cf5a", + "createdTime": "2021-01-15T21:20:02.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2e7338aa-b7e6-4717-9c0e-8e5d5e2b98da", + "createdTime": "2021-01-15T21:20:01.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b99d3009-e6bc-4748-ba1d-7417b9bb8b49", + "createdTime": "2021-01-15T21:20:01.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a945e9dd-2d76-4db2-b27c-d3b2dfa6417e", + "createdTime": "2021-01-15T21:20:00.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4033a439-a1dc-475e-9b88-7e9818ad3660", + "createdTime": "2021-01-15T21:19:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a87351c9-9cdb-4660-a738-a2dbe490a876", + "createdTime": "2021-01-15T21:19:56.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a42124-674d-415a-bcc4-bcbb8df72f67", + "createdTime": "2021-01-15T21:19:56.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c74f78f-e3f5-4f00-aad2-9edca85f6b89", + "createdTime": "2021-01-15T21:19:55.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e5d3491d-9b8a-4d4a-a1ce-aaf1e70d88e8", + "createdTime": "2021-01-15T21:19:54.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee116711-1149-4f6f-ae42-48f9e40255d8", + "createdTime": "2021-01-15T21:19:52.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "11cc6f69-08f2-4abd-8639-fc04887d92e3", + "createdTime": "2021-01-15T21:18:28.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c0a5d6b1-70c9-4f55-b580-a30c2b8327af", + "createdTime": "2021-01-15T21:18:28.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea0c022b-fe16-4867-ad29-b4a3fcd9ae3f", + "createdTime": "2021-01-15T21:18:27.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6ec7d6c-e8ff-4fa9-99e5-e6178923e7e0", + "createdTime": "2021-01-15T21:18:26.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2552ba9d-65f0-42d7-b021-4063691a45b0", + "createdTime": "2021-01-15T21:18:25.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ce43bb6e-3770-4655-8ed2-08b6ef67162e", + "createdTime": "2021-01-15T21:18:24.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9369658e-9f25-431c-8eaa-3dffbe13417c", + "createdTime": "2021-01-15T21:18:21.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ab5444f0-d3d5-4160-ac42-6810a858944a", + "createdTime": "2021-01-15T21:18:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e33bc3ee-535b-4973-a905-b151bb6701c9", + "createdTime": "2021-01-15T21:18:20.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7665178b-4d28-4f19-af50-06f4b9bd7d2e", + "createdTime": "2021-01-15T21:18:19.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee21854a-71fc-4284-bca0-1e52e1f82aad", + "createdTime": "2021-01-15T21:18:19.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbb7b909-b563-43b4-b7c3-7cd130249ba5", + "createdTime": "2021-01-15T21:18:18.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "984448f7-6967-4412-a349-ef4e7216b3e2", + "createdTime": "2021-01-15T21:17:41.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8cba583-0b73-47dd-9e60-6f5963858867", + "createdTime": "2021-01-15T21:17:40.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "155b8778-06d4-45ca-bca0-df9502a1ba94", + "createdTime": "2021-01-15T21:17:40.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f35a8cc-4433-4d8a-bd78-466d14c9786b", + "createdTime": "2021-01-15T21:17:39.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e8e657b1-7564-4f20-b2e3-c6683285c105", + "createdTime": "2021-01-15T21:17:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6013748b-2de0-402d-a893-6682f07709d6", + "createdTime": "2021-01-15T21:17:36.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b75e0270-6d5a-462d-97a9-f70c0fbd6112", + "createdTime": "2021-01-15T21:17:32.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57cf32d7-0e7c-4fda-8091-0aabb9204253", + "createdTime": "2021-01-15T21:17:31.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2b5724f-ab14-4cf8-84ae-d8a95a432b86", + "createdTime": "2021-01-15T21:17:31.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c1ee1aea-9778-479a-a695-0331fe1c56c7", + "createdTime": "2021-01-15T21:17:30.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b4c3a28-d50a-4a44-a9da-6705df9aa822", + "createdTime": "2021-01-15T21:17:29.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4012cc9e-2775-4b82-8eb5-cf7d6a516cb0", + "createdTime": "2021-01-15T21:17:28.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b0f7727-cc58-493e-ac3b-2faee1f53f08", + "createdTime": "2021-01-15T21:13:03.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1325c1f4-2727-4020-8684-5e9e485ceaf1", + "createdTime": "2021-01-15T21:11:45.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a7513e-0ca8-43fb-8107-c5a6b84f34e1", + "createdTime": "2021-01-15T21:11:42.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f237882d-0899-421e-91f4-d96e1a702e1b", + "createdTime": "2021-01-15T21:11:24.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "962cf525-7130-4de1-bf0f-655a27386ed7", + "createdTime": "2021-01-15T21:11:03.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28683162-0564-45c3-84d3-7c0a6609bb32", + "createdTime": "2021-01-15T21:09:58.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16ab0427-e896-4daa-ac71-e78b262825cf", + "createdTime": "2021-01-15T21:08:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6545eacc-6183-45f1-8a6a-733676abf556", + "createdTime": "2021-01-15T21:07:40.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b66f4a70-4a07-44e5-8934-e666eaf76f62", + "createdTime": "2021-01-15T21:01:41.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "646b420d-d5b3-41d7-a131-8ffcdb4bfe96", + "createdTime": "2021-01-15T21:01:41.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "36f404c6-da9a-45a8-ae0f-eb3265d55f54", + "createdTime": "2021-01-15T21:01:40.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3d2bf09-6ee3-4bab-811d-08205c3a340b", + "createdTime": "2021-01-15T21:01:39.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7775a44a-09a9-4f37-9396-77ae57cdce96", + "createdTime": "2021-01-15T21:01:39.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3777a678-a302-40b1-8a0a-2c718d2ddb6b", + "createdTime": "2021-01-15T21:01:38.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e35dc22b-c2d5-4106-a37e-64d3bb37c197", + "createdTime": "2021-01-15T21:01:34.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "31606dbb-e032-410b-9d9c-2692b6adf9de", + "createdTime": "2021-01-15T21:01:34.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3febc422-77f0-4811-acfd-0cf1e063e13f", + "createdTime": "2021-01-15T21:01:33.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0594bdb7-06ee-4b7b-95e4-2f4f4eb6b065", + "createdTime": "2021-01-15T21:01:32.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c06d26d3-275d-4f12-9e18-1b67d7d1b179", + "createdTime": "2021-01-15T21:01:32.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "85c4165c-d2be-4059-b8c9-2ac3d782c21c", + "createdTime": "2021-01-15T21:01:31.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5ddf0a7-bf11-4e3b-a8b0-9459dd874f7a", + "createdTime": "2021-01-15T21:01:05.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b2ea45e0-8cd6-493c-9353-eefefcc49a9a", + "createdTime": "2021-01-15T21:01:04.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7322f64f-15fc-459c-8b0a-539b86d6c21f", + "createdTime": "2021-01-15T21:01:04.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "254414ac-d603-4f05-8507-64d7b09b8c56", + "createdTime": "2021-01-15T21:01:03.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6451c0a-09b6-4dee-a475-8e95702829e7", + "createdTime": "2021-01-15T21:01:02.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3fe63789-9aa6-4807-91f0-a81aa3ca5157", + "createdTime": "2021-01-15T21:01:02.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96b372a3-8e0f-4569-a81a-23751716e0e3", + "createdTime": "2021-01-15T21:00:58.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ea9c48fd-88ce-4922-82c8-a12f73ed10e9", + "createdTime": "2021-01-15T21:00:58.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db63900a-be0c-409d-9301-e12bb95138e6", + "createdTime": "2021-01-15T21:00:57.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7609d759-67ca-427b-8437-0fbec9169f92", + "createdTime": "2021-01-15T21:00:57.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cfcac3cd-6fd1-424f-a49e-53453bb66528", + "createdTime": "2021-01-15T21:00:56.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "623d62ae-57e4-4ada-85d0-7464e7464c6e", + "createdTime": "2021-01-15T21:00:55.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba161c90-8d7e-4f5c-9ddb-ef1c3f9f1091", + "createdTime": "2021-01-15T21:00:40.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ed775661-0071-45b1-8782-b5fec6c45b18", + "createdTime": "2021-01-15T21:00:39.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6d93736-0243-4b03-baea-1bf9a0ce0ec5", + "createdTime": "2021-01-15T21:00:39.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44cafa71-aa3c-4df9-8fba-8727c6561c1a", + "createdTime": "2021-01-15T21:00:38.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba74221e-dd32-4e5c-8dd0-a692a1db2a54", + "createdTime": "2021-01-15T21:00:37.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbfe8a84-17c0-4107-97f7-e1cf9759b8e1", + "createdTime": "2021-01-15T21:00:37.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0d72c31-5998-46de-a228-9fa0fbe2d17d", + "createdTime": "2021-01-15T21:00:33.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d716eb27-aae6-43d6-bf96-f3424304decc", + "createdTime": "2021-01-15T21:00:32.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ad9b9-2376-45d5-8bf1-4c23b79dcd68", + "createdTime": "2021-01-15T21:00:32.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "369af7b9-3cb8-498e-8590-fcad9c781a2b", + "createdTime": "2021-01-15T21:00:31.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba743cff-7e9d-4e6e-8dd1-f8f9ba9d0112", + "createdTime": "2021-01-15T21:00:30.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3294cf53-cc82-461c-be63-913c991e15a3", + "createdTime": "2021-01-15T21:00:30.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64e0a7e3-9ed4-4d90-b131-538553ede9d4", + "createdTime": "2021-01-15T21:00:14.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6c6e7070-96eb-4bd0-95ba-a3b3514af65f", + "createdTime": "2021-01-15T21:00:13.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7fc93be-01be-4f09-a3f2-b3fd56c99545", + "createdTime": "2021-01-15T21:00:13.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0979b8e2-b8c2-4c71-8791-6b035df222d4", + "createdTime": "2021-01-15T21:00:12.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad1432fe-0bad-4764-b6d2-63aec3f4bc3c", + "createdTime": "2021-01-15T21:00:12.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "abc2c956-bb77-4795-ac00-6a7661e27851", + "createdTime": "2021-01-15T21:00:11.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d64d96a6-9a3c-43ff-9ecb-475f48a1c86f", + "createdTime": "2021-01-15T21:00:08.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "58fa266f-fc14-4cb0-bef3-b9e317c85228", + "createdTime": "2021-01-15T21:00:08.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7b91d4bf-5273-4069-8f86-1a8102fcfdd3", + "createdTime": "2021-01-15T21:00:08.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a9382df-cd09-432f-88c9-6df9ceeeefa6", + "createdTime": "2021-01-15T21:00:07.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ca12e774-2b32-4f1e-b9c9-873838aba69c", + "createdTime": "2021-01-15T21:00:07.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3054833-6fea-4291-b7a1-b89731091f55", + "createdTime": "2021-01-15T21:00:07.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "664da0b3-3090-41d0-910f-81c511f9b4b2", + "createdTime": "2021-01-15T21:00:07.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2a2dc035-ef4a-45dc-ba4b-7dd49b14edf8", + "createdTime": "2021-01-15T21:00:06.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e68476e-f4d0-4dc5-8b31-14b2793dfb65", + "createdTime": "2021-01-15T21:00:06.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cc89b87e-7f55-4ceb-b1b3-fbbf067705e6", + "createdTime": "2021-01-15T21:00:05.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2744844-ab16-4b12-8b61-b4489b11eee4", + "createdTime": "2021-01-15T21:00:05.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "05472e9f-77f5-45a9-aebe-c026e84b973f", + "createdTime": "2021-01-15T21:00:05.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cacccd4d-a0f1-44fa-88f6-6295534e5bec", + "createdTime": "2021-01-15T21:00:03.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0bb3c1c4-d603-4de3-87bc-c348ce4d1bb6", + "createdTime": "2021-01-15T21:00:02.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9763192f-777d-4cc1-aa9c-54c577f0db39", + "createdTime": "2021-01-15T21:00:02.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "78babee7-0eb7-45f5-9e06-f15d1a7342bb", + "createdTime": "2021-01-15T21:00:02.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23daa9ad-e44d-476e-9346-5a2b6473becc", + "createdTime": "2021-01-15T21:00:01.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acdf2d5d-6b6e-45fe-ac75-23b46c5e52c2", + "createdTime": "2021-01-15T21:00:01.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9bfb6913-11b1-471e-a7ae-4a13d2edfb92", + "createdTime": "2021-01-15T21:00:01.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b27bafef-d7ff-4175-9711-3e96680eaa31", + "createdTime": "2021-01-15T21:00:01.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2b72bd2a-081f-4163-a4d1-c38bcc62ca83", + "createdTime": "2021-01-15T21:00:00.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "da4dd496-5bea-4ac6-b5a7-b0a6a707eebc", + "createdTime": "2021-01-15T21:00:00.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d8f62ab7-36a0-4a66-9991-1b738ca96007", + "createdTime": "2021-01-15T20:59:59.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3e386a1c-8fdf-4ff2-9103-5f05f34d69c8", + "createdTime": "2021-01-15T20:59:59.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3cabb89-d51f-4ee1-98f0-da3c5c47a6f2", + "createdTime": "2021-01-15T20:59:55.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b95cbeff-d386-4817-9213-61c2f80c012b", + "createdTime": "2021-01-15T20:59:54.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "17a68111-a06b-452d-a26a-dbc36e3cae6d", + "createdTime": "2021-01-15T20:59:53.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5f3789fe-e5d3-4ab7-a7f1-12ca8af43fc7", + "createdTime": "2021-01-15T20:59:52.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "22726465-67d7-414d-92af-56c4e906243b", + "createdTime": "2021-01-15T20:59:52.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8f1bc795-857a-4ff6-8382-1e52fd4bec38", + "createdTime": "2021-01-15T20:59:51.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b31ce7f9-f772-471c-94ce-acf416a83705", + "createdTime": "2021-01-15T20:57:01.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cc5b5ea4-adcf-4d3e-b88e-88117573cfb3", + "createdTime": "2021-01-15T20:57:00.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "890f75bd-4652-442a-8408-d2ee2af8aa6c", + "createdTime": "2021-01-15T20:56:59.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "137969f3-350a-4e2a-9b85-86a706ed2655", + "createdTime": "2021-01-15T20:56:59.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "87a1781a-784b-48e2-bf40-1c557962bfe4", + "createdTime": "2021-01-15T20:56:58.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "140fc26d-eb47-4075-bd9a-999790b490ba", + "createdTime": "2021-01-15T20:56:57.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd5f831c-5b9f-4aea-adb3-44af20352a9b", + "createdTime": "2021-01-15T20:56:54.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "48296885-603b-4f99-8e77-b33360b86eca", + "createdTime": "2021-01-15T20:56:53.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "455ab152-2520-4b56-9834-96ef9e73d509", + "createdTime": "2021-01-15T20:56:52.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "439026f6-fedf-4960-a8c4-d46e51a9e025", + "createdTime": "2021-01-15T20:56:52.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c2c8b2d9-265b-4874-819d-8a75632fab5a", + "createdTime": "2021-01-15T20:56:51.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f46ad627-73ba-4d09-9080-5800bdfeca41", + "createdTime": "2021-01-15T20:56:51.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "184413cd-723b-48cf-be93-4648ab020bcd", + "createdTime": "2021-01-15T20:56:40.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3c62d529-1735-48f5-b898-222330bd9c9c", + "createdTime": "2021-01-15T20:56:40.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fc6eae13-4a8f-49a1-be6b-f86fcaccd07e", + "createdTime": "2021-01-15T20:56:39.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bbfee62f-80e9-4754-9772-e86602a0c2dc", + "createdTime": "2021-01-15T20:56:39.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0c2b0d1b-1eab-413b-b197-4e4d3ad88ea3", + "createdTime": "2021-01-15T20:56:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b6f950e-cba0-4971-a720-d88280f0882c", + "createdTime": "2021-01-15T20:56:37.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "44f0947f-e777-446a-9681-7ae63d4c69ef", + "createdTime": "2021-01-15T20:56:33.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8bd978c-9c6c-4def-abff-5ffb3f3de052", + "createdTime": "2021-01-15T20:56:32.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db2b2f1d-ecf4-4a8d-a0a8-56445995b32f", + "createdTime": "2021-01-15T20:56:32.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad33773c-d624-48f2-9164-1ed9157c250b", + "createdTime": "2021-01-15T20:56:31.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bab4f452-2ca4-491c-a89d-4563c3bcf5c0", + "createdTime": "2021-01-15T20:56:30.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4c0f3596-7fc6-4205-ada0-8f4e20da15e3", + "createdTime": "2021-01-15T20:56:30.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ec9dcca-3b86-4a44-bd74-6e8b66a9c7e3", + "createdTime": "2021-01-15T20:53:16.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "463eccb5-0b8c-4da1-842a-7d0c49a538b1", + "createdTime": "2021-01-15T20:52:54.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6f00969-f029-4e84-8d8e-e4c845ab7b12", + "createdTime": "2021-01-15T20:52:33.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1156199-c9ac-442e-a425-83ee7ebc8285", + "createdTime": "2021-01-15T20:52:28.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fb163fe7-6e22-499d-ab8e-fced5798aa4d", + "createdTime": "2021-01-15T20:52:23.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffe2606-d260-4b4a-a789-67882f9bec3e", + "createdTime": "2021-01-15T20:51:50.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17853ede-715e-44ac-9609-7cdbfff8d35f", + "createdTime": "2021-01-15T20:49:29.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28b6afba-9b6d-4e32-87fd-6bc5f3bf7e33", + "createdTime": "2021-01-15T20:49:00.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f9a88bc-1803-4a56-a0bf-e6242cd686f3", + "createdTime": "2021-01-15T20:43:47.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f073e44b-abb2-4475-b73a-3e7ea7f5d6b5", + "createdTime": "2021-01-15T20:43:47.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ed06583-fed9-4d35-88ec-342ace3d8c77", + "createdTime": "2021-01-15T20:43:46.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b4590ed-b812-4325-a5e0-186e79be9f97", + "createdTime": "2021-01-15T20:43:46.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4622b93-c462-4f92-abe6-11028a724408", + "createdTime": "2021-01-15T20:43:45.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a73ef12f-3d32-4005-abd3-0d22117a793e", + "createdTime": "2021-01-15T20:43:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a15930e-01cb-4fd6-b6c2-e5fbe3a9e4e8", + "createdTime": "2021-01-15T20:43:42.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3ab3b635-117a-49d1-9180-6e951f108d2a", + "createdTime": "2021-01-15T20:43:41.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e0dccd6-9143-4f86-993f-e93982aa8188", + "createdTime": "2021-01-15T20:43:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95e967f2-32af-4cb3-b943-a7fc9cd48971", + "createdTime": "2021-01-15T20:43:40.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a855f7a-b495-403c-ac80-3206be50c44b", + "createdTime": "2021-01-15T20:43:40.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8e5f3c2b-4094-40c1-9e23-a655c292f527", + "createdTime": "2021-01-15T20:43:39.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc68d3ac-907b-4af5-924f-ffb09205b003", + "createdTime": "2021-01-15T20:42:30.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23ee8b52-1b77-4298-a22f-c9d6e23c042b", + "createdTime": "2021-01-15T20:42:29.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa5f4df4-dcdb-4d28-8d5e-3fc20b23a884", + "createdTime": "2021-01-15T20:42:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "21487945-470a-41f6-b716-2d4590a77c3a", + "createdTime": "2021-01-15T20:42:28.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "963ff9a9-0c4f-4109-8094-66a09f07e43a", + "createdTime": "2021-01-15T20:42:28.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9c8f9e81-0806-4d78-b960-cb92a01ec4a1", + "createdTime": "2021-01-15T20:42:27.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c6efd48-027d-4a21-84a5-b83153e6fb69", + "createdTime": "2021-01-15T20:42:25.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6e719dbe-c4bf-4c63-91e3-f10a743641bd", + "createdTime": "2021-01-15T20:42:24.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "14925443-e703-4e75-a770-8ab7104a332e", + "createdTime": "2021-01-15T20:42:24.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33d58a77-f026-4d1a-a194-83d38fae4ade", + "createdTime": "2021-01-15T20:42:23.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0698d3a4-57ca-4af7-9fea-0483c11d5e1a", + "createdTime": "2021-01-15T20:42:23.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82c649ad-35f9-4794-9d14-bdaf75aec5c6", + "createdTime": "2021-01-15T20:42:22.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2943830a-3782-49b5-bd83-5cf7676848eb", + "createdTime": "2021-01-15T20:42:02.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22061768-0d66-48ca-b413-6b5f7437cefc", + "createdTime": "2021-01-15T20:42:01.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02abcfb3-0d4a-4c06-9fb4-b7fd76eb6324", + "createdTime": "2021-01-15T20:42:01.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "520fa2f8-4c9f-4cfa-bde6-070289f51f3d", + "createdTime": "2021-01-15T20:42:00.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "17bbc28a-b38b-4bc0-9207-c92baf06cd98", + "createdTime": "2021-01-15T20:42:00.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15e6c9ef-5f78-4e16-aa3e-b90afc41aae9", + "createdTime": "2021-01-15T20:41:59.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06906aa7-12ce-49cf-b07d-6920ce8a7f52", + "createdTime": "2021-01-15T20:41:57.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "84cf7fe8-0adc-49df-afb4-cc186efbd76c", + "createdTime": "2021-01-15T20:41:57.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "76fb6744-4033-4312-a9e4-980fe8a74c2a", + "createdTime": "2021-01-15T20:41:56.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d57c9954-a9a3-4e67-b72f-513345f7dde7", + "createdTime": "2021-01-15T20:41:56.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98228d58-8a56-4211-ad01-fed869bb2298", + "createdTime": "2021-01-15T20:41:55.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "79aa11d7-c364-44ee-a595-12f66c222faf", + "createdTime": "2021-01-15T20:41:55.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53bf2296-f0f8-42ba-a327-68cefa66d25b", + "createdTime": "2021-01-15T20:41:26.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "21653add-a9e1-411c-a436-26d5dbb0c52f", + "createdTime": "2021-01-15T20:41:26.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6d94fc2e-ba18-4c0b-86b4-1b0a12788e0e", + "createdTime": "2021-01-15T20:41:25.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "792413b8-987a-4eed-b821-0ed23b75cad6", + "createdTime": "2021-01-15T20:41:24.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fb89322f-67f2-4cc0-a38b-e7818755b39a", + "createdTime": "2021-01-15T20:41:24.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f5ac3cd-4f75-493f-ad81-19f7837169ba", + "createdTime": "2021-01-15T20:41:23.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d046b962-3054-42c0-b775-69b61253b020", + "createdTime": "2021-01-15T20:41:23.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cf9f4ab-70fc-46a1-93bf-97bb5eddeab7", + "createdTime": "2021-01-15T20:41:22.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a283146-0f2e-4817-9cfb-917dac5c32c4", + "createdTime": "2021-01-15T20:41:22.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "067d7e08-f058-456b-a572-22ee2246335b", + "createdTime": "2021-01-15T20:41:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8c6c4d1e-bb0d-4470-91bf-6ff3298f4fed", + "createdTime": "2021-01-15T20:41:21.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a13be996-4723-415f-a898-649a58d3fd0c", + "createdTime": "2021-01-15T20:41:21.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0534b514-3469-4961-9acd-4f88431e4c99", + "createdTime": "2021-01-15T20:41:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4846ac06-81d4-4bb4-b0c7-ca2999fd295f", + "createdTime": "2021-01-15T20:41:20.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e11e4cbf-4a55-4bf4-a791-94aee68d7989", + "createdTime": "2021-01-15T20:41:20.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce7226f1-f3d9-480a-a577-1414bf84b350", + "createdTime": "2021-01-15T20:41:20.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7809639b-de9d-4d9f-a77d-0670961459cb", + "createdTime": "2021-01-15T20:41:19.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cde4d7f1-73fa-4e9c-9d65-d187426933f2", + "createdTime": "2021-01-15T20:41:18.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d4a37c5-5d31-4f7f-9a1f-5fdf35f64655", + "createdTime": "2021-01-15T20:41:17.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c4d9135-f938-4290-8e5c-89dcda52f862", + "createdTime": "2021-01-15T20:41:16.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d1118ef5-5d78-4835-b53b-8aca67494ea6", + "createdTime": "2021-01-15T20:41:15.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0dd5ab3-1cd4-4509-bd9b-647e0e1adb51", + "createdTime": "2021-01-15T20:41:14.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "76803282-c4ff-4ba9-a430-baba5ee48982", + "createdTime": "2021-01-15T20:41:14.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b50b78c1-d486-4fdd-87dc-8ed10a0bcefd", + "createdTime": "2021-01-15T20:41:13.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b369ac47-5aa7-4716-bcf0-879c65eebafa", + "createdTime": "2021-01-15T20:41:13.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7c46382c-ad7c-4196-8c2d-37a97f28ee8c", + "createdTime": "2021-01-15T20:41:12.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b684da94-b6d4-4b06-8176-9852a19250e6", + "createdTime": "2021-01-15T20:41:12.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f91e380e-e281-4d8e-9a51-519be5c75cfe", + "createdTime": "2021-01-15T20:41:11.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa56a3c5-b18e-4db5-9437-b32493f6ae60", + "createdTime": "2021-01-15T20:41:10.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e4356ed-6890-407b-95b1-04674b2ce9ec", + "createdTime": "2021-01-15T20:41:10.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b05e3fee-ceee-40f3-8e32-eb986e41c248", + "createdTime": "2021-01-15T20:41:06.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f42a21b0-b25d-4ecf-8eae-dfc622d2d6b5", + "createdTime": "2021-01-15T20:41:06.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ac1d0ff8-84a9-4550-a9ee-09669e6a94ba", + "createdTime": "2021-01-15T20:41:05.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95a178d8-5464-4b63-8826-cc664c281ad3", + "createdTime": "2021-01-15T20:41:04.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f099c281-d864-4839-ad45-f9628811744d", + "createdTime": "2021-01-15T20:41:03.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "49b6808b-edca-483d-8b16-be1060f1e68c", + "createdTime": "2021-01-15T20:41:02.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39b23c65-3d68-4f09-8c4e-9f6ca1dafd32", + "createdTime": "2021-01-15T20:38:38.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c197421c-e2e9-498e-907f-7dc68b0e5470", + "createdTime": "2021-01-15T20:38:37.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ace42c9c-c6b0-404d-9acb-7ca4bbb0d0f5", + "createdTime": "2021-01-15T20:38:36.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e8632c7-c07a-4774-bcfd-ed20e4482143", + "createdTime": "2021-01-15T20:38:35.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8167c5a2-3d6d-4f23-be47-2178493d10a7", + "createdTime": "2021-01-15T20:38:35.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "91faf3f3-3da5-4077-9bb8-ef47cdc0e85e", + "createdTime": "2021-01-15T20:38:34.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62714bf9-ebee-4acb-a2d0-5b0625eec10d", + "createdTime": "2021-01-15T20:38:30.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a0caa006-0e77-4bd5-a63a-38a4f5cc4bb7", + "createdTime": "2021-01-15T20:38:29.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0a5736f-20bd-4829-a337-3530045bd75b", + "createdTime": "2021-01-15T20:38:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85dc2c9d-ac42-426a-b398-09e5b3f84db3", + "createdTime": "2021-01-15T20:38:28.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b96ef778-dca8-4b35-8d97-e8b4496b2aee", + "createdTime": "2021-01-15T20:38:27.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "48ca47f9-d97c-4581-80f2-f183c97c0910", + "createdTime": "2021-01-15T20:38:26.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba66e806-8daa-4cdd-a100-2e6447647e48", + "createdTime": "2021-01-15T20:38:01.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f58339ce-b1da-4cea-9a33-abd81f4b157d", + "createdTime": "2021-01-15T20:38:00.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12a81aff-14a4-46be-9d77-a313ba0a0c83", + "createdTime": "2021-01-15T20:38:00.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "246e4492-dca5-4d95-a84c-0efea4d335f0", + "createdTime": "2021-01-15T20:37:59.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "83cdd240-deed-4579-b309-608132ff83ae", + "createdTime": "2021-01-15T20:37:58.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0af4ef4-845e-4ce3-aa2d-00e32676b905", + "createdTime": "2021-01-15T20:37:58.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4b97c7cd-5c53-4e04-9d04-7775f6bd8118", + "createdTime": "2021-01-15T20:37:54.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "beedec76-5b0f-4687-bafd-315114bc97be", + "createdTime": "2021-01-15T20:37:54.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4d4011a4-02b6-4bf3-849d-f579b12d1377", + "createdTime": "2021-01-15T20:37:53.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9d815056-ccce-4446-aaf8-83112e1f4e78", + "createdTime": "2021-01-15T20:37:52.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "242a70ff-f220-41ca-aba0-8a2861a5a0d0", + "createdTime": "2021-01-15T20:37:52.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b9912ceb-1543-498f-907b-11e02288ca1b", + "createdTime": "2021-01-15T20:37:51.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d3243cb-93e9-4f49-b110-c01af7edae60", + "createdTime": "2021-01-15T20:37:35.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a8d1b0f-97ce-471d-95f1-8887f7038bcc", + "createdTime": "2021-01-15T20:35:03.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fcb4876-f324-4e0b-a9c0-543a13fd7bdf", + "createdTime": "2021-01-15T20:34:36.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "640024be-5957-493f-8cda-2fb7c397f3ca", + "createdTime": "2021-01-15T20:33:43.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b386acb1-9b07-4192-878a-66833befc234", + "createdTime": "2021-01-15T20:32:56.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d5370165-a9d6-4f0a-9cfd-cfe70ae9a9a1", + "createdTime": "2021-01-15T20:32:54.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75215d40-feea-4488-b032-e76d171af34a", + "createdTime": "2021-01-15T20:30:19.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2dce8de-7790-498d-a5b3-af5046fbd989", + "createdTime": "2021-01-15T20:30:11.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59b38131-8405-4179-9c99-d40e57fb9c6f", + "createdTime": "2021-01-15T20:12:03.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "028e386d-2ecd-4470-8927-e7036e5916f0", + "createdTime": "2021-01-15T20:19:02.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "59804b52-a97e-42cb-a8b7-078e0af90b43", + "createdTime": "2021-01-15T20:19:56.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e146df2-28b1-49c0-af05-1b4a09e597ef", + "createdTime": "2021-01-15T20:19:56.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57e01edf-3e6c-457c-b68b-c4031ed626a4", + "createdTime": "2021-01-15T20:19:55.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "860ff57e-2d16-4a10-a913-d970293603da", + "createdTime": "2021-01-15T20:19:55.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0af1ea52-23b5-453e-8c85-696f6ec1f97d", + "createdTime": "2021-01-15T20:11:52.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "179ddc4e-e6b3-4023-be2a-dd4313204ca5", + "createdTime": "2021-01-15T20:12:44.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "65cf3795-191b-4491-8a29-28358d53bc37", + "createdTime": "2021-01-15T20:13:29.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7cd923b-9867-4f8e-acd3-2f2a67f6928f", + "createdTime": "2021-01-15T20:19:02.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9edfa2ae-0fe2-445c-a97f-36c5c058dc6a", + "createdTime": "2021-01-15T20:19:01.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f85d023e-61d9-4a94-a1e7-ec3afb7f2d82", + "createdTime": "2021-01-15T20:19:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ecc0371-9eb7-48b2-aa45-875aa3e7072e", + "createdTime": "2021-01-15T20:13:29.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "464f7688-c448-434a-b913-322daf41dd20", + "createdTime": "2021-01-15T20:13:28.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "de7686d9-6dfa-4c04-aaa7-5224c174fcbe", + "createdTime": "2021-01-15T20:13:28.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b9b0bfc-7586-4514-918a-54932e1b8396", + "createdTime": "2021-01-15T20:12:46.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d286241c-0e0d-451a-ae38-32390c4c8222", + "createdTime": "2021-01-15T20:12:43.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d1ac0223-d82b-4a25-bf2c-0768d8fba703", + "createdTime": "2021-01-15T20:12:42.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a09d0429-93a8-4e13-b715-eed74edac0eb", + "createdTime": "2021-01-15T20:12:03.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "898c088e-ae1b-4661-91a6-ef178006aa21", + "createdTime": "2021-01-15T20:12:02.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "25d92240-de48-4cf9-9dd3-ea1934c0ef51", + "createdTime": "2021-01-15T20:12:02.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f649883-3888-4cb4-8bba-23cd2e8e8a59", + "createdTime": "2021-01-15T20:11:52.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b7b1cb7b-7469-4c96-bad1-0da264e7c0b8", + "createdTime": "2021-01-15T20:11:51.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0661310c-4e73-41e3-80ff-b09f3d19d5ca", + "createdTime": "2021-01-15T20:11:51.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab269a33-e9eb-4135-90b8-4e88822e0294", + "createdTime": "2021-01-15T20:11:40.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "400930e5-7f7b-4327-9f88-c4f899cd8aa7", + "createdTime": "2021-01-15T20:11:39.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ddfd0502-3f12-43b5-8879-8005d6965e8f", + "createdTime": "2021-01-15T20:11:39.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5816f8d3-584e-4a46-a78e-dbde22379abd", + "createdTime": "2021-01-15T20:11:38.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c4c087c-a028-4ad8-9628-e129522bb68d", + "createdTime": "2021-01-15T19:06:34.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7a95a58d-4734-4318-993b-70c52f916285", + "createdTime": "2021-01-15T19:06:23.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "87133b15-78ed-42b6-bfcb-4deff7a019ab", + "createdTime": "2021-01-15T19:03:19.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30b746b4-39a9-4307-b372-9bac88a8bf46", + "createdTime": "2021-01-15T19:06:18.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22d4d197-27eb-461e-86c8-8ad393c50419", + "createdTime": "2021-01-15T19:06:11.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae8018c-211f-4044-bda5-8c27166e6db0", + "createdTime": "2021-01-15T19:06:05.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c62f191-f549-40ef-a528-268315ce5534", + "createdTime": "2021-01-15T19:06:02.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a3a8cee5-6477-4528-aefc-e8a3e6a602f1", + "createdTime": "2021-01-15T19:05:58.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1aa7940c-d00d-4b01-a23b-b06458c94048", + "createdTime": "2021-01-15T19:06:57.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f1feb65-628b-46b1-84c4-13158673eb5d", + "createdTime": "2021-01-15T19:05:57.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8fd4ef8d-a469-4709-9996-8fa5080ee894", + "createdTime": "2021-01-15T19:05:53.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1145c8da-8a96-4beb-af6b-ea38ac50bd91", + "createdTime": "2021-01-15T19:05:52.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae392bc-4ac3-47ca-b134-aa870e8d2bae", + "createdTime": "2021-01-15T19:06:51.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1ab8443f-4f55-4775-9980-c880fe08d8d5", + "createdTime": "2021-01-15T19:05:47.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5be16cf0-fe27-416e-8972-d6888d7518b1", + "createdTime": "2021-01-15T19:06:40.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "36be5df5-faf3-4a64-841f-2f2fce7cf33d", + "createdTime": "2021-01-15T19:06:57.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803244b8-a76a-489c-8281-d5f81e19fc3a", + "createdTime": "2021-01-15T19:06:56.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f4f0747-17d8-4ca0-9924-de94e5a272a2", + "createdTime": "2021-01-15T19:06:55.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7e26c14-f6e9-40ec-9c02-e29c5243c56b", + "createdTime": "2021-01-15T19:06:55.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "47eb3cb8-8d23-4523-9db5-6f4fb04f18f8", + "createdTime": "2021-01-15T19:06:54.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9705723-d4de-43ad-a0e5-2024320d37a9", + "createdTime": "2021-01-15T19:06:50.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5abfa6f-470d-4abb-ad9d-fa4ff90f7e92", + "createdTime": "2021-01-15T19:06:49.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d8b1cf6c-61ad-4ec1-8064-9839954d5b76", + "createdTime": "2021-01-15T19:06:49.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c4fd830e-4162-48ed-9089-01be2196f2d9", + "createdTime": "2021-01-15T19:06:48.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7b7d389-5d11-405e-8137-32f5bc5f9ecd", + "createdTime": "2021-01-15T19:06:48.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17c8e446-f41d-4b5f-b9bc-c6ba5a426533", + "createdTime": "2021-01-15T19:06:40.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "010b9216-1d70-47c6-ac0e-45a11ff4b598", + "createdTime": "2021-01-15T19:06:39.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cf355b8-a82e-4599-891c-eb7bd8238b7d", + "createdTime": "2021-01-15T19:06:39.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b4fbaed-cda9-43d2-8dc5-94ab866e86a9", + "createdTime": "2021-01-15T19:06:38.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f67935b-0099-4a59-abe3-404a01d98203", + "createdTime": "2021-01-15T19:06:37.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5d56ebb-59ad-4829-95f8-0b44a3735d87", + "createdTime": "2021-01-15T19:06:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c9d6abc-ad8e-4cd9-8297-56a07555ec92", + "createdTime": "2021-01-15T19:06:33.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1665b5d-058f-4d5d-9841-fee3bc57ec12", + "createdTime": "2021-01-15T19:06:32.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bcbbf1d2-0968-4d9b-8033-5136aacdd8ad", + "createdTime": "2021-01-15T19:06:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0481f298-2f78-41e5-85e7-b496b6aac908", + "createdTime": "2021-01-15T19:06:31.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c64673c5-d61a-486c-aec0-8c93acdcb4f0", + "createdTime": "2021-01-15T19:06:22.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5373eaf6-d07d-4d6d-ada3-05dc43b0e951", + "createdTime": "2021-01-15T19:06:22.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "947cbf4f-941d-430d-ae68-717da4798dd4", + "createdTime": "2021-01-15T19:06:21.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "de943b97-52e9-49c0-822d-7ef6cbb19581", + "createdTime": "2021-01-15T19:06:21.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4710b8f2-c582-4a2b-a997-c5bbcc61481a", + "createdTime": "2021-01-15T19:06:20.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d318eafd-883e-4abd-a4a2-dfd1cb23c652", + "createdTime": "2021-01-15T19:06:18.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c696cf50-9e2e-48d8-ad61-7a6e26ed4e4d", + "createdTime": "2021-01-15T19:06:17.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "812db430-f5f0-4296-bf13-3b52b152de21", + "createdTime": "2021-01-15T19:06:17.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "14dee22f-e899-49b2-8835-781f87a2df54", + "createdTime": "2021-01-15T19:06:16.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7d2b0a9b-31eb-4045-b9bc-9bcb1ecc773d", + "createdTime": "2021-01-15T19:06:16.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "505ed816-5801-4d70-881c-94a842f60560", + "createdTime": "2021-01-15T19:06:10.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c223bc12-f85e-4f30-a5cb-0d681221ce97", + "createdTime": "2021-01-15T19:06:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "47ed1ecd-d71a-4f9b-a572-3fb8654e74d3", + "createdTime": "2021-01-15T19:06:09.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b3fdb13a-e469-49dc-9a3a-e242f659d8bd", + "createdTime": "2021-01-15T19:06:09.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7ac2ed59-1fca-4522-a378-7bb82248535e", + "createdTime": "2021-01-15T19:06:08.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "08e84b17-97aa-424b-a204-4581885b97a8", + "createdTime": "2021-01-15T19:06:04.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c70809cc-d4bd-481f-b950-2d7a65503e3c", + "createdTime": "2021-01-15T19:06:03.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe153242-bfa7-4499-8f1d-f6f145391368", + "createdTime": "2021-01-15T19:06:03.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "49977dde-7cae-49de-a160-6f5ebe5e8bef", + "createdTime": "2021-01-15T19:06:02.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8349e2d7-2fe7-4c59-9f6c-271bea0f2a0e", + "createdTime": "2021-01-15T19:06:02.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5f05bd7-d667-4d59-bfc6-a9716bd02020", + "createdTime": "2021-01-15T19:06:01.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2bca6d53-e8a5-44cb-ba46-93262b247502", + "createdTime": "2021-01-15T19:06:01.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "70f9f2e4-b3a8-48b7-8dd5-64e0aed36278", + "createdTime": "2021-01-15T19:06:00.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "10de23c3-a12d-406e-a55c-f77f3327f2df", + "createdTime": "2021-01-15T19:06:00.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "902bb3b8-71c2-443d-9954-85715b0930ce", + "createdTime": "2021-01-15T19:05:59.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4c740f3-8761-4fce-bb13-386c4ad768ed", + "createdTime": "2021-01-15T19:05:57.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c51483db-dfab-4799-8015-8edadf446fc2", + "createdTime": "2021-01-15T19:05:57.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d309153b-69e2-4ec4-a1a9-0b59bb83a15e", + "createdTime": "2021-01-15T19:05:56.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "673a7297-4a24-4044-b8eb-9bbcd929b6ff", + "createdTime": "2021-01-15T19:05:56.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ef6d6ff1-1691-48d8-b729-eb6216912e88", + "createdTime": "2021-01-15T19:05:56.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ab3017a8-dba7-4326-a2e1-d373ea7d8dc4", + "createdTime": "2021-01-15T19:05:55.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ddde456b-8fc9-447a-a12b-204c29b562fe", + "createdTime": "2021-01-15T19:05:55.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "15581959-d7cb-4fff-8e99-6ed4da88b8d1", + "createdTime": "2021-01-15T19:05:55.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c627704f-15b0-4390-ba55-233b70cd81e5", + "createdTime": "2021-01-15T19:05:54.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d7db8aef-3366-41c2-a749-32cac63e11a7", + "createdTime": "2021-01-15T19:05:54.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f8208cb-c754-48f6-8d41-7dfa61160378", + "createdTime": "2021-01-15T19:05:53.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "032e152e-6f4e-4870-9d6f-842ece3c8511", + "createdTime": "2021-01-15T19:05:52.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d6974d2-ed3d-4496-9187-b7e6b4c8cacb", + "createdTime": "2021-01-15T19:05:52.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0cad8e40-89ab-43c4-a5ff-1b1afcf5baaf", + "createdTime": "2021-01-15T19:05:51.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c70becba-f005-4e39-880e-eaae756edf96", + "createdTime": "2021-01-15T19:05:51.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33cf2dd8-d495-43f4-81be-d84c4be1ef26", + "createdTime": "2021-01-15T19:05:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8c219499-653f-4319-addd-96e11c9b6fab", + "createdTime": "2021-01-15T19:05:51.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "068cad20-4f87-44d7-a21c-42b24703f799", + "createdTime": "2021-01-15T19:05:50.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f65de20-3ed6-4429-a363-ce399f245359", + "createdTime": "2021-01-15T19:05:50.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6a8ad5e4-85a2-4d6e-94df-041ff42c3f31", + "createdTime": "2021-01-15T19:05:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06768d22-86a8-4e35-8601-b58cb3eb4c49", + "createdTime": "2021-01-15T19:05:46.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "72d05582-49db-46d5-b5a2-27d4c65721ce", + "createdTime": "2021-01-15T19:05:45.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afcb69b2-038c-4f9f-90c1-e072bd8299ae", + "createdTime": "2021-01-15T19:05:45.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ebc93928-9e4c-4772-b9ed-8bb8146d1bec", + "createdTime": "2021-01-15T19:05:44.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5cbd48e8-822a-4798-8a39-6ab835c63b8e", + "createdTime": "2021-01-15T19:05:43.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d41bfcc-103a-4778-95ce-9cb241472816", + "createdTime": "2021-01-15T19:03:18.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "768714bf-7165-4e7c-82b3-834113795848", + "createdTime": "2021-01-15T19:03:17.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b19867b8-40e9-460e-838a-19a2017ba09f", + "createdTime": "2021-01-15T19:03:16.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d429a387-30d5-4981-b9c3-dd0ed614b3ff", + "createdTime": "2021-01-15T19:03:16.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4cedd1d5-0d33-4755-81d6-5dd684b0aa76", + "createdTime": "2021-01-15T19:03:15.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05f76a20-1aaa-4e33-bf0b-db0812828692", + "createdTime": "2021-01-15T19:03:12.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bf4ef598-cf98-42cd-8bf4-a88fe601d5f1", + "createdTime": "2021-01-15T19:03:12.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c2b1991f-b609-40c6-bc72-5341e94f0b8d", + "createdTime": "2021-01-15T19:03:11.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "316483c7-ec2a-47ef-a4f4-f4ddb64c70db", + "createdTime": "2021-01-15T19:03:11.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0618aa4-ead2-4725-add1-a6a96acb7f4b", + "createdTime": "2021-01-15T19:03:10.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "aff9fda2-e93e-4f9c-969b-472dec12f3e8", + "createdTime": "2021-01-15T19:03:09.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1b6226f-ea48-4a24-9833-ee8c1b636d19", + "createdTime": "2021-01-15T18:56:17.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e414d98d-6234-4520-ab51-26e268584017", + "createdTime": "2021-01-15T18:55:11.022Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "486ba0a3-27a5-4d86-8a8e-c5c66383c0e8", + "createdTime": "2021-01-15T18:55:09.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea608bfa-8310-467c-a81e-c6df9f48a260", + "createdTime": "2021-01-15T18:54:43.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "844c8911-74b1-4312-b3ba-6ece98dd76f2", + "createdTime": "2021-01-15T18:54:42.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "52082120-dded-43e9-93bd-5a407b641bb8", + "createdTime": "2021-01-15T18:54:35.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baf86bdc-c48c-4b57-a8b7-63d32a0b6ed2", + "createdTime": "2021-01-15T18:53:49.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a66ce9-124a-49fe-b9ff-6d0ba5f73535", + "createdTime": "2021-01-15T18:52:00.075Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7afcc970-66fa-4643-b8d0-b0729be06861", + "createdTime": "2021-01-15T13:58:35.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d126569a-1dfb-4bf6-adf0-04841eeac30e", + "createdTime": "2021-01-15T13:59:33.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "372eaafe-2ed8-4ae0-bdb9-16d38a168047", + "createdTime": "2021-01-15T13:58:30.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1d1d8d67-46b8-41a7-992e-3f62c5fdc37c", + "createdTime": "2021-01-15T13:59:28.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "461ba9fa-f394-4daf-a183-78860203c0e8", + "createdTime": "2021-01-15T14:01:27.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f55a14bb-1d04-47d0-90c2-7170619c5c9a", + "createdTime": "2021-01-15T13:59:26.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "de2cab3d-61dd-4172-a48a-37d809c1af30", + "createdTime": "2021-01-15T14:01:22.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "01e2f04c-5427-43a6-a23d-980ecb2546cd", + "createdTime": "2021-01-15T13:59:20.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "24884131-7770-4e83-8bf2-bdc4c87043a7", + "createdTime": "2021-01-15T14:01:18.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3bc227f5-307e-47dd-a9f9-1768f2bb5ed5", + "createdTime": "2021-01-15T14:01:12.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b3081549-8c02-4f32-8ce9-06fb93236fe5", + "createdTime": "2021-01-15T14:01:51.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ed32d6d-6dc3-4c23-aa50-6bdd7584c08e", + "createdTime": "2021-01-15T14:01:50.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e031d433-c1ed-44f8-a9cf-ab17aff19ada", + "createdTime": "2021-01-15T14:01:50.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5497d5c5-1c1a-4274-a4de-a97f91f8f2ae", + "createdTime": "2021-01-15T14:01:49.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3004d827-45d4-49d4-827c-aa8770896ace", + "createdTime": "2021-01-15T14:01:48.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d9777865-a8fb-4816-a1ce-c1980169d1a1", + "createdTime": "2021-01-15T14:01:48.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e994c408-4491-4913-9ecf-b738cfab38d7", + "createdTime": "2021-01-15T13:55:44.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30084d3f-8ad2-41ef-b37f-9c1e6e4f199b", + "createdTime": "2021-01-15T14:01:45.46Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d77dc8e9-75e9-42ef-97eb-09c0109dc0d8", + "createdTime": "2021-01-15T14:01:44.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "75a9bbd4-7857-45cd-b8fd-62df63413115", + "createdTime": "2021-01-15T14:01:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03020e70-d9fe-4b4c-af7b-b4b5a9bb0088", + "createdTime": "2021-01-15T14:01:43.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c03ffda6-036a-4072-9132-9a421e32a502", + "createdTime": "2021-01-15T14:01:43.094Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "39204ed8-d633-4d9a-b629-18e805525358", + "createdTime": "2021-01-15T14:01:42.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f73608e2-7806-4c87-9f9a-8b859985b749", + "createdTime": "2021-01-15T14:01:27.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f4275696-e0a4-444a-86ba-cd865d67974f", + "createdTime": "2021-01-15T14:01:26.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "713282c5-2474-4dab-95d5-444f98d43f9f", + "createdTime": "2021-01-15T14:01:26.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9ab4ed0b-f1cc-4021-8e85-1f3d65410faf", + "createdTime": "2021-01-15T14:01:25.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c2bc97da-0719-45b3-bcd7-daaceca3fcb2", + "createdTime": "2021-01-15T14:01:25.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df34e81d-abc2-4f1c-baa9-084c9223f841", + "createdTime": "2021-01-15T14:01:22.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1b25096-8a4f-4213-83df-e21fdc053f90", + "createdTime": "2021-01-15T14:01:21.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "472709b7-e8f2-46fe-ba0c-ca38d43914d1", + "createdTime": "2021-01-15T14:01:21.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6f49e787-646c-4561-b572-2a9f5c150694", + "createdTime": "2021-01-15T14:01:20.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe597f73-0473-47b9-8faa-e25caf515631", + "createdTime": "2021-01-15T14:01:19.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "992dc115-064e-4829-824a-bf48fa705761", + "createdTime": "2021-01-15T14:01:18.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9f01017b-4436-4307-8ac7-7918cd80a759", + "createdTime": "2021-01-15T14:01:17.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a6315eef-78a0-4faf-8de3-dfc851a4d2d1", + "createdTime": "2021-01-15T14:01:17.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a479045-16c0-4efe-a5d9-41dd9a5b655b", + "createdTime": "2021-01-15T14:01:16.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81461f56-f804-4f4a-9f8d-0652664e3d3e", + "createdTime": "2021-01-15T14:01:15.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "972e6721-9d44-4acb-be2b-cd518d55bafc", + "createdTime": "2021-01-15T14:01:12.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6e5e42ba-d59c-4b0b-af18-86080e22a1b0", + "createdTime": "2021-01-15T14:01:11.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "483b54bd-e877-4132-b704-f7ebaff1efcb", + "createdTime": "2021-01-15T14:01:11.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ac7ddef-7cb2-49f7-a7da-59a0441187cc", + "createdTime": "2021-01-15T14:01:10.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d340b3ec-03a4-4fa5-8bee-5a844d2eb018", + "createdTime": "2021-01-15T14:01:10.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f8e5435-e190-40a9-a8da-aac65891bf0f", + "createdTime": "2021-01-15T13:59:32.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "887dc187-6b31-4137-9a71-9bbb1a37cda5", + "createdTime": "2021-01-15T13:59:32.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b800d43-ee6e-47f5-a858-5b107c4c0200", + "createdTime": "2021-01-15T13:59:32.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3122ecbc-04d4-4c94-8929-9a5a3db208c9", + "createdTime": "2021-01-15T13:59:31.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5308d8ab-1913-43fa-94c9-202cf7ec7994", + "createdTime": "2021-01-15T13:59:30.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "078c1ec1-3c56-464d-b419-5f0b1b95d5ed", + "createdTime": "2021-01-15T13:59:28.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a471b7f8-adb2-4461-90bd-4d7c95f203f5", + "createdTime": "2021-01-15T13:59:27.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd1dcfe2-385e-435e-a9c3-0de08088851a", + "createdTime": "2021-01-15T13:59:26.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee7346ac-2e2a-4448-a59a-6172b4a8c70b", + "createdTime": "2021-01-15T13:59:26.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "08706471-76f3-43e3-bce0-7469bf713c13", + "createdTime": "2021-01-15T13:59:25.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55b7100e-a6cb-4189-ad4c-7bc101a6d405", + "createdTime": "2021-01-15T13:59:25.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f67abce7-ca22-4ebb-9ff2-4ee1bc528103", + "createdTime": "2021-01-15T13:59:24.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7d7d0d-90ad-475f-ae5b-670f42786598", + "createdTime": "2021-01-15T13:59:24.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "01c8a7a8-73de-42a0-8aa3-77864f78201a", + "createdTime": "2021-01-15T13:59:23.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "faec74f0-8e87-485d-bc25-10397e079f06", + "createdTime": "2021-01-15T13:59:23.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62d6418e-58e8-430b-96f6-c3f04258410a", + "createdTime": "2021-01-15T13:59:19.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bb1794e-7ebc-4c74-a0d5-d1b3d7b707b0", + "createdTime": "2021-01-15T13:59:19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "98662986-ba2d-40c8-b66f-8b25c18d64f2", + "createdTime": "2021-01-15T13:59:18.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "125de8c2-e79e-4c76-8528-857e7ff13381", + "createdTime": "2021-01-15T13:59:17.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cafa95b3-affd-43f7-bfa4-cc8af5a16b9f", + "createdTime": "2021-01-15T13:59:17.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edee361a-5bde-4f4c-8d2e-a340940896b1", + "createdTime": "2021-01-15T13:58:35.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bfa40072-02df-4bd4-b3cb-9d57f56a5fa3", + "createdTime": "2021-01-15T13:58:34.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b422bb6f-0c49-4090-b3de-6246d4408c56", + "createdTime": "2021-01-15T13:58:33.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8bb314c8-79bd-4eab-b4ec-85fed81c5a5c", + "createdTime": "2021-01-15T13:58:33.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0517bb42-3d63-4eaf-9516-f8f3e22ac952", + "createdTime": "2021-01-15T13:58:32.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "feb1103a-8958-446b-b716-44639f20e5a8", + "createdTime": "2021-01-15T13:58:29.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6964f1ec-fb25-46e3-9cc2-40b3f2b63108", + "createdTime": "2021-01-15T13:58:28.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bb38434a-729f-4f41-82b4-342b139c26b5", + "createdTime": "2021-01-15T13:58:28.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0e96ec5b-40d8-47a5-a6b7-4cc25d6a6633", + "createdTime": "2021-01-15T13:58:27.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2a31d68d-32b5-477f-9b13-2cdcb5597ca5", + "createdTime": "2021-01-15T13:58:27.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "359496af-a317-4983-aa9e-90d7684dbfdb", + "createdTime": "2021-01-15T13:55:43.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1adde86-8c4b-47d8-bc48-35e806c8efde", + "createdTime": "2021-01-15T13:55:43.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54879c77-06cf-4744-8494-03611a865825", + "createdTime": "2021-01-15T13:55:42.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "093eb28b-7da0-4d0c-80a4-e5323638799c", + "createdTime": "2021-01-15T13:55:41.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f319ee84-bcf1-49f9-bf35-505ff132ab63", + "createdTime": "2021-01-15T13:55:41.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30812f05-e147-4afe-98c7-bf342878b76c", + "createdTime": "2021-01-15T13:55:37.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f941b35d-a45b-4c45-9d48-7b61629bb44c", + "createdTime": "2021-01-15T13:55:36.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "783604df-8899-4b5e-86ee-dae65aefbf22", + "createdTime": "2021-01-15T13:55:36.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "716ec527-44e1-4f9a-8683-10a53f05199a", + "createdTime": "2021-01-15T13:55:35.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0f22f498-11ab-412f-925f-03516d2226af", + "createdTime": "2021-01-15T13:55:34.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "30be140a-9b01-4cdc-adab-2a44ee58e3c3", + "createdTime": "2021-01-15T13:55:33.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b964cf9c-b015-473c-98ea-c39775f65265", + "createdTime": "2021-01-15T13:53:39.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d25cbf7-c115-47c1-9064-cf05b877051a", + "createdTime": "2021-01-15T13:53:19.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c3cce8b-54cc-4b5c-b57b-2041993fd6fd", + "createdTime": "2021-01-15T13:52:57.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a1d7427-0fc0-4d25-bcab-2b6a65775851", + "createdTime": "2021-01-15T13:50:56.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12a050da-da72-4be5-92e6-f7e18b87dd77", + "createdTime": "2021-01-15T13:50:20.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d955a69-6f82-4829-bf39-62e9ea23ca2f", + "createdTime": "2021-01-15T13:49:30.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dfa50be7-83c6-461a-81a2-f67fba5269c4", + "createdTime": "2021-01-15T13:48:15.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2806c530-6588-4adf-90aa-c0b6a8299d9b", + "createdTime": "2021-01-15T09:16:03.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad3485fa-5175-41e5-bf75-340e23d2822c", + "createdTime": "2021-01-15T09:16:02.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8f5e0d70-d41f-4e5b-ad22-31448740153c", + "createdTime": "2021-01-15T09:16:02.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "93ebc5c7-c3bc-4618-917c-caf70b7f2f95", + "createdTime": "2021-01-15T09:16:01.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57062d89-11ce-4e5f-ae29-1f3e0639f913", + "createdTime": "2021-01-15T09:12:12.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ab65de02-9fc6-4d96-a1e0-3d638b3dae95", + "createdTime": "2021-01-15T09:12:11.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c1ead2b-7b18-4874-8394-3abd2a9f3d01", + "createdTime": "2021-01-15T09:12:10.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f60a05a-bd50-4d71-b9cc-3d86431175b2", + "createdTime": "2021-01-15T09:12:10.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbfe8d6e-bec0-4acd-8a4f-565af8542a7f", + "createdTime": "2021-01-15T09:05:21.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ce861e50-8f3e-48ff-baca-550ec25a4084", + "createdTime": "2021-01-15T09:05:20.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b39c9fdd-1fc2-419e-8e6a-1a44259ee231", + "createdTime": "2021-01-15T09:05:20.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "98faee57-f828-492f-a9e3-50d7171bda64", + "createdTime": "2021-01-15T09:05:19.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eef8960c-521b-494e-91a6-632b3ecd9a55", + "createdTime": "2021-01-15T09:01:23.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41575b95-c21d-49bc-8998-50ee8cbe9d4d", + "createdTime": "2021-01-15T09:01:22.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35f66bb3-cbb7-47d8-baa3-d9764f7d0007", + "createdTime": "2021-01-15T09:01:21.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb79d206-5494-414c-b502-f17d82951e4b", + "createdTime": "2021-01-15T09:01:21.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ecf14bec-6682-4f78-969d-8b411fe9405c", + "createdTime": "2021-01-15T08:47:08.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "338e416b-11a1-4c6b-9310-3cc7b8956f66", + "createdTime": "2021-01-15T08:47:07.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "547d037c-34b0-487c-8632-530ed5183254", + "createdTime": "2021-01-15T08:47:07.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf5ed8ab-660d-4244-9022-40454c9ac66b", + "createdTime": "2021-01-15T08:47:06.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "226cc709-4df3-4c5b-a0ed-944d97cfd547", + "createdTime": "2021-01-15T08:41:30.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "62c31ae0-c267-41c0-849e-75980efa1ff3", + "createdTime": "2021-01-15T08:41:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d16a90c-9fac-41b7-a1b2-55af5b7a08b6", + "createdTime": "2021-01-15T08:41:28.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f395e21-5466-4a51-ab59-399aceb19839", + "createdTime": "2021-01-15T08:41:27.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b904950-c3ba-42f9-85cb-2468105f7d34", + "createdTime": "2021-01-15T08:24:01.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "61601be6-8e0c-4239-acb5-58cc5d47834c", + "createdTime": "2021-01-15T08:35:50.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5ea9b864-168b-4b1a-8bd3-2b49548e0f64", + "createdTime": "2021-01-15T08:40:41.034Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c1b7dcd-386a-4c8f-8b08-d3a71dd6684d", + "createdTime": "2021-01-15T08:40:40.119Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0446b1b5-d167-40fc-855a-7891b22e49ee", + "createdTime": "2021-01-15T08:40:39.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60e79bd4-e261-4b1b-9548-333dfb086978", + "createdTime": "2021-01-15T08:40:38.252Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9aabab7-d67b-4706-b124-7d2ee007a896", + "createdTime": "2021-01-15T08:32:04.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f71639d0-aa4e-4b1b-87ea-7f8debdcaf69", + "createdTime": "2021-01-15T08:35:49.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05109794-faf4-4c22-b271-51cb094f5596", + "createdTime": "2021-01-15T08:35:49.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96f07200-0d18-4b16-bb8d-3c086f31e501", + "createdTime": "2021-01-15T08:35:48.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65fef6d2-aaf4-4068-aba3-10a6d0f3d005", + "createdTime": "2021-01-15T08:32:04.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bed71064-bb8d-49c4-b894-ddf4a0eb7874", + "createdTime": "2021-01-15T08:32:03.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b902bc0-7d64-45b2-8e0f-5bbdccb8085d", + "createdTime": "2021-01-15T08:32:03.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5be25d9-6310-4432-b7dd-692027ba640c", + "createdTime": "2021-01-15T08:24:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2f4f7a03-22d1-4a45-8413-0c8f2b920366", + "createdTime": "2021-01-15T08:24:00.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0ea1667e-732d-403b-b7ad-d6f225aa6e97", + "createdTime": "2021-01-15T08:23:59.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4dddd10d-4144-4ea2-997f-c7f686900b8c", + "createdTime": "2021-01-15T08:20:31.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8ca0e293-5a34-4566-aa04-fb179477888e", + "createdTime": "2021-01-15T08:20:30.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "efca5a2d-76c3-405e-accc-08e4c68af66a", + "createdTime": "2021-01-15T08:20:30.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a89c5bf-479b-4e53-9382-e620066bbb71", + "createdTime": "2021-01-15T08:20:28.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c689a13-fd26-46e0-90c6-daf733ae7f37", + "createdTime": "2021-01-15T06:18:44.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bd06452d-a327-4aaf-b852-95a97b923e76", + "createdTime": "2021-01-15T06:18:46.101Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6c70d3cb-f56c-48b3-ad66-f2e8f1016573", + "createdTime": "2021-01-15T06:18:43.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ede4f21b-5bc7-48db-8367-87f42092a7a3", + "createdTime": "2021-01-15T06:18:42.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee0b241d-53dc-4fd9-be6a-a9931fc25e07", + "createdTime": "2021-01-15T06:17:47.476Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cc4f455e-b40c-4326-877e-19f47256d982", + "createdTime": "2021-01-15T06:17:46.563Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "068818fb-b2c7-4e60-9971-192d6f9c2e2f", + "createdTime": "2021-01-15T06:17:45.557Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "66c19bc5-9cd8-45fe-8dbd-bd48e5ed475f", + "createdTime": "2021-01-15T06:17:43.784Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d9e8a99-99ba-4bd2-8629-62ceb1bfd574", + "createdTime": "2021-01-15T00:52:24.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "eaa06967-d778-44fd-8482-2384327b8f83", + "createdTime": "2021-01-15T00:52:23.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "363e3643-169d-42c1-a9f2-d881d3682556", + "createdTime": "2021-01-15T00:52:23.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "10764e2a-e81e-4589-acc3-a797ff1a20a7", + "createdTime": "2021-01-15T00:52:22.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "77f6c86a-084e-45c7-ba71-33f3aae3ea3f", + "createdTime": "2021-01-15T00:52:21.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ed854604-2add-4b03-9c62-702eda237d99", + "createdTime": "2021-01-15T00:52:21.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c6b2892e-6450-40f5-9344-7cbf947b4c9d", + "createdTime": "2021-01-15T00:52:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3402ea17-278e-40e1-8c04-d99508503fd7", + "createdTime": "2021-01-15T00:52:17.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4dbc1f44-0f52-44d0-97c8-b3b0481ca3e6", + "createdTime": "2021-01-15T00:52:17.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "96dba8d3-d9c7-4487-9716-c8eb08143678", + "createdTime": "2021-01-15T00:52:16.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "63c1a356-955a-4b45-bfff-c33c42cf36f3", + "createdTime": "2021-01-15T00:52:16.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "267cfaba-c2a1-4329-a72f-7b86482e6c0d", + "createdTime": "2021-01-15T00:52:15.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8223bd6-811e-40a6-afd1-f50c2c3f6361", + "createdTime": "2021-01-15T00:46:44.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0fcbcf72-d4b4-4a43-a2e9-d466d46c5435", + "createdTime": "2021-01-15T00:35:07.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8d6383b7-756e-4a4b-8ea9-7b3c39c713d3", + "createdTime": "2021-01-15T00:33:49.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7abb7266-cb13-4826-a6cf-e1d4e7d0adc5", + "createdTime": "2021-01-15T00:36:48.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d959f662-f73d-4f26-a3f8-7b1f7f9d08da", + "createdTime": "2021-01-15T00:34:47.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "91a41921-128c-44df-83cf-b8ab1c888747", + "createdTime": "2021-01-15T00:32:44.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7dffc1ad-b156-4445-b71f-c2b438335ded", + "createdTime": "2021-01-15T00:33:42.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1edd897b-1448-4bd5-bb14-a4c2a79fd82e", + "createdTime": "2021-01-15T00:36:41.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d2869702-0d77-42b2-91d2-32ec51af91b4", + "createdTime": "2021-01-15T00:34:40.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b84f3ca-01ee-4a0a-8d1b-1094bd761b74", + "createdTime": "2021-01-15T00:35:29.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2c205f6e-02ce-4e25-8994-2ec87522b49e", + "createdTime": "2021-01-15T00:35:22.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f7e9e1c2-fe14-460a-8b0e-79103431067e", + "createdTime": "2021-01-15T00:37:19.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d8152dad-6430-45ee-9f48-0b3ad552c0e5", + "createdTime": "2021-01-15T00:37:19.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2bb30a8-a994-4cf9-a80e-eb770450c800", + "createdTime": "2021-01-15T00:37:18.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c0ee0ec-c128-4e46-9bff-1e703be06b3a", + "createdTime": "2021-01-15T00:37:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8ef7ecf0-ff8b-43ca-bdcd-ab89e6fbff0d", + "createdTime": "2021-01-15T00:37:17.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fc9eb64e-ff79-45e2-9dfd-74cee97c5b1a", + "createdTime": "2021-01-15T00:37:16.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9cd5d346-7b1d-4f5a-b383-e68c49ef481e", + "createdTime": "2021-01-15T00:35:13.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4fa2b406-8d3f-4880-8681-90bffb4b8bb3", + "createdTime": "2021-01-15T00:37:13.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4feaf397-b9bd-447e-8ae1-28c323eaebd7", + "createdTime": "2021-01-15T00:37:13.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f15ec22a-09f1-4a8d-93f4-fd596940a90c", + "createdTime": "2021-01-15T00:37:12.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803c6917-0d22-4d69-9397-b0397846599c", + "createdTime": "2021-01-15T00:37:12.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "31f9f9a2-a784-4e19-8e05-7eef9b40017f", + "createdTime": "2021-01-15T00:37:11.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82ca0013-70cb-4d3f-909c-5743daaf9e75", + "createdTime": "2021-01-15T00:37:10.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b62a316f-e147-4214-83aa-abe7c9a30696", + "createdTime": "2021-01-15T00:36:47.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02d04707-66a7-45f0-b867-c54a4891eac8", + "createdTime": "2021-01-15T00:36:46.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "34b2aa74-4f01-4724-b7c3-edc2d37a4c79", + "createdTime": "2021-01-15T00:36:46.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "897c1fd2-bcb7-4b3f-9147-8069d33f0b48", + "createdTime": "2021-01-15T00:36:45.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c616bd5b-2b3f-40e2-b036-42b2864a274f", + "createdTime": "2021-01-15T00:36:44.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "567026e0-8a31-4fd9-b1bd-10b09fe9aa17", + "createdTime": "2021-01-15T00:36:40.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7287381a-838e-4ce1-8660-3c1444bfe2a8", + "createdTime": "2021-01-15T00:36:40.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1647dcbf-e605-433b-8545-199aaa4b7c24", + "createdTime": "2021-01-15T00:36:39.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2b781d3-c987-4e92-aa48-ff597f7c4596", + "createdTime": "2021-01-15T00:36:39.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d3b36aaa-288a-4842-b219-2b3df6af5cd7", + "createdTime": "2021-01-15T00:36:38.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "179f0777-97c2-476f-b4b9-7fd39021e009", + "createdTime": "2021-01-15T00:35:28.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4392d86e-0d88-478b-8eb5-4aaf8be3ebcf", + "createdTime": "2021-01-15T00:35:28.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67fd414b-176a-4df5-b8de-f51aa4a273ce", + "createdTime": "2021-01-15T00:35:27.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9093540c-088e-4745-8399-680b4a8197f6", + "createdTime": "2021-01-15T00:35:26.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4196f6cd-0d9b-4b9c-a126-0503541b9485", + "createdTime": "2021-01-15T00:35:26.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a0f3614-145b-4ec0-8a3a-6badb184b33a", + "createdTime": "2021-01-15T00:35:21.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a583e232-3329-4493-b342-498273a92d28", + "createdTime": "2021-01-15T00:35:21.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33676a74-1ce1-4fa4-93b1-e983e30a1ec7", + "createdTime": "2021-01-15T00:35:20.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6621aba3-c0d4-49cd-afac-a353454ddf7c", + "createdTime": "2021-01-15T00:35:19.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3dc46692-ae05-4a35-8817-bbfecc40b980", + "createdTime": "2021-01-15T00:35:19.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f962c24-8beb-422a-adf5-82637d60603b", + "createdTime": "2021-01-15T00:35:13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3721f93-b300-464d-b1e2-9a1e58892dcd", + "createdTime": "2021-01-15T00:35:12.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff462a4-fda0-45da-a0ca-3cc50cad35c7", + "createdTime": "2021-01-15T00:35:11.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4e5681f-64e0-4ff0-8bf6-1cf6e7e91616", + "createdTime": "2021-01-15T00:35:11.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "73db4976-921c-43f3-924f-a958e53eb537", + "createdTime": "2021-01-15T00:35:10.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d2d8250-1545-4c3a-8797-90f31846a78d", + "createdTime": "2021-01-15T00:35:07.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3c9e26e-2b34-4f8d-8987-f00343a640c7", + "createdTime": "2021-01-15T00:35:06.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9ae0c504-7cd0-4220-b2ff-207383140dc1", + "createdTime": "2021-01-15T00:35:06.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b7d0e2f-c1bd-4b53-83f5-ef5c5bd9daff", + "createdTime": "2021-01-15T00:35:05.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a891b38f-0405-43c8-966b-76ea494f66c7", + "createdTime": "2021-01-15T00:35:04.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f2b0b0c-3c00-4fb2-a29c-1d2523d09c61", + "createdTime": "2021-01-15T00:34:46.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0c24af4-be2c-4e07-8d02-92356d4b93b1", + "createdTime": "2021-01-15T00:34:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3d2037e-50e0-4bff-968d-915f85b59bde", + "createdTime": "2021-01-15T00:34:45.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6edd97cd-942d-47ab-bcd3-3854d6c529d7", + "createdTime": "2021-01-15T00:34:44.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c9fcf996-15a9-45d5-bdb7-ebab03967644", + "createdTime": "2021-01-15T00:34:44.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6902d281-18df-4074-a008-b242c987c782", + "createdTime": "2021-01-15T00:34:40.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95370b46-5024-428a-a87d-7c76497fc6e8", + "createdTime": "2021-01-15T00:34:39.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8c24c9b0-f475-4a97-becd-e9210ad52980", + "createdTime": "2021-01-15T00:34:38.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1587d0e7-575b-4277-904a-8d8e5e25fadc", + "createdTime": "2021-01-15T00:34:38.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "deda3e13-d19f-4569-980c-55b50945d1c8", + "createdTime": "2021-01-15T00:34:37.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79109ad9-fbef-4513-98ce-e0a290c512f8", + "createdTime": "2021-01-15T00:33:48.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acb117be-3b56-481b-856d-1a5079e2b368", + "createdTime": "2021-01-15T00:33:47.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1dbde4a9-abe4-4f53-bc8e-a1e106c7e3cc", + "createdTime": "2021-01-15T00:33:47.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c68b1707-96bd-4f26-b5fc-665310a2fec8", + "createdTime": "2021-01-15T00:33:46.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "015b3307-6463-4bd0-8aa2-b94363bf01b0", + "createdTime": "2021-01-15T00:33:46.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "174f3729-3ddb-4290-bd37-07e9832c0faf", + "createdTime": "2021-01-15T00:33:42.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28fff6b7-9767-413a-b545-4f443677e049", + "createdTime": "2021-01-15T00:33:41.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6f6bc036-067a-4ac9-9e89-c90dff2704d5", + "createdTime": "2021-01-15T00:33:40.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43cb4bb4-221b-45f1-be46-6095d1af46b6", + "createdTime": "2021-01-15T00:33:40.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4f04b312-528f-43de-aade-6d6a46644f05", + "createdTime": "2021-01-15T00:33:39.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba5178ee-5d42-46e7-b4fc-8f40f8066243", + "createdTime": "2021-01-15T00:32:43.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a565d335-ab91-4eeb-9859-54ba829f55d3", + "createdTime": "2021-01-15T00:32:42.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "de80b484-a926-4089-a507-23903201bc5f", + "createdTime": "2021-01-15T00:32:42.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98067a81-1f73-4fbb-a1b1-ef23c0413e93", + "createdTime": "2021-01-15T00:32:41.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "837f6ba1-9b70-4f2b-9f4e-73d9adee1604", + "createdTime": "2021-01-15T00:32:41.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5db9b4f-4831-4bc7-be4a-9d46375c4ec0", + "createdTime": "2021-01-15T00:32:37.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1a1be7ce-e9b7-42e1-a8ec-28b833878e34", + "createdTime": "2021-01-15T00:32:36.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7829c81-8d11-4264-9b55-027c38537a52", + "createdTime": "2021-01-15T00:32:36.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2417bcf4-c292-4944-82a4-5381a7250a06", + "createdTime": "2021-01-15T00:32:35.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a3064ba-5f5b-417c-8017-abd4613673d4", + "createdTime": "2021-01-15T00:32:34.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1a4d2ff1-d102-42b2-b370-ed995b924b9e", + "createdTime": "2021-01-15T00:32:33.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bca89a7a-f4bd-44c4-84bb-7e21195d1808", + "createdTime": "2021-01-15T00:29:00.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2e7c9c9-9a95-4093-bd46-2b0c19ea9ae4", + "createdTime": "2021-01-15T00:27:56.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51e31a6d-53fa-47ed-a080-43fd85b18f60", + "createdTime": "2021-01-15T00:27:00.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03c20569-bb32-4f3d-b92c-87aaed959a21", + "createdTime": "2021-01-15T00:26:51.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9993875d-c733-4a3e-be46-973c329ffb36", + "createdTime": "2021-01-15T00:26:36.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ce0357d-9dbd-4d5d-8090-c463c2025398", + "createdTime": "2021-01-15T00:25:00.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02bcc115-e1b6-4158-bee1-3aa4d105bcc2", + "createdTime": "2021-01-15T00:24:15.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc4c8b98-482e-471c-8171-cc30b27bf571", + "createdTime": "2021-01-14T20:10:05.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "41dad869-bbce-4ffe-bac1-4a839cda301a", + "createdTime": "2021-01-14T20:11:02.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce46ff4-ce36-4d11-98f9-d957029cc8e5", + "createdTime": "2021-01-14T20:14:00.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1e186f63-5ee6-42dd-bdb9-61a483af2aef", + "createdTime": "2021-01-14T20:14:51.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "42433eb2-e841-40d8-90d2-5e2251cec442", + "createdTime": "2021-01-14T20:10:39.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "baa439a0-b440-4624-84bc-c5642aacb8ec", + "createdTime": "2021-01-14T20:16:32.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2d64667b-8754-4f8f-b5b5-dc8a659ccf0c", + "createdTime": "2021-01-14T20:16:32.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7869c585-c283-4e82-8d99-8280be90dda2", + "createdTime": "2021-01-14T20:16:32.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0dae039e-af52-4740-9009-e8f0b2ac83a6", + "createdTime": "2021-01-14T20:16:31.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7994335-3a0b-4f5b-8c27-b62a2c0e6478", + "createdTime": "2021-01-14T20:14:51.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "26e4edbe-7dfc-4fe1-9c65-564110268c4d", + "createdTime": "2021-01-14T20:14:50.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2fabc4b4-da2b-48ea-ab79-0bc4b60ef921", + "createdTime": "2021-01-14T20:14:50.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff87d87-0271-4f01-8d9d-7d4ea6c4a211", + "createdTime": "2021-01-14T20:14:01.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2eafddc3-4265-4eef-a8b6-2e41a8a73de5", + "createdTime": "2021-01-14T20:14:00.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "84a05b04-6ed8-4532-8cdd-84fa0fe7c6fe", + "createdTime": "2021-01-14T20:14:00.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1cfb571-d994-43a9-abf6-625b38eb991e", + "createdTime": "2021-01-14T20:11:02.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9ce7294-2689-4726-9625-ca594960b283", + "createdTime": "2021-01-14T20:11:01.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bde83fe3-70e2-4f74-aa9c-5b34cd40b129", + "createdTime": "2021-01-14T20:11:01.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff69d416-6993-4538-8715-7ad09d1f21a0", + "createdTime": "2021-01-14T20:10:40.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0742de03-38ad-4fc1-ac95-c87452a4351b", + "createdTime": "2021-01-14T20:10:38.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cbb90eec-ad6f-4ce2-b630-8a8d8564e316", + "createdTime": "2021-01-14T20:10:37.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34214102-36f3-447b-afd5-0689f81d1742", + "createdTime": "2021-01-14T20:10:05.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f84f5c23-4063-407c-afd4-5035160b7f9c", + "createdTime": "2021-01-14T20:10:04.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9647343d-b57a-4972-b50c-03940967cfe3", + "createdTime": "2021-01-14T20:10:04.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "addf8f2e-dfe4-40ab-b06f-db05b807619b", + "createdTime": "2021-01-14T20:10:04.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f63bdad-c05e-44ad-bf75-ab60e2dc774a", + "createdTime": "2021-01-14T20:10:03.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f1b584ec-0438-4692-89dc-24d2b9cac6f4", + "createdTime": "2021-01-14T20:10:03.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adf83345-27a3-4d6f-9740-42218174b87b", + "createdTime": "2021-01-14T20:10:02.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc67dc7-d2e6-456d-9b37-4b7ec22c4ba7", + "createdTime": "2021-01-14T14:07:15.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72506e97-520b-429c-88bd-9beffb542070", + "createdTime": "2021-01-14T14:07:14.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3177ddc-6e45-4c5d-9ef5-be14ebe2d41c", + "createdTime": "2021-01-14T14:07:14.332Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1a10ce3a-616f-4cba-b032-6005733d0150", + "createdTime": "2021-01-14T14:07:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05b0615a-220b-4b48-9b4f-3851353ccb08", + "createdTime": "2021-01-14T14:04:22.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "204a1e6d-90a3-4cd9-8d69-b8122e6341dd", + "createdTime": "2021-01-14T14:04:21.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4389fa05-d197-4eb0-b269-83edad5a4c56", + "createdTime": "2021-01-14T14:04:21.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce2f964d-e3dd-46df-bb1a-284fad50a4fb", + "createdTime": "2021-01-14T14:04:20.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58422070-5db9-4555-9689-190108678a00", + "createdTime": "2021-01-14T13:56:32.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abf281af-9678-4519-8b3f-87d373de90b9", + "createdTime": "2021-01-14T13:56:31.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f507a07b-acfb-4a33-b426-818809a955e4", + "createdTime": "2021-01-14T13:56:31.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a0395af-87b3-4896-ad65-1ef15cde7aef", + "createdTime": "2021-01-14T13:56:30.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3382c221-2472-4505-8a71-0a242a61ff4e", + "createdTime": "2021-01-14T13:53:47.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d3d90b-5637-48a4-9c9f-c584028d3a78", + "createdTime": "2021-01-14T13:53:46.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ebeefc6b-29a3-4ebb-a8eb-fc5c41b418ad", + "createdTime": "2021-01-14T13:53:46.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e25b9b7e-d239-45dd-b58a-6a014e309af1", + "createdTime": "2021-01-14T13:53:45.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33c77229-2a27-422a-84e3-fb8885342c25", + "createdTime": "2021-01-14T13:44:09.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "50acafb8-1440-4a29-87cb-22d23a97db5f", + "createdTime": "2021-01-14T13:44:09.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea156fb5-03b9-4e12-939a-8e7600034d7a", + "createdTime": "2021-01-14T13:44:09.114Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "559ac852-6593-480c-8210-30c2e8253995", + "createdTime": "2021-01-14T13:44:08.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bcce751c-7277-4a4d-8da9-221e93b76ec2", + "createdTime": "2021-01-14T13:27:35.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27b61c3d-d8ae-488d-bc0f-b0dce6cc20bd", + "createdTime": "2021-01-14T13:31:26.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ee5a642f-b4d5-4fb8-91ec-52513b6d28f7", + "createdTime": "2021-01-14T13:19:53.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f1de6f89-b6d8-4c7a-b76a-45743030a99d", + "createdTime": "2021-01-14T13:31:26.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3b7e14f-0ce5-405b-aec4-6cce4452320d", + "createdTime": "2021-01-14T13:31:25.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "846f8e0f-e9b8-4a18-9505-5a69783f0da8", + "createdTime": "2021-01-14T13:31:24.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a6a630a7-d9de-4f80-becb-f8ca45c040cb", + "createdTime": "2021-01-14T13:27:34.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6c6f5569-f6f6-40eb-9a12-99bc8b80f8d1", + "createdTime": "2021-01-14T13:27:33.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a93ed1ef-a36b-4ca6-99b2-1e597d6fb961", + "createdTime": "2021-01-14T13:27:33.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e94f1011-8777-4149-aab3-8a7eafbd75dc", + "createdTime": "2021-01-14T13:19:53.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35b5da12-07bb-4229-8b4a-ae60e864491d", + "createdTime": "2021-01-14T13:19:52.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47ab17ad-80bc-4243-bafe-66c2c291de7b", + "createdTime": "2021-01-14T13:19:52.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c8bfda1-c96f-4fb9-9f4c-0d7897172390", + "createdTime": "2021-01-14T13:17:19.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd9a08b2-b7c2-472f-a955-ecbc1f368c19", + "createdTime": "2021-01-14T13:17:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff3bef5e-c13f-40c4-84d4-4c9fd1958507", + "createdTime": "2021-01-14T13:17:18.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f89290a-6ec9-47cd-b8f9-4294e38ba6ed", + "createdTime": "2021-01-14T13:17:16.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a44a3b15-bd45-44f4-9e9b-8bb1705d8061", + "createdTime": "2021-01-14T09:16:44.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51a61aec-f0c7-4f33-ac46-dd2838a84ee4", + "createdTime": "2021-01-14T09:16:43.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc9da33-b3d5-4034-a851-16bca08fb434", + "createdTime": "2021-01-14T09:16:42.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdd0b114-d49d-409b-a646-9750678f29ce", + "createdTime": "2021-01-14T09:16:41.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82d43c13-fb3b-4a1a-a182-a9b5f9029571", + "createdTime": "2021-01-14T09:13:02.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cb90ba3d-9dc4-4cb1-9514-041a2f65e4a7", + "createdTime": "2021-01-14T09:13:01.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac1d34c4-9c2e-4203-9194-ae5a9a304322", + "createdTime": "2021-01-14T09:13:01.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "32ae669b-57ac-4aaa-b187-c062a596357a", + "createdTime": "2021-01-14T09:13:00.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85ebf416-453a-4d41-b191-8073d612fc04", + "createdTime": "2021-01-14T09:03:56.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36d0c56a-fafd-4388-ade5-62738479f87d", + "createdTime": "2021-01-14T09:03:56.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63869f25-f4fc-40c2-bd14-3f8a99be160c", + "createdTime": "2021-01-14T09:03:55.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c499d4ec-b5d0-4015-aa0c-b19c15a2a7d5", + "createdTime": "2021-01-14T09:03:54.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b6b8476-20b9-422d-a1cf-385fab8352ee", + "createdTime": "2021-01-14T09:00:02.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e2ff7c2-4165-4e63-a116-fef43c713bc3", + "createdTime": "2021-01-14T09:00:02.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b3791fa-8f7b-4d59-8459-3d70e674d0e9", + "createdTime": "2021-01-14T09:00:01.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "546dc581-df7d-4fc6-8431-a58881d7817f", + "createdTime": "2021-01-14T09:00:01.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29780d2c-7fa5-4e67-978b-13176b391812", + "createdTime": "2021-01-14T08:48:04.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "05325a2a-4b10-4f7c-92ab-b2939d8beb3c", + "createdTime": "2021-01-14T08:48:04.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "79858130-ed4a-4da6-904b-630b7fe7cbd9", + "createdTime": "2021-01-14T08:48:03.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da275a4f-0fbf-44a0-8d5d-b356145b3bf8", + "createdTime": "2021-01-14T08:48:02.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4520cf58-c8bf-466a-bba5-cf96b064d8b0", + "createdTime": "2021-01-14T08:31:36.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "70b5517b-c6b7-41ef-886c-181c38a21110", + "createdTime": "2021-01-14T08:35:25.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d412faf3-bca7-411f-a9d8-7dfb544c3c39", + "createdTime": "2021-01-14T08:24:12.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "56cad88e-5a5c-43c4-92f5-8fbbb9ae1e17", + "createdTime": "2021-01-14T08:35:25.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b6d9bb2-f5a7-4f66-838e-f9d8ab8bdcfe", + "createdTime": "2021-01-14T08:35:24.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dfd94085-d973-4b2b-b62a-0bbb07a2e97f", + "createdTime": "2021-01-14T08:35:23.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69e94fdb-cb3c-4bd7-ab9a-2845a0dc6177", + "createdTime": "2021-01-14T08:31:35.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8dfc7e44-c084-49ac-94ff-6ab7a9af00a8", + "createdTime": "2021-01-14T08:31:34.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0b590c54-d2f3-4ff2-80f2-662ef0741a1f", + "createdTime": "2021-01-14T08:31:33.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83f7954f-9af8-429a-994b-8f3c2df648b9", + "createdTime": "2021-01-14T08:24:11.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf85b5c5-2882-449d-a2be-c2a4457353bb", + "createdTime": "2021-01-14T08:24:10.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9c55f25-a13a-4344-b815-4fba2b85878a", + "createdTime": "2021-01-14T08:24:10.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f93e1c0c-827b-4312-8b84-e7a883f97964", + "createdTime": "2021-01-14T08:20:22.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88394bd8-0b7a-452f-ac70-f869614b831f", + "createdTime": "2021-01-14T08:20:21.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "783eb848-972c-4acc-8e4e-90a8d268929a", + "createdTime": "2021-01-14T08:20:20.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5178eb44-213b-47f2-b477-67b74b4ebe1e", + "createdTime": "2021-01-14T08:20:19.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b1a2407-809e-48c7-99a0-741ede4b2634", + "createdTime": "2021-01-14T00:10:17.186Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d86a8fb-0e6a-4722-8c1a-a34ec07bd17c", + "createdTime": "2021-01-13T20:06:06.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9edc0dc9-579a-4a67-a5b0-bc0e8663aa47", + "createdTime": "2021-01-13T20:05:02.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64da1d5a-aa33-40e1-8f6e-42188feda23a", + "createdTime": "2021-01-13T20:05:47.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6b6eb7c-e85e-4aa0-8af2-8f16b11fd84a", + "createdTime": "2021-01-13T20:11:46.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f351e58-a0c7-47fa-9974-ba29dae7c74c", + "createdTime": "2021-01-13T20:07:38.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cb75c9dd-97d5-41e4-9839-164880ad773b", + "createdTime": "2021-01-13T20:10:17.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0f50131-61a3-44e4-b73d-293e8f847cec", + "createdTime": "2021-01-13T20:11:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "15a490c0-dd73-4adf-84cd-9b3f4a2c8634", + "createdTime": "2021-01-13T20:11:46.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "58086ab8-b9fa-4987-b495-f2d65b8e0da4", + "createdTime": "2021-01-13T20:11:45.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdbd6a2a-38fe-4ef0-bda4-a5d71371c0c3", + "createdTime": "2021-01-13T20:10:17.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1525a401-0615-43ba-b92d-4af1f0a03a5b", + "createdTime": "2021-01-13T20:10:16.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "85f34a6b-b7da-4e97-926e-365aac3ec15d", + "createdTime": "2021-01-13T20:10:16.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17103415-b297-40d0-afbd-5cfe0c995b1e", + "createdTime": "2021-01-13T20:07:38.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0569647b-e517-4073-a656-42d9d937b45e", + "createdTime": "2021-01-13T20:07:37.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "156a2d5d-90b8-433c-b97f-a7ec6581e074", + "createdTime": "2021-01-13T20:07:36.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00539d0a-fd16-4765-a4b6-3a67d9acbb1f", + "createdTime": "2021-01-13T20:06:07.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "48ba9c73-e5ae-4542-b662-49b5eb48d75a", + "createdTime": "2021-01-13T20:06:05.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5d1ef766-ba03-4108-b4d0-4500c0da46aa", + "createdTime": "2021-01-13T20:06:05.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f27dc93-b970-40e9-b6bd-229691849877", + "createdTime": "2021-01-13T20:05:48.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cdc234e4-4043-4bbe-9c31-394213b46266", + "createdTime": "2021-01-13T20:05:46.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "863a66a9-d98e-43d9-9f78-72f3587d6558", + "createdTime": "2021-01-13T20:05:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c26aa392-fde3-4a78-8814-4c86fdeed3f6", + "createdTime": "2021-01-13T20:05:02.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "17daea4e-8b29-4465-9a00-0646c47894e7", + "createdTime": "2021-01-13T20:05:01.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e7133435-efa0-483c-9ac1-ee94b3486ae9", + "createdTime": "2021-01-13T20:05:01.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77a0296a-eb2d-4527-8a04-2727481f950d", + "createdTime": "2021-01-13T20:04:43.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "97f9d203-dd2b-4577-8f98-a3426f14927f", + "createdTime": "2021-01-13T20:04:42.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8d6523bd-5e94-4702-ae46-8e5110229acc", + "createdTime": "2021-01-13T20:04:41.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dade334d-c5f6-4562-a003-b5addc534f0b", + "createdTime": "2021-01-13T20:04:41.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "156cdbdd-cef6-44a7-9471-751254243939", + "createdTime": "2021-01-13T09:21:50.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9c7a23ab-723a-4b27-b5f2-c27c721ccb1b", + "createdTime": "2021-01-13T09:21:49.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aeeddbda-08bf-417a-8751-4b6861f91797", + "createdTime": "2021-01-13T09:21:49.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3dbe83ca-8b6f-4d40-b8f1-33967f17fbeb", + "createdTime": "2021-01-13T09:21:48.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e4bcc4bf-3136-4403-bfa0-ba9638f77d6e", + "createdTime": "2021-01-13T09:18:11.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c4469a5-cfa1-49eb-875c-2ce834516232", + "createdTime": "2021-01-13T09:18:11.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fdd72891-c238-4eb4-990e-add2bc445594", + "createdTime": "2021-01-13T09:18:10.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "83b7742f-b705-4ac3-8ff0-2f00c26170bc", + "createdTime": "2021-01-13T09:18:10.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e22d7f1-9365-4e97-a30f-e2537fe296d9", + "createdTime": "2021-01-13T09:02:42.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5b46393f-57ed-4298-8376-a12727711852", + "createdTime": "2021-01-13T09:02:41.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca2e2e4-0d4b-400c-b8ca-c3e16f6860d8", + "createdTime": "2021-01-13T09:02:40.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad218fc6-272d-43d2-87a5-eec8afc8443a", + "createdTime": "2021-01-13T09:02:40.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a4e6a6-9985-49f3-aced-4ce63e373f75", + "createdTime": "2021-01-13T08:58:44.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d61939-3dc8-46d3-a05a-00d75e705883", + "createdTime": "2021-01-13T08:58:43.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3d7ad22-3938-4f37-8601-af698741a89a", + "createdTime": "2021-01-13T08:58:42.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "18d64506-1188-4800-9402-17ad9653d5dc", + "createdTime": "2021-01-13T08:58:41.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6978006d-0c6b-45c8-a1c0-e678183559f9", + "createdTime": "2021-01-13T08:45:22.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8aa1d17d-8f7f-4b60-a9c7-5f952cf1006e", + "createdTime": "2021-01-13T08:45:21.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "341c08ef-2976-4db9-bdc0-9b0ed2c3fe74", + "createdTime": "2021-01-13T08:45:21.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42e0ad85-d761-41fb-b899-6a86b4cbfd2c", + "createdTime": "2021-01-13T08:45:20.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75bdcf11-a72d-474c-a578-5eca304b9e3d", + "createdTime": "2021-01-13T08:31:26.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf5faa8d-7b10-4229-8cd1-e219478c8a1d", + "createdTime": "2021-01-13T08:35:19.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03f0a27a-2759-414d-909a-8ac54c7773ac", + "createdTime": "2021-01-13T08:24:14.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acad6a6c-9773-44f6-8b21-53e23f9e0613", + "createdTime": "2021-01-13T08:35:19.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b90de78-b8b9-40fd-a8e8-79e65f67f861", + "createdTime": "2021-01-13T08:35:18.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "925a304b-5353-4a3c-88e6-a5207734c111", + "createdTime": "2021-01-13T08:35:18.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8420003e-47d8-4052-95a7-e7847733f659", + "createdTime": "2021-01-13T08:31:25.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a7570520-1879-4e46-8fcd-eef51beaf7ae", + "createdTime": "2021-01-13T08:31:24.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "212d5424-ac2c-4871-81e3-509f575a53fa", + "createdTime": "2021-01-13T08:31:23.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57d78186-2a4b-4194-a26f-8529c68e2898", + "createdTime": "2021-01-13T08:24:13.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e1fdfbe-35b3-4fdf-8d58-e9e466670012", + "createdTime": "2021-01-13T08:24:13.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b9d9b1a8-42e6-48c1-8059-ef94ae2509d6", + "createdTime": "2021-01-13T08:24:12.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "393fedb0-ac33-490e-81db-577a8baed38d", + "createdTime": "2021-01-13T08:20:30.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6d039c48-45c6-4df2-bfd4-421e16f3b590", + "createdTime": "2021-01-13T08:20:28.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e1a68ddf-23ed-4ba9-abe0-e71036fd32ba", + "createdTime": "2021-01-13T08:20:28.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "07f54ed0-a6c7-4568-bea5-c710422c1018", + "createdTime": "2021-01-13T08:20:27.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67da7875-78b2-41c8-9845-20168baab347", + "createdTime": "2021-01-12T20:31:13.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "77dac7a3-576c-4668-9056-33a5f45984c8", + "createdTime": "2021-01-12T20:26:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c46df5dd-b68e-4872-bc6e-8008c8b9cbae", + "createdTime": "2021-01-12T20:24:49.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "86e41ea3-9506-4100-8f60-b8c6a29bac49", + "createdTime": "2021-01-12T20:25:45.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06bcfdc8-5970-4385-855a-ecac8c688c75", + "createdTime": "2021-01-12T20:24:42.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5cb50aa-5c83-4030-8c4c-d6acb38471ef", + "createdTime": "2021-01-12T20:28:38.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d21cee2c-0cad-43f8-a7b9-e54197c4ad20", + "createdTime": "2021-01-12T20:31:14.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57eb5f5a-7fb4-4de7-acb2-80728e67701d", + "createdTime": "2021-01-12T20:31:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eebf1270-6fd5-4f29-b4ae-994097445191", + "createdTime": "2021-01-12T20:31:12.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88852ec-782f-48d6-ad00-e44cb29b5a89", + "createdTime": "2021-01-12T20:28:38.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c7c68435-0504-48ed-b0aa-8d641134aa81", + "createdTime": "2021-01-12T20:28:37.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d5f9fd7f-b28e-47b1-bef7-4ca56d512748", + "createdTime": "2021-01-12T20:28:37.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da1ec863-9d5f-4664-a927-5bc2e52785d2", + "createdTime": "2021-01-12T20:26:09.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0efb79bf-85bf-444e-ba4a-26d173f7613a", + "createdTime": "2021-01-12T20:26:08.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "950f860e-eb03-46c6-9459-70c1175fc9be", + "createdTime": "2021-01-12T20:26:08.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaf9fa35-cbae-4ed7-b376-dbeb9081e94b", + "createdTime": "2021-01-12T20:25:46.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "093581ff-81b0-4e97-92fd-f137e64f86d8", + "createdTime": "2021-01-12T20:25:44.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "db0ac784-b338-4e65-a715-08a724c1d78a", + "createdTime": "2021-01-12T20:25:43.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d34b778-66ce-4185-9541-f8ee73acb339", + "createdTime": "2021-01-12T20:24:49.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6a5bd429-b865-4b58-8237-dd1b27cb4f93", + "createdTime": "2021-01-12T20:24:48.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5f64ebb1-4d15-4903-898b-93841233de74", + "createdTime": "2021-01-12T20:24:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3156ddb8-6167-4bc2-bdce-c65abc80773a", + "createdTime": "2021-01-12T20:24:42.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4af3489-16b8-49a6-97c1-8bbd61590c6f", + "createdTime": "2021-01-12T20:24:41.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6749bbdd-f898-48cc-b90b-3ef6bb37b2b8", + "createdTime": "2021-01-12T20:24:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3355a0b9-a496-4be6-97c0-337e6f3fe157", + "createdTime": "2021-01-12T20:24:36.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e5121794-205d-4ae3-83a5-919ac47ee579", + "createdTime": "2021-01-12T20:24:35.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a8bf3867-85ca-43f5-b841-a2a11d002c2e", + "createdTime": "2021-01-12T20:24:34.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1fbc6f65-c4a9-47b4-aaf2-9b5659626f5b", + "createdTime": "2021-01-12T20:24:34.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10281834-0a41-480e-a032-99ee1f31dee9", + "createdTime": "2021-01-12T09:12:38.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b864efdd-840a-4c70-ba8a-2d79a04ac8f1", + "createdTime": "2021-01-12T09:12:37.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82d5d899-de40-46eb-8f8e-9bb9fb841135", + "createdTime": "2021-01-12T09:12:36.294Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "adb370d6-f4c0-4ff9-9857-2222625e5aba", + "createdTime": "2021-01-12T09:12:35.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9b397339-0e01-4751-8f4f-08ad019c1806", + "createdTime": "2021-01-12T09:08:50.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2fd120c4-5d04-428a-a643-9f33e2f3eb0f", + "createdTime": "2021-01-12T09:08:49.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "94522b17-806c-455e-8776-a96f5c58288c", + "createdTime": "2021-01-12T09:08:49.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eee53610-7ce7-4554-a881-cab47647f587", + "createdTime": "2021-01-12T09:08:48.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed5a5f0e-f74f-4988-a3d4-ad405263bbb8", + "createdTime": "2021-01-12T09:01:28.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0c2ccfae-4b1b-4508-b316-6635abc425d9", + "createdTime": "2021-01-12T09:01:27.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b1231b8-67df-44d7-85f4-56a0b051fb33", + "createdTime": "2021-01-12T09:01:26.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "254ecccf-61b6-43b9-be45-4260ffffc1b0", + "createdTime": "2021-01-12T09:01:25.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62688ffe-bf44-4f26-bbc3-773ea08fcbd4", + "createdTime": "2021-01-12T08:57:42.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3c0215e0-8070-4b97-b40f-d0907b0eef83", + "createdTime": "2021-01-12T08:57:40.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "83215345-deb7-42c5-a8e8-be0e475ac027", + "createdTime": "2021-01-12T08:57:40.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6c82d5-2756-4649-9c99-f149aad528b8", + "createdTime": "2021-01-12T08:57:39.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a5e34d2-384a-4ae7-8bef-e2798d16bce4", + "createdTime": "2021-01-12T08:48:21.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57bf4025-90b5-4770-89dc-3c4c3821db1f", + "createdTime": "2021-01-12T08:48:20.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "54de3543-5452-4732-ac01-82613f2ee850", + "createdTime": "2021-01-12T08:48:20.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69923da8-30f9-4f66-8377-06cdf4e1a37c", + "createdTime": "2021-01-12T08:48:19.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03004e90-7a85-4d27-b44e-1d7d144f702a", + "createdTime": "2021-01-12T08:37:12.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d886da2-8cd2-4815-b591-dce36e9f1ae3", + "createdTime": "2021-01-12T08:37:12.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b2502657-a041-49fd-8ffb-bc9b0bb1c4ff", + "createdTime": "2021-01-12T08:37:11.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7fbf0cc-db9f-4f3c-aafb-cfd90e9187ea", + "createdTime": "2021-01-12T08:37:11.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdfa9909-9ca7-4568-aa45-9393cc2c58d0", + "createdTime": "2021-01-12T08:33:27.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a99e56d6-d34a-416d-a6af-eea195a4e282", + "createdTime": "2021-01-12T08:24:05.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dcf9c02-88ea-4842-b084-72bdacdb5a1b", + "createdTime": "2021-01-12T08:20:26.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e639bdbf-adfc-4ce8-8889-be99d870fcbc", + "createdTime": "2021-01-12T08:33:26.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "628e46f9-44c4-4ea0-a457-46a7a252219d", + "createdTime": "2021-01-12T08:33:25.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a913202-a024-4eda-971c-136e6a17c697", + "createdTime": "2021-01-12T08:33:24.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71325e8f-0854-47ac-8166-79f7f9c6dd47", + "createdTime": "2021-01-12T08:24:05.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5791f964-4f03-490a-a515-a91f7d2bc6c7", + "createdTime": "2021-01-12T08:24:04.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd483a6c-82c6-49b8-ab1e-cd8203c57701", + "createdTime": "2021-01-12T08:24:04.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9dd6c345-825d-4451-9105-e4697d626e2b", + "createdTime": "2021-01-12T08:20:25.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c373ca0-0a78-4db9-8031-95a5763efc27", + "createdTime": "2021-01-12T08:20:24.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1428dd7b-eb68-4d1f-9bf2-19c4fa68c0c5", + "createdTime": "2021-01-12T08:20:23.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a853b3eb-4292-4389-91bd-e0bab3aee981", + "createdTime": "2021-01-11T22:43:02.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "53d8c1fc-4bc8-41e0-89a1-f6bd9fe42fd1", + "createdTime": "2021-01-11T22:43:01.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28b1d568-2b7f-473d-b196-7378f6653128", + "createdTime": "2021-01-11T22:43:01.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "adcc8390-b5cd-4b89-85f4-e2d84fb404d5", + "createdTime": "2021-01-11T22:43:00.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f65a7328-3220-4236-ae45-adaf0ab59f5d", + "createdTime": "2021-01-11T22:43:00.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "31df969b-14ca-408e-9e7c-68482712d9b2", + "createdTime": "2021-01-11T22:42:59.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f683e57-5d49-4cd0-925e-08089bea7f70", + "createdTime": "2021-01-11T22:35:54.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b53982f-333e-4f55-a291-63461479769a", + "createdTime": "2021-01-11T21:34:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "746e4eeb-6f3f-4c39-9e3d-1e67a08815c8", + "createdTime": "2021-01-11T20:28:25.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ba3b8aad-3ca9-4788-aae0-dc36130659cf", + "createdTime": "2021-01-11T20:24:16.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9f9c554a-a5aa-41fd-be49-ad858557498b", + "createdTime": "2021-01-11T20:28:15.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "69c44822-17ee-486c-9d3d-886da3075c46", + "createdTime": "2021-01-11T20:24:50.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3ac53867-44bc-4b44-818a-19f2c34bb526", + "createdTime": "2021-01-11T20:31:46.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57a976f3-2b67-421a-8c3d-5ea33ad6ee83", + "createdTime": "2021-01-11T20:31:45.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5f2e8f8-e49f-4166-a22c-985ac4dc4392", + "createdTime": "2021-01-11T20:31:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cfdb985b-0e4c-4b7a-9802-23a4bcb80a78", + "createdTime": "2021-01-11T20:31:44.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17d063ab-aee4-488d-8f88-500f4efb1306", + "createdTime": "2021-01-11T20:24:26.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "deea8700-a580-48e0-af50-bc98c8db3c11", + "createdTime": "2021-01-11T20:28:26.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7f838b66-08da-444a-850f-307788f19543", + "createdTime": "2021-01-11T20:28:24.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8fbcfc9c-a67d-48ec-b1bb-cb70e929575c", + "createdTime": "2021-01-11T20:28:24.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d38d7767-016f-4c59-99fb-c548f18bfb19", + "createdTime": "2021-01-11T20:28:16.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a9f6030e-d9a9-4833-ac76-b5385d903223", + "createdTime": "2021-01-11T20:28:15.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3ca9e0bb-bf36-49cc-8411-2b488455b446", + "createdTime": "2021-01-11T20:28:14.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81380cfd-35b3-4dfb-95dd-a39681d02566", + "createdTime": "2021-01-11T20:24:51.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3d84aa09-1730-4b5b-9c45-5b16b9b4085d", + "createdTime": "2021-01-11T20:24:49.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5c29b18-5089-4f18-bee4-ad6f5e66799e", + "createdTime": "2021-01-11T20:24:49.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9bb89c01-b6a3-46ef-b95a-fbf2aa4e13a1", + "createdTime": "2021-01-11T20:24:28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5d46f766-b07b-482e-bc36-c4b42a929c77", + "createdTime": "2021-01-11T20:24:25.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a594e7e2-8fcf-4fdf-bbd2-9f61c560ecb4", + "createdTime": "2021-01-11T20:24:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3da237bf-f79a-437d-b533-72b344197be9", + "createdTime": "2021-01-11T20:24:17.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "81b5a08c-2d22-46fc-91e2-b05e3cadbba0", + "createdTime": "2021-01-11T20:24:15.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "447b063b-6b44-4974-9905-4a223f6e7f0e", + "createdTime": "2021-01-11T20:24:14.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86053b46-fa0a-40b4-aa67-6cbffba5eedc", + "createdTime": "2021-01-11T20:23:58.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f9e1fc3-b433-48ab-bdef-2afc5fd970a6", + "createdTime": "2021-01-11T20:23:58.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "598941c1-7b07-4852-a0e8-1e0f9f3437b7", + "createdTime": "2021-01-11T20:23:57.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2aacafd4-704a-48db-87eb-0d7b4e150ec2", + "createdTime": "2021-01-11T20:23:57.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f99601b8-b678-4aef-a99c-4fd3e76f2bc1", + "createdTime": "2021-01-11T09:17:26.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9f16da08-01fe-4445-9948-704159d05203", + "createdTime": "2021-01-11T09:17:25.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf5ed19-4cf1-4553-8fe4-1a6e430b4d26", + "createdTime": "2021-01-11T09:17:24.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3fc9463f-7a76-48e0-a492-1a1575be7c59", + "createdTime": "2021-01-11T09:17:23.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bb3d070f-090c-42b8-b04a-b6a318904db9", + "createdTime": "2021-01-11T09:13:47.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c85b2b0-b975-4077-bc92-390afd7a883f", + "createdTime": "2021-01-11T09:13:46.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e54a6fd-b234-4091-87cf-3bf76497c683", + "createdTime": "2021-01-11T09:13:46.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "583b3ed0-988b-47c5-8fb3-dba49a0f1018", + "createdTime": "2021-01-11T09:13:45.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4441117c-b154-47d2-930d-c37df93f2b1e", + "createdTime": "2021-01-11T09:00:20.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c714fab-ff92-43e4-bb35-45caec9a79c3", + "createdTime": "2021-01-11T09:00:19.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "349af338-e5f9-4e29-b13d-dfff96a61fdb", + "createdTime": "2021-01-11T09:00:19.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f9116904-3cb5-4948-a18c-b1e2af87363f", + "createdTime": "2021-01-11T09:00:18.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b582e4b1-0c37-454d-a53e-ddfe6bc5f75f", + "createdTime": "2021-01-11T08:56:29.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86b501d7-270e-463a-a975-9b63ef1f4cf3", + "createdTime": "2021-01-11T08:56:28.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf40e1d8-723e-4e57-a54a-79a72c97119d", + "createdTime": "2021-01-11T08:56:28.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62335039-2fc8-4497-83f6-56e106415c82", + "createdTime": "2021-01-11T08:56:27.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e223f769-4174-4954-8f0d-440a2f1e9423", + "createdTime": "2021-01-11T08:47:30.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8bfc164-2b65-414f-b6ac-8f12e8cfaef1", + "createdTime": "2021-01-11T08:47:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1eecc29-8577-4cc8-ba0c-5bd8953d1e58", + "createdTime": "2021-01-11T08:47:28.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e0b2840-beae-45ed-810b-3a4049ce37e4", + "createdTime": "2021-01-11T08:47:27.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edff630e-08a1-4b2d-b72e-e0e3ac43a188", + "createdTime": "2021-01-11T08:37:02.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "65cb94de-060b-4bee-9696-081bf002445d", + "createdTime": "2021-01-11T08:24:42.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bbc812f9-2a22-488d-a393-1ea2fa9ff997", + "createdTime": "2021-01-11T08:33:15.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "34446c09-bef4-4bd9-96da-cb344e622a87", + "createdTime": "2021-01-11T08:37:01.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95c812d4-eb69-4573-a576-777b3469a631", + "createdTime": "2021-01-11T08:37:00.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54eeb8d3-fa62-46db-a37f-988715691398", + "createdTime": "2021-01-11T08:37:00.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "deeb63c2-dd3e-4530-a2ab-521b8a7086c3", + "createdTime": "2021-01-11T08:33:15.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1af443c8-ae1e-4984-9002-2f35a1999b44", + "createdTime": "2021-01-11T08:33:14.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6df835a9-9870-4b69-8c23-1ff2bc7a7056", + "createdTime": "2021-01-11T08:33:13.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be9a8817-bb63-4442-98d1-5761edebf7f8", + "createdTime": "2021-01-11T08:24:42.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e884e87-a410-4f3e-a339-6cf7c084514c", + "createdTime": "2021-01-11T08:24:41.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "402fd3ea-c38f-4d2f-9805-b159d46526e0", + "createdTime": "2021-01-11T08:24:40.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a16ce83-1fa0-4233-938c-31726fafe7d9", + "createdTime": "2021-01-11T08:20:52.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e907fd7d-cd6e-4432-aba7-ef2cab3acda2", + "createdTime": "2021-01-11T08:20:51.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b35997f-7fa2-4a19-9c6d-1b40bc6d45c5", + "createdTime": "2021-01-11T08:20:51.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "72cab1a7-e2a6-465a-83b1-186e764fce20", + "createdTime": "2021-01-11T08:20:50.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee199779-dcb8-46fb-8146-5a3ab72a93e7", + "createdTime": "2021-01-08T20:08:25.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b280b149-c573-4a2e-bcfe-75b9ae68a3b8", + "createdTime": "2021-01-08T20:10:58.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3a650755-1022-41ec-a242-d4a9202791fa", + "createdTime": "2021-01-08T20:06:57.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4c65b3a1-56f3-4124-bd78-2150e79267d9", + "createdTime": "2021-01-08T20:06:56.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d9f2fdcb-1ea7-4fab-bd75-e7696d20a1bc", + "createdTime": "2021-01-08T20:07:47.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b0a22122-4604-484b-8b3a-1564ffd09328", + "createdTime": "2021-01-08T20:12:26.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "437baf03-f0e2-4de6-b1fd-fc6f58ac6171", + "createdTime": "2021-01-08T20:12:27.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "511d28a7-c9f9-41c7-ae03-ce42036303ff", + "createdTime": "2021-01-08T20:12:26.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0c7b7f-a1af-49e1-9907-1ac3495a1b44", + "createdTime": "2021-01-08T20:12:25.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa8b5713-9e08-4d86-9b49-52859a64e744", + "createdTime": "2021-01-08T20:10:59.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4da5974-6eeb-4af0-8c49-0d18cb6c1237", + "createdTime": "2021-01-08T20:10:58.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bafda377-cf59-4a0e-b68d-6741f305e646", + "createdTime": "2021-01-08T20:10:57.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c5a3a50-252e-4a76-8814-26cf269691d4", + "createdTime": "2021-01-08T20:08:26.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8df83580-8853-409d-98ce-a02e8ba6ac57", + "createdTime": "2021-01-08T20:08:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4434103-2df6-48d7-a5e5-681c1414482e", + "createdTime": "2021-01-08T20:08:24.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfa30ebc-c6c2-43ae-be9a-e45142e18569", + "createdTime": "2021-01-08T20:07:48.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e03dcd5b-56b7-498a-80af-a0fb7cb44f78", + "createdTime": "2021-01-08T20:07:46.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "840a4a5a-b3ca-43c5-936b-da2ea7f0a86a", + "createdTime": "2021-01-08T20:07:45.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17f5e327-4365-4a06-9007-d25575eb7f63", + "createdTime": "2021-01-08T20:06:58.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a7c67fc4-892f-48d9-ab94-3cbc73f33b55", + "createdTime": "2021-01-08T20:06:57.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b09e4dd4-5932-4fb3-afee-5d3f5fa6e9fb", + "createdTime": "2021-01-08T20:06:57.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3996f23e-e00f-42c0-a6a9-4eb2799ca2de", + "createdTime": "2021-01-08T20:06:56.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bfe1e98-91a5-4a83-8480-a5e25f3babae", + "createdTime": "2021-01-08T20:06:56.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f52aa4df-104e-498d-94e0-34688d374d88", + "createdTime": "2021-01-08T20:06:55.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2f4353d-354b-4695-8c06-a7f3cfb26ce0", + "createdTime": "2021-01-08T20:06:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f689cc20-0f9a-4f56-ae1a-28297ca1803f", + "createdTime": "2021-01-08T20:06:33.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "25e48dc3-c368-40b7-b3a1-82eccac9dcbf", + "createdTime": "2021-01-08T20:06:33.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1577fc73-4aee-431d-b2d1-748bf6887600", + "createdTime": "2021-01-08T20:06:32.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d9805e1-53a6-4c01-b373-d2618766bf7b", + "createdTime": "2021-01-08T09:15:06.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "940f494f-7424-4326-9a54-e8619239996e", + "createdTime": "2021-01-08T09:15:05.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7355d19b-74a9-47c5-872c-3af939100099", + "createdTime": "2021-01-08T09:15:05.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5014a9a-c18f-43b3-bfae-f709eb0395b3", + "createdTime": "2021-01-08T09:15:04.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d9062b5-1cbf-40c3-b068-33df32720bde", + "createdTime": "2021-01-08T09:11:25.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5fc8df59-9d23-496c-ab0b-edaf5d98ffab", + "createdTime": "2021-01-08T09:11:24.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a4a7ee2-6114-4f77-a11f-6adffcd40ce2", + "createdTime": "2021-01-08T09:11:23.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a012d2ce-0a6d-4dbe-b7a7-0cbae9c1236a", + "createdTime": "2021-01-08T09:11:23.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e494622a-c43d-4a25-aca9-3f90510ea560", + "createdTime": "2021-01-08T08:58:51.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9097b46d-3876-4108-88da-7bfe61e0624a", + "createdTime": "2021-01-08T08:58:50.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9edc5f6f-fed9-4911-bbc0-c0b98e685ac3", + "createdTime": "2021-01-08T08:58:49.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42a01786-d66b-49bf-9010-aa09f40d93e4", + "createdTime": "2021-01-08T08:58:49.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33cd4c8-dd98-4ee2-97ad-45be1c16c3f7", + "createdTime": "2021-01-08T08:55:26.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db61131e-cbdf-470a-bde3-ebf825c58b4d", + "createdTime": "2021-01-08T08:55:25.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9a20f70-cce1-4bc3-b272-bb2d333afc6b", + "createdTime": "2021-01-08T08:55:24.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f5837e6-39ea-4d0f-8531-3de78eceb9dd", + "createdTime": "2021-01-08T08:55:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f678ab8-936f-4bf0-9c96-2d5fbf67a837", + "createdTime": "2021-01-08T08:46:33.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72f1c81f-b8f7-4703-aa42-01a82ed5980b", + "createdTime": "2021-01-08T08:46:33.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd9eb62f-8fc1-4330-abc2-953b565a9991", + "createdTime": "2021-01-08T08:46:32.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "771dbe08-65da-488e-96b8-8896f4c8dac3", + "createdTime": "2021-01-08T08:46:32.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bc3bddd1-7e84-49ee-8590-bef9b040ec4d", + "createdTime": "2021-01-08T08:24:04.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d8f5a0-c32c-4f6f-a960-993512daec6d", + "createdTime": "2021-01-08T08:31:05.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66ac0de6-786a-46ca-953f-ecc744452f7d", + "createdTime": "2021-01-08T08:34:43.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c04bcd54-1ca3-4724-aced-28f7bccda553", + "createdTime": "2021-01-08T08:34:42.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43feb29e-15e8-47bb-b30b-5a4c89238128", + "createdTime": "2021-01-08T08:34:41.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6bddd586-e820-4a20-b23a-00b440ee3715", + "createdTime": "2021-01-08T08:34:40.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3c65c2b-8898-428d-bace-8373d04a1075", + "createdTime": "2021-01-08T08:31:05.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a7a7514-536f-47cc-aa2b-c1ed199716ea", + "createdTime": "2021-01-08T08:31:04.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62c4563b-165f-4c53-a6d5-cc818a6b2d58", + "createdTime": "2021-01-08T08:31:03.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c1c3a7b-e961-4cf0-a017-a0c2d2a1dbd9", + "createdTime": "2021-01-08T08:24:03.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "37e6d2ae-b8be-4c9b-bc15-94409a75a76c", + "createdTime": "2021-01-08T08:24:03.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0aaf1452-6196-4b20-9943-9e1fa0f65ae0", + "createdTime": "2021-01-08T08:24:02.676Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5642370a-8f06-48b3-9ba4-b411786341a4", + "createdTime": "2021-01-08T08:20:27.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "46e0b1a4-6060-43c4-be06-f61eac335332", + "createdTime": "2021-01-08T08:20:27.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "34165f68-9651-4b93-b439-175e59742b42", + "createdTime": "2021-01-08T08:20:26.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db900127-085d-4015-b00d-8e903fae1abb", + "createdTime": "2021-01-08T08:20:25.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c200cb0-b64a-4d88-b273-189f2ef383ef", + "createdTime": "2021-01-07T20:32:34.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5375094-3375-4f29-a462-aef497ef688f", + "createdTime": "2021-01-07T20:31:27.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "731c57a9-bf59-4d58-b633-5c42035e0c2d", + "createdTime": "2021-01-07T20:31:00.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a3a2fa75-8647-4d89-8d36-666456ae9248", + "createdTime": "2021-01-07T20:37:58.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4778511-4c1b-42fd-9bc5-7ea1c824f599", + "createdTime": "2021-01-07T20:37:57.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b462f0c-69ca-4cde-8a32-e8a5a838d006", + "createdTime": "2021-01-07T20:37:56.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4a8ee4c-75a2-4c73-b33d-a6b01323dea2", + "createdTime": "2021-01-07T20:37:56.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe52092e-c14c-4a23-af30-3355ca35d1e8", + "createdTime": "2021-01-07T20:30:44.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "47009bb6-8bbc-46c9-ac99-8e07f5348701", + "createdTime": "2021-01-07T20:34:37.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b4163ca-7b37-4644-bb13-d1a2da37efd6", + "createdTime": "2021-01-07T20:34:37.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfb438bc-33b4-40a2-925c-43477d1b8166", + "createdTime": "2021-01-07T20:34:36.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0bfda9de-8f70-4fdf-8928-0c3cfc5b08ca", + "createdTime": "2021-01-07T20:34:35.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3a36b14-634f-44f0-8ab4-0ce84c53598c", + "createdTime": "2021-01-07T20:32:35.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1abf8598-9c59-4e74-9af4-5512d3af3c9c", + "createdTime": "2021-01-07T20:32:34.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6270b3be-17d3-4e6f-9442-2f9d58f788f1", + "createdTime": "2021-01-07T20:32:33.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b545b63-adea-4f4c-b2ac-498550fd60f8", + "createdTime": "2021-01-07T20:31:28.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "59d62a3c-1a0f-48cc-9aeb-30f72d9b9f8a", + "createdTime": "2021-01-07T20:31:27.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70200b3a-97fd-43fe-8f69-2b2751138b45", + "createdTime": "2021-01-07T20:31:26.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be557bac-f974-440c-9f0d-936117a34816", + "createdTime": "2021-01-07T20:31:00.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ceaa184b-e803-411b-a512-74a443ad3f6c", + "createdTime": "2021-01-07T20:30:59.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "75e47d24-1dac-4e5b-b4f9-93143e989cbb", + "createdTime": "2021-01-07T20:30:59.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fea3df2-81ab-44d5-900f-99b80693ea1f", + "createdTime": "2021-01-07T20:30:45.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c58646fc-68ba-4f35-9d2f-f7925c47609e", + "createdTime": "2021-01-07T20:30:44.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0394c7-42d5-4f3f-bf6d-454df504e599", + "createdTime": "2021-01-07T20:30:43.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b43c4b78-499e-4cd7-8b37-16f2b3602830", + "createdTime": "2021-01-07T20:29:52.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "009adfe8-76f4-4073-ab1c-a86bee525c6c", + "createdTime": "2021-01-07T20:29:51.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ce356f97-6328-4f59-9f3e-49ca8bf04fe2", + "createdTime": "2021-01-07T20:29:51.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "99575c51-9f43-49e7-b2ee-edfb41718a11", + "createdTime": "2021-01-07T20:29:50.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e74fe55-d337-473b-8366-f5af9da6cfc2", + "createdTime": "2021-01-07T16:33:57.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e1dc8518-68dc-489e-b398-e4be3eacabd5", + "createdTime": "2021-01-07T16:43:59.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "baaf7319-0946-4616-b851-5ec22c147301", + "createdTime": "2021-01-07T16:47:33.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8f5c7147-54a4-4191-9aa7-05c92035176d", + "createdTime": "2021-01-07T16:47:32.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a2b82963-d5f0-4ebd-a9d7-a9bb438687a2", + "createdTime": "2021-01-07T16:47:31.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "233c721e-1349-49c3-8379-f281d933a3e4", + "createdTime": "2021-01-07T16:47:30.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df87eb9-1f3f-4943-a101-8ce18777ab88", + "createdTime": "2021-01-07T16:43:58.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "70b4d19f-02ad-4c38-a679-2ed7da213600", + "createdTime": "2021-01-07T16:43:58.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e9ab0f5-71b2-4dfa-a694-37604230e0f3", + "createdTime": "2021-01-07T16:43:57.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c58732b4-dcc9-46d8-baad-afc8080dcc3f", + "createdTime": "2021-01-07T16:33:57.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9de406b9-3386-4a10-b723-e674571c60bc", + "createdTime": "2021-01-07T16:33:56.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e4c987db-ba9d-44a4-b364-ed14d37b714f", + "createdTime": "2021-01-07T16:33:56.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c88af87a-6f6e-4f18-8190-13db70a53587", + "createdTime": "2021-01-07T16:30:50.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d1017176-83c7-4143-ab8b-3dfb6a8069b0", + "createdTime": "2021-01-07T16:30:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29c988f5-893c-42e6-b8c6-aa839375b232", + "createdTime": "2021-01-07T16:30:48.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2a140a60-1e77-44c7-ad58-6b6375f3d8e5", + "createdTime": "2021-01-07T16:30:48.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f96929c-67c8-464b-b19b-0bcde1bca9c0", + "createdTime": "2021-01-07T09:17:24.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa706dfa-12dc-4a1a-9565-e7afc81d93d3", + "createdTime": "2021-01-07T09:17:23.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67ce7331-d98e-439a-95a4-71048dc09ef2", + "createdTime": "2021-01-07T09:17:22.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "746bc147-d7a0-4046-a5ea-c3043b006bd6", + "createdTime": "2021-01-07T09:17:21.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33ed75c-d76d-4c99-93f1-f7e94e03c6cc", + "createdTime": "2021-01-07T09:12:15.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5dbe11ac-1bf8-40f9-b8df-f5b57864e9cd", + "createdTime": "2021-01-07T09:12:14.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cfadf8a7-bf8e-414f-9211-ef2c88745fa0", + "createdTime": "2021-01-07T09:12:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3faf39b7-c6dc-42d6-8264-592d45acab9a", + "createdTime": "2021-01-07T09:12:13.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83b94647-9148-4492-8a5d-556c505f9870", + "createdTime": "2021-01-07T09:02:17.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f4e792c6-bc77-4c9f-92db-9077aace6121", + "createdTime": "2021-01-07T09:02:17.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c3502e3-15a5-4ed2-8db8-13d627ecbae2", + "createdTime": "2021-01-07T09:02:16.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "391850fe-1642-440e-93d8-1ecc6faf3a4a", + "createdTime": "2021-01-07T09:02:15.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "975777f6-0665-4961-874b-a4662d4bb658", + "createdTime": "2021-01-07T08:58:36.172Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b709192-fb5a-47f5-93f3-82bbadf8b8d9", + "createdTime": "2021-01-07T08:58:35.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64377cf8-2dc1-4a2a-ba51-4b2c8e75559b", + "createdTime": "2021-01-07T08:58:34.404Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c7dc766-38c6-4f47-8f72-ab6b905eb109", + "createdTime": "2021-01-07T08:58:33.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4092e3a6-3a91-4e02-8294-43671ac04f8c", + "createdTime": "2021-01-07T08:48:40.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "87fd7dcb-ccd3-4fdd-b086-5d8b18e24f80", + "createdTime": "2021-01-07T08:48:39.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "710f1cc6-ed0f-46f5-8a8d-3fb2290779e6", + "createdTime": "2021-01-07T08:48:38.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "373d3fe6-f2d0-4dcf-8c8b-85cd2a71feff", + "createdTime": "2021-01-07T08:48:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8ab0ac8-40eb-494a-8b03-5e1cc66e9000", + "createdTime": "2021-01-07T08:34:26.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "82b00b92-bb64-4a07-895b-d615b3b4e01f", + "createdTime": "2021-01-07T08:38:21.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24fecac1-6c6a-4ff4-bbee-9f5fe5efa7eb", + "createdTime": "2021-01-07T08:27:13.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "086e37af-2f8f-44ef-a76b-01c3ecd72755", + "createdTime": "2021-01-07T08:38:20.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4b77e2b9-d109-4921-b4ed-99496c6741b5", + "createdTime": "2021-01-07T08:38:19.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "702e6948-2c78-49a4-a000-1f347e89c03c", + "createdTime": "2021-01-07T08:38:18.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93de05b1-a95d-44c9-af31-86dccdbaf8e2", + "createdTime": "2021-01-07T08:34:25.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b1c7a320-4487-400b-a18a-dd6b95548f5c", + "createdTime": "2021-01-07T08:34:24.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ef9cd63-ad30-4480-aa79-b1c22101c788", + "createdTime": "2021-01-07T08:34:23.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "13c54a4f-7059-49d4-b58a-7044e4e870ea", + "createdTime": "2021-01-07T08:27:13.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fc0cbe70-008c-4e82-848c-c31a67ff2053", + "createdTime": "2021-01-07T08:27:12.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "85b5f815-87f5-4412-bede-3335967cadfa", + "createdTime": "2021-01-07T08:27:12.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f655c99-5101-4cd1-a52d-e28865a03d5c", + "createdTime": "2021-01-07T08:23:42.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fbcf17de-927f-4439-b7e2-fa2de31d646b", + "createdTime": "2021-01-07T08:23:41.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5cc8067-fcda-44bb-ac75-0602a046d03e", + "createdTime": "2021-01-07T08:23:40.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5973202d-5fd8-4c28-8f00-f0c353a252cd", + "createdTime": "2021-01-07T08:23:39.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c306480c-3e2f-4f93-b474-b546643ce6d8", + "createdTime": "2021-01-06T20:11:31.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9cbd2e9c-6dd9-463a-92f4-4642c9d76720", + "createdTime": "2021-01-06T20:10:07.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "db9dec9c-43b4-4df1-8335-d7a2484c963c", + "createdTime": "2021-01-06T20:04:04.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "330e0973-1733-4f2f-aab3-9d8e628ced39", + "createdTime": "2021-01-06T20:06:04.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06b204be-8a1b-41f6-81c2-8ea65466f519", + "createdTime": "2021-01-06T20:04:52.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "306c872b-86af-477d-93d7-b5a574e715f4", + "createdTime": "2021-01-06T20:05:40.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b76f3df8-b3fe-4a4c-9d54-5a387f24b4e8", + "createdTime": "2021-01-06T20:11:31.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "41bea400-29ce-49e4-98bd-598c0b42feda", + "createdTime": "2021-01-06T20:11:30.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "679b4fe3-a5fa-48a1-84d5-380035d53dfd", + "createdTime": "2021-01-06T20:11:30.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d409f116-5019-4209-8d49-dbb53a5eb1b3", + "createdTime": "2021-01-06T20:10:08.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "36b3b079-6643-4d2a-b093-b9537e4c3075", + "createdTime": "2021-01-06T20:10:07.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ef19a07-7da3-4046-b39e-192fd1352e7e", + "createdTime": "2021-01-06T20:10:06.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbd1997b-0040-4b42-b603-d99419559ab8", + "createdTime": "2021-01-06T20:06:05.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "df627e4c-d183-429b-990b-576fa76f44be", + "createdTime": "2021-01-06T20:06:04.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4d84b45b-4c8c-4f5b-bbe8-9f47506734c2", + "createdTime": "2021-01-06T20:06:03.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc3f8d9-c8b7-4072-beee-07f0a2cc9e19", + "createdTime": "2021-01-06T20:05:41.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "eae8da1c-a9f7-411c-a286-3577ef09ad3f", + "createdTime": "2021-01-06T20:05:40.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c10a9c0c-f2fc-49f3-80ae-470bcd0c5a5f", + "createdTime": "2021-01-06T20:05:39.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e34ff20-aa1c-4db7-a39d-2e67b91177fa", + "createdTime": "2021-01-06T20:04:53.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5beefbc3-2e08-4d6a-b662-4042cf87cec2", + "createdTime": "2021-01-06T20:04:52.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60293fb8-f1af-4726-b5d5-f3e3bd2380b5", + "createdTime": "2021-01-06T20:04:51.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73b96542-6162-4b80-8ca5-8d00c273bd71", + "createdTime": "2021-01-06T20:04:05.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f68141b7-1303-4907-af78-cebed40ed5ad", + "createdTime": "2021-01-06T20:04:04.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2e37eb2d-fc0f-4257-ad1c-2b23f5c673de", + "createdTime": "2021-01-06T20:04:03.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd8f29d3-46c4-45b7-98e7-3ed35a3c84a1", + "createdTime": "2021-01-06T20:04:02.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a173a5ea-ff49-4ece-975d-a2d54eacf72c", + "createdTime": "2021-01-06T20:04:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6047b56-f182-4660-9177-beebb4039da0", + "createdTime": "2021-01-06T20:04:01.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "51097fe3-8fb4-42bc-847b-bf1b40b7402e", + "createdTime": "2021-01-06T20:04:00.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "403f1e86-ad93-472c-88ed-3dd5eab80a17", + "createdTime": "2021-01-06T09:12:47.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8061eeb2-e08d-4667-af76-9f7d0e7d22fd", + "createdTime": "2021-01-06T09:12:46.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a97e5e9-3457-44c7-8394-e56e960b8d13", + "createdTime": "2021-01-06T09:12:45.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d4610f0f-dcd3-48ca-a330-86df5960081e", + "createdTime": "2021-01-06T09:12:45.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61781ae4-57ef-424f-808e-051ba64c2f6c", + "createdTime": "2021-01-06T09:09:06.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f9c3196-9cc4-4060-8d25-def5953e89a9", + "createdTime": "2021-01-06T09:09:05.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09dc38d6-2b83-4b5e-9648-78d45fe0226d", + "createdTime": "2021-01-06T09:09:05.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3a904ff7-4b7f-4dab-8d2e-9ff52a501ff2", + "createdTime": "2021-01-06T09:09:04.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "01f14b17-a73f-4a60-8aa0-45836666334b", + "createdTime": "2021-01-06T09:01:57.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "15dc4aff-c7b4-4e46-9728-12a233523a2c", + "createdTime": "2021-01-06T09:01:56.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1965ecb-1021-4772-8d48-d3f30eed3194", + "createdTime": "2021-01-06T09:01:56.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c391b8e-6280-4527-9f49-5147ee595254", + "createdTime": "2021-01-06T09:01:55.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0588ce5a-42ca-41cc-99d3-72db10a5f281", + "createdTime": "2021-01-06T08:58:14.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eda40fcc-c557-49a5-883f-63b1340247a3", + "createdTime": "2021-01-06T08:58:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95fc0025-7b59-4d87-9ec9-983a0d4ec1d3", + "createdTime": "2021-01-06T08:58:13.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c226c1e-a929-4cb3-9bad-2ec33f237d94", + "createdTime": "2021-01-06T08:58:12.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "99612ded-53c6-4f4a-ab4d-91b9707643db", + "createdTime": "2021-01-06T08:49:11.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "16f05f71-8c93-4ac8-b5b2-07c496eb123b", + "createdTime": "2021-01-06T08:49:11.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9fb3f47-14fd-4b80-a41a-bd0fe9c8eeda", + "createdTime": "2021-01-06T08:49:10.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fee91e3a-e57c-473d-af57-4a61f47c6268", + "createdTime": "2021-01-06T08:49:09.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2f9f990-d516-4ca7-90cd-43dd061fd8cf", + "createdTime": "2021-01-06T08:35:31.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa94b870-2e1e-48b7-b153-e2f867a77ea1", + "createdTime": "2021-01-06T08:39:28.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92bf4cb1-4231-407d-b46a-85fa85b2c86c", + "createdTime": "2021-01-06T08:28:20.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "81911393-c70d-4657-8e56-9447791ca354", + "createdTime": "2021-01-06T08:39:27.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5092c6c-6500-423d-857f-b293032ca481", + "createdTime": "2021-01-06T08:39:26.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "99dba31c-4383-48e5-afbf-a0581d406c38", + "createdTime": "2021-01-06T08:39:25.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "68a5153d-d171-4023-a17a-150bbcd039ac", + "createdTime": "2021-01-06T08:35:30.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd262c7-8e03-43f9-a350-ef75a9e06b1c", + "createdTime": "2021-01-06T08:35:30.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5088b1a1-f880-4c32-8a3b-144c84f6b1e7", + "createdTime": "2021-01-06T08:35:29.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a9572a0-10c0-46de-9693-57fa316986f8", + "createdTime": "2021-01-06T08:28:19.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fd7217a7-558b-4c71-bacf-5e6d11597766", + "createdTime": "2021-01-06T08:28:19.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dca03f60-f9f2-4fac-88c3-8eeb97872a88", + "createdTime": "2021-01-06T08:28:18.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8320ec-4fda-42db-84c1-952f3455bff0", + "createdTime": "2021-01-06T08:23:01.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ba7e1d-1c5f-4f60-8621-dd765fa238f5", + "createdTime": "2021-01-06T08:23:01.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ca1b8e7d-e9a9-473d-8fc6-389425b241a8", + "createdTime": "2021-01-06T08:23:00.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7e5ec12c-abea-49a1-8358-e0139acf4595", + "createdTime": "2021-01-06T08:23:00.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d8c4e11-d796-4b8b-a429-9757dac9a42b", + "createdTime": "2021-01-05T20:05:48.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6901cca4-201b-480d-a927-e71ee2f68d0f", + "createdTime": "2021-01-05T20:06:39.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1ba1506c-1988-483d-a326-031ca2b7f2b4", + "createdTime": "2021-01-05T20:12:32.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5ddea8f-042b-4090-af63-8a334243ce60", + "createdTime": "2021-01-05T20:05:19.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "adbc06d9-d686-4040-b4f8-ff737ad09ef2", + "createdTime": "2021-01-05T20:07:09.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4a3d3217-fbc7-45b2-8fec-f2dacbc96c88", + "createdTime": "2021-01-05T20:12:59.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "066cea83-9d22-4442-ac69-88209f5f6eca", + "createdTime": "2021-01-05T20:12:59.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "143bb02b-8959-4e99-b0a3-d6717d29d302", + "createdTime": "2021-01-05T20:12:58.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4ba2718c-dec0-43c0-8f3d-a8e51c1fe32b", + "createdTime": "2021-01-05T20:12:58.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86a0943c-4879-4e74-b95f-b5dcd4d9657d", + "createdTime": "2021-01-05T20:12:33.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c2c0a85c-0cf9-4f55-a52d-9e382dc9ea61", + "createdTime": "2021-01-05T20:12:32.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f6ad566d-ba90-4ea5-94ac-213b108d59d6", + "createdTime": "2021-01-05T20:12:31.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "117b2caa-76c5-4cfe-b326-9cf708d8599c", + "createdTime": "2021-01-05T20:07:10.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6fcefd5b-d519-46be-9eac-569b10f1daa8", + "createdTime": "2021-01-05T20:07:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "784fdb55-97d0-402c-a4e0-6d0793eea60c", + "createdTime": "2021-01-05T20:07:08.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3bc7750-7124-45c1-b5a9-d2f382087435", + "createdTime": "2021-01-05T20:06:40.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fee82735-493a-4210-ac33-dea0acfab036", + "createdTime": "2021-01-05T20:06:38.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adaa52d4-17b2-4067-b478-2018fd685f63", + "createdTime": "2021-01-05T20:06:37.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d02b463-6de2-48ae-83ab-bcfd6afc1924", + "createdTime": "2021-01-05T20:05:49.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "774e5149-ea51-4d02-b111-20bafb0002c4", + "createdTime": "2021-01-05T20:05:48.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70c87b28-71d9-4c20-929f-db07296a77bc", + "createdTime": "2021-01-05T20:05:47.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de292309-30e6-4b9f-857c-7fe2eaee3549", + "createdTime": "2021-01-05T20:05:19.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0a2a4c69-c50c-4b28-886f-db71781a5e8e", + "createdTime": "2021-01-05T20:05:19.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b2bd50a7-cccf-4035-a7ad-154dd06693f0", + "createdTime": "2021-01-05T20:05:19.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68c956d8-8cf2-4e6a-b020-5ac8222ed5fd", + "createdTime": "2021-01-05T20:05:18.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "04ca474e-cf0a-4d3d-a71d-d790360d6336", + "createdTime": "2021-01-05T20:05:18.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fa8c8fcf-c393-4e78-84fc-14c7b155c196", + "createdTime": "2021-01-05T20:05:18.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae90d862-cf01-4ca9-9686-48891f6e17e3", + "createdTime": "2021-01-05T20:05:18.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b88b9e65-7d7f-4caf-ba78-888f58ad12da", + "createdTime": "2021-01-05T09:15:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25949c34-f8a6-4d76-b415-eefaae7d74bc", + "createdTime": "2021-01-05T09:15:48.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9968bc0-bcc9-4746-a9f6-c9bc9f5f1921", + "createdTime": "2021-01-05T09:15:48.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "60bed383-d8b9-4af0-b41d-137631787a18", + "createdTime": "2021-01-05T09:15:47.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a12fb560-04d5-461a-bc57-2c16391f8a78", + "createdTime": "2021-01-05T09:12:11.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17446967-da54-47a7-ae09-a461a3703559", + "createdTime": "2021-01-05T09:12:10.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b0bf7cf-f840-4fbe-bc54-c616e6f3e98a", + "createdTime": "2021-01-05T09:12:09.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6bbe1c-9a79-478d-aaf7-9405add570f2", + "createdTime": "2021-01-05T09:12:09.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cbba494-7d47-46f1-9ce7-3de9d1209995", + "createdTime": "2021-01-05T09:00:18.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d597e9f4-6a4e-4a0f-a25f-cb4d179371ce", + "createdTime": "2021-01-05T09:00:18.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b42c5609-051b-4a91-b89a-69942df91b7b", + "createdTime": "2021-01-05T09:00:17.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ad099b7-6af9-4d4b-8b5c-c9da0c6c83dd", + "createdTime": "2021-01-05T09:00:17.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a13fa93f-83d9-48aa-9c0f-cf33e9c050a0", + "createdTime": "2021-01-05T08:56:48.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88532c49-1246-4bee-aa38-a3f0597d760f", + "createdTime": "2021-01-05T08:56:48.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a19e986a-6237-41b1-af77-cb6832eb98bb", + "createdTime": "2021-01-05T08:56:47.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "581eb52c-23c1-4652-b213-9ed53d38368a", + "createdTime": "2021-01-05T08:56:46.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a1bca85-da6c-4ebf-b95d-596accf0b80f", + "createdTime": "2021-01-05T08:47:15.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c07695e-6cf3-418c-972e-adb5058590c0", + "createdTime": "2021-01-05T08:47:14.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea238045-781c-4224-a4e2-a40647bf5ccb", + "createdTime": "2021-01-05T08:47:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "502f2afd-4c49-43d7-bdc7-9483684f5d97", + "createdTime": "2021-01-05T08:47:13.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88525102-d45c-4cff-89bd-082d4de2001d", + "createdTime": "2021-01-05T08:31:34.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4c1811b7-0bf7-4fee-8143-0a1811caa46d", + "createdTime": "2021-01-05T08:35:17.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ca6bf768-576b-4e4f-97a0-bbc8b1fe7956", + "createdTime": "2021-01-05T08:24:09.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8caa343b-843d-425d-bfda-1a6cef555b48", + "createdTime": "2021-01-05T08:35:17.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff207966-4313-4e61-9d42-4459aeb5489c", + "createdTime": "2021-01-05T08:35:16.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4898d21e-a84a-451c-87d0-865ea5097413", + "createdTime": "2021-01-05T08:35:15.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2b54bdb-5dfa-4ef9-9caf-73eed2d4c823", + "createdTime": "2021-01-05T08:31:34.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1e49d61-8270-408d-9e0f-11a849da1a71", + "createdTime": "2021-01-05T08:31:33.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a0c582a6-f39c-409f-964c-79400b0ad771", + "createdTime": "2021-01-05T08:31:32.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47471a55-e9f3-43f0-94bf-b4b10d65f118", + "createdTime": "2021-01-05T08:24:08.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe7f029a-646d-4927-ad8a-84ab36eaf87c", + "createdTime": "2021-01-05T08:24:08.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06b9448c-ec6b-4c34-94f3-4dc6fb9ff864", + "createdTime": "2021-01-05T08:24:07.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18af88bd-3812-4380-8997-890ff1f73963", + "createdTime": "2021-01-05T08:20:31.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "29ceb2ed-c53b-4099-ac33-5990889f26b0", + "createdTime": "2021-01-05T08:20:30.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e0bd0eb-5c0a-4531-881e-969918812006", + "createdTime": "2021-01-05T08:20:29.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3efa88b3-3bc1-49bb-87f8-3ca3232393cd", + "createdTime": "2021-01-05T08:20:28.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fcfcb359-8f07-42aa-9f8a-96ef50fc66bb", + "createdTime": "2021-01-04T20:10:12.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e9244948-7645-4967-a292-3ef19041542a", + "createdTime": "2021-01-04T20:09:02.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "76fbc739-5978-4afe-acf6-0bb14822b458", + "createdTime": "2021-01-04T20:08:47.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b84163ab-cdd5-473d-81d6-6e861ca68e98", + "createdTime": "2021-01-04T20:08:37.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "868e70e1-a242-4e1e-b544-4c045f7598c5", + "createdTime": "2021-01-04T20:08:24.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "60d28e8f-bcdd-4d6a-8161-0de1b58c7314", + "createdTime": "2021-01-04T20:13:20.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1bcfff35-2d4f-4770-a11c-cc5e4374a62c", + "createdTime": "2021-01-04T20:13:21.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be905caf-26ab-4357-b235-98c09de80e34", + "createdTime": "2021-01-04T20:13:20.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f05bbb7c-9883-4d4d-9b2e-e650c1e5553e", + "createdTime": "2021-01-04T20:13:19.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "19a76c0b-b45a-40f0-a199-a96228a905fe", + "createdTime": "2021-01-04T20:10:13.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57d551c5-794c-4eca-a442-ae3614e58150", + "createdTime": "2021-01-04T20:10:11.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4a95c802-1443-416e-982f-08336dd8bfcb", + "createdTime": "2021-01-04T20:10:11.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "240a23da-3e7d-4690-af63-c1196003aaf6", + "createdTime": "2021-01-04T20:09:03.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6ce3b63c-b165-47f3-9014-fdb27f600bc9", + "createdTime": "2021-01-04T20:09:01.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c38bb76b-4ca6-4090-8d21-a93104852db3", + "createdTime": "2021-01-04T20:09:01.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5eacd696-4f34-46ae-a3a0-11d1a5f783cc", + "createdTime": "2021-01-04T20:08:48.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "75b0d4c1-8724-4f02-a95e-c69b57f962b3", + "createdTime": "2021-01-04T20:08:46.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e9007cd-92c1-415f-b33a-b7147419a1e4", + "createdTime": "2021-01-04T20:08:45.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a04655c-6d0b-498d-b3d1-137a94a68759", + "createdTime": "2021-01-04T20:08:38.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8488dbd0-900d-4990-be67-fd7f891cfaa5", + "createdTime": "2021-01-04T20:08:36.146Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2ae21ef0-4a4e-4c26-8653-59dccf5d9921", + "createdTime": "2021-01-04T20:08:34.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39ed981f-f021-4240-8a07-bb1ebb5fd9c4", + "createdTime": "2021-01-04T20:08:25.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "68803e0c-b85b-45b9-8814-073ab38e0ade", + "createdTime": "2021-01-04T20:08:23.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0e80580f-1360-4cbc-a0d4-b33b59d009e6", + "createdTime": "2021-01-04T20:08:22.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f20f944c-4887-485d-9e33-f299672b6e38", + "createdTime": "2021-01-04T20:08:07.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6d87c7ad-2867-44eb-837b-6594627e2d7f", + "createdTime": "2021-01-04T20:08:06.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8178a627-f47f-41c5-af4c-f3556c29df2d", + "createdTime": "2021-01-04T20:08:06.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1222dc5e-854a-4546-a20b-647f72b6df19", + "createdTime": "2021-01-04T20:08:05.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22ce40a8-7700-4ce4-aa68-a17bddfcddc6", + "createdTime": "2021-01-04T09:13:08.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f9f3bc6-c5b5-4974-9547-f8e1e0681639", + "createdTime": "2021-01-04T09:13:08.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1658f216-21a9-47a5-9ba9-be5f4a7e9864", + "createdTime": "2021-01-04T09:13:07.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc199980-922b-4675-8a95-2eebe390cabd", + "createdTime": "2021-01-04T09:13:07.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "84b7e2a6-a964-4c80-949d-f0b876bbd1d3", + "createdTime": "2021-01-04T09:09:29.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ec9e34e3-b9e6-48fd-abbd-661ad22936c6", + "createdTime": "2021-01-04T09:09:28.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99034b33-7266-4a3b-87bf-8c49b4778f7b", + "createdTime": "2021-01-04T09:09:27.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc42e2a9-530d-4c0d-a38b-8e712cf9f9c7", + "createdTime": "2021-01-04T09:09:26.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1933c37-8825-4d5f-a03e-4661d6747e47", + "createdTime": "2021-01-04T09:00:25.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "389c05d2-e7cc-4afc-9315-b9262388ac4e", + "createdTime": "2021-01-04T09:00:25.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b8a8bff6-42ee-4238-9226-1a24a10c44d1", + "createdTime": "2021-01-04T09:00:24.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63320392-ea24-42ab-b306-5f11006e1b46", + "createdTime": "2021-01-04T09:00:23.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdda947f-9075-47b9-8f0a-43d64ac51f15", + "createdTime": "2021-01-04T08:56:47.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "94a52817-618d-4715-a440-c90e56005ebf", + "createdTime": "2021-01-04T08:56:47.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c8d041-f2ec-4dc1-be3b-99cd4f9bc6bd", + "createdTime": "2021-01-04T08:56:46.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "155417f3-adc5-400f-a9c3-8bc323aec64d", + "createdTime": "2021-01-04T08:56:45.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d51d026e-02c8-4cb6-8075-00a52d06929f", + "createdTime": "2021-01-04T08:48:02.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "feda9901-4988-4fbd-b4dd-c73126991d02", + "createdTime": "2021-01-04T08:48:01.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "41ce8ea5-6fcd-4805-bd36-9f6f8d19a9f1", + "createdTime": "2021-01-04T08:48:01.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46158b6e-7cca-4564-bd06-fd3c2fecc8a6", + "createdTime": "2021-01-04T08:48:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6eeee9f-350a-46b7-af1a-f45a72e17376", + "createdTime": "2021-01-04T08:31:51.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e3acb57-e717-4b0d-adf3-a84debc0bd4e", + "createdTime": "2021-01-04T08:24:44.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e16109ad-becd-477e-a2de-bb6f55ca4c51", + "createdTime": "2021-01-04T08:35:30.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7cb678e5-aa76-4392-91ad-1f8afae46610", + "createdTime": "2021-01-04T08:35:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "932e7047-aa00-4821-a823-36248d7876de", + "createdTime": "2021-01-04T08:35:28.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd050682-d6f3-496f-a0d4-72748c32c165", + "createdTime": "2021-01-04T08:35:27.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d5affab-4f1e-44a2-b74e-7098add0106d", + "createdTime": "2021-01-04T08:31:50.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "53600b80-6363-4779-98b1-55d223f7e4c4", + "createdTime": "2021-01-04T08:31:50.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "90d7d2a8-4228-4800-ade6-2f79275ff7f8", + "createdTime": "2021-01-04T08:31:49.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b7d834c-ff27-4e4b-abf6-571cc59e7931", + "createdTime": "2021-01-04T08:24:43.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3f47ea7a-7dfd-4aa9-8c8d-f6d76ed68a55", + "createdTime": "2021-01-04T08:24:42.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63881cc6-b107-4fee-a73d-67a4ea777a27", + "createdTime": "2021-01-04T08:24:41.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05c3da49-ede2-44a2-81df-daacdfda9814", + "createdTime": "2021-01-04T08:20:58.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03e31d03-cddb-4ef2-abe1-43718a708bd7", + "createdTime": "2021-01-04T08:20:57.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51bfbaf0-20b4-4243-bed4-b7dd2b47d958", + "createdTime": "2021-01-04T08:20:57.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e3442c6-656a-484d-a0d3-2156cf3d9c52", + "createdTime": "2021-01-04T08:20:56.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "27a4dee6-070b-4af9-9c9f-caef9194d7c2", + "createdTime": "2021-01-01T09:08:19.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c419bfc-6287-4b26-bc83-9bf4f53f0123", + "createdTime": "2021-01-01T09:08:18.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dcbc058-53a8-4dd1-bfde-9f63247fe5c4", + "createdTime": "2021-01-01T09:08:17.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7fa95f02-9561-4c31-adc6-58531cfebd6e", + "createdTime": "2021-01-01T09:08:17.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdb75060-cffa-4288-b829-1baaa7591b50", + "createdTime": "2021-01-01T09:04:59.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "14ed2d4c-9b17-435b-be34-c021fab0a78d", + "createdTime": "2021-01-01T09:04:58.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d06be283-86f3-457d-a8a8-39aa7c79f38d", + "createdTime": "2021-01-01T09:04:58.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f78f6c85-91e1-4f9f-883a-c754fa2dceeb", + "createdTime": "2021-01-01T09:04:57.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45166c9f-66b6-4e11-96d2-0ca64f7b9a90", + "createdTime": "2021-01-01T08:58:18.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ca074c-bc6b-4d03-8c57-bb847f5897b9", + "createdTime": "2021-01-01T08:58:17.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eea77a54-32f7-45a0-aaf3-3d5fa61bbe1f", + "createdTime": "2021-01-01T08:58:17.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce6b2a85-81d1-4593-8e24-a3a10c274014", + "createdTime": "2021-01-01T08:58:16.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9a6f78e-ede2-4f9f-8fe5-1de1b8ad0b8b", + "createdTime": "2021-01-01T08:54:34.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1ef59c34-e24b-4fef-beef-49a9cc3efe30", + "createdTime": "2021-01-01T08:54:33.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "01d28f54-c798-4fdb-9327-f3e6edcf1b1e", + "createdTime": "2021-01-01T08:54:32.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "56bb5c41-150f-42dd-85fc-0ca189c6dda7", + "createdTime": "2021-01-01T08:54:32.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7d4a1cc-fbf4-4e4b-81aa-2fcb41924c8c", + "createdTime": "2021-01-01T08:45:36.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8034fff3-e20f-4e55-9bb4-c57e3b43a067", + "createdTime": "2021-01-01T08:45:35.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2c067c15-2a63-4405-a48d-bbb8c9d910ed", + "createdTime": "2021-01-01T08:45:35.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e2cbf03-9d7c-4450-a5a4-39c691bd3074", + "createdTime": "2021-01-01T08:45:34.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccef1e17-b02c-45eb-ad4c-c8a27c65afca", + "createdTime": "2021-01-01T08:23:57.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92222554-284f-4aa6-8b47-1a4fd2a98bc0", + "createdTime": "2021-01-01T08:35:31.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "168ca31f-ce5b-41ac-b251-c358c10e00aa", + "createdTime": "2021-01-01T08:32:15.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d72479e4-03d3-4961-9074-2acbe41bad90", + "createdTime": "2021-01-01T08:35:31.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a5b1b7d-93a1-4fcd-840e-b99a295950be", + "createdTime": "2021-01-01T08:35:30.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f6a67f42-20f1-4381-8840-adef96d4d0ca", + "createdTime": "2021-01-01T08:35:29.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4907a9d7-0e34-4657-86bc-d1b9b7458d9a", + "createdTime": "2021-01-01T08:32:14.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdfda8f-0f0d-4c9c-b36f-64b158b74f7a", + "createdTime": "2021-01-01T08:32:13.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "072c2766-da2c-44a4-a603-c83fbdf532b5", + "createdTime": "2021-01-01T08:32:13.188Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e7fbd19-88b9-46ed-8e70-649155e7af2d", + "createdTime": "2021-01-01T08:23:57.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b01c6998-e989-4930-a12e-d186a1569704", + "createdTime": "2021-01-01T08:23:56.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d300a4d1-9552-40cd-87f0-b50f7ccfb60e", + "createdTime": "2021-01-01T08:23:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c26f93-56ae-4072-a84a-84b4aab2da0a", + "createdTime": "2021-01-01T08:20:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f2c9fc2-e426-488e-b13f-47aa6ebaa47f", + "createdTime": "2021-01-01T08:20:27.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39f33192-b7bd-49b5-a8d1-f2bd2e30b004", + "createdTime": "2021-01-01T08:20:26.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06074f4a-7a39-4628-ae55-8234f1e0e8e6", + "createdTime": "2021-01-01T08:20:25.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f88e27e-428f-41f9-a66a-f90c5e6783a8", + "createdTime": "2021-01-01T01:12:31.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a119087-2769-4c50-b435-8c41de441b67", + "createdTime": "2021-01-01T01:12:30.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "42e28b3b-ba6c-4982-84c7-283759475bc4", + "createdTime": "2021-01-01T01:12:29.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c446c0af-eda5-44c7-9ece-1eb46b688983", + "createdTime": "2021-01-01T01:12:28.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "563902a7-9dd6-430d-bec9-aed4775f5c1d", + "createdTime": "2021-01-01T01:09:03.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abe553d6-0459-4a8a-a2f3-e7170f429fb7", + "createdTime": "2021-01-01T01:09:03.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09400a89-486b-45ad-85dd-09e3dcafc870", + "createdTime": "2021-01-01T01:09:02.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ac6e1fe0-a61b-4fc8-b464-612dfd478ce4", + "createdTime": "2021-01-01T01:09:01.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b80c88d4-e84a-430b-a63d-00fa3e99a6ea", + "createdTime": "2020-12-31T09:10:53.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f403490a-dc0e-422e-b67e-04d77865ba7d", + "createdTime": "2020-12-31T09:10:53.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a803b079-e58a-4eaa-801c-3cd8d06dd06d", + "createdTime": "2020-12-31T09:10:52.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "95d916a6-88dd-43a0-bbe8-3e73329f933d", + "createdTime": "2020-12-31T09:10:52.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a1c0c80-8334-408b-9df2-943e94639ac1", + "createdTime": "2020-12-31T09:07:32.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27ba7945-a2b1-4575-a000-1870240c2039", + "createdTime": "2020-12-31T09:07:31.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "024388a8-e204-4fdf-b750-199a7ae18ff7", + "createdTime": "2020-12-31T09:07:31.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47289e8b-1af1-486b-b8fb-794a2d287064", + "createdTime": "2020-12-31T09:07:30.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c3ae44ec-c9c9-4136-be64-009ac889beff", + "createdTime": "2020-12-31T09:00:41.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ef4ae2cc-d5ed-4078-9444-9ffcf94f2122", + "createdTime": "2020-12-31T09:00:40.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "daad3f1a-df51-47a9-8998-3c054105a70e", + "createdTime": "2020-12-31T09:00:39.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c540a912-6d51-4271-b432-b052b24408c9", + "createdTime": "2020-12-31T09:00:38.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4312387a-3e20-4212-bd35-97aa26fdaacf", + "createdTime": "2020-12-31T08:57:04.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88065dff-4929-4419-bb62-927a0e52cced", + "createdTime": "2020-12-31T08:57:03.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed40905-54de-40a4-9839-4d548f994f3d", + "createdTime": "2020-12-31T08:57:03.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "034d466d-6d8d-41e6-92ad-0e30c3cf3ac8", + "createdTime": "2020-12-31T08:57:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16effbbf-9129-4ba1-aa90-efa377ab364c", + "createdTime": "2020-12-31T08:48:07.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f0f9b0b5-2e4a-4699-b744-5ab11562cdc5", + "createdTime": "2020-12-31T08:48:07.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75c65118-43f8-4805-b3a4-7daa2768617d", + "createdTime": "2020-12-31T08:48:06.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb8ac1f7-cf61-4ed4-842f-a1c2351c59d7", + "createdTime": "2020-12-31T08:48:05.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a52ec63-7894-47a3-8e73-dd68d028e06c", + "createdTime": "2020-12-31T08:23:58.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69b96ad4-f740-4171-9ef4-e31e6d00c6e2", + "createdTime": "2020-12-31T08:30:54.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e6bb3e32-2296-4249-8365-42697df77d71", + "createdTime": "2020-12-31T08:34:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3644b01c-d55e-4e2a-8385-0617411154c6", + "createdTime": "2020-12-31T08:34:19.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0c4bfc72-c2c5-4895-a5dc-75ebe47d3a85", + "createdTime": "2020-12-31T08:34:18.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1543d8b2-255d-40da-bac6-70e60e29860d", + "createdTime": "2020-12-31T08:34:17.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25df8f27-15af-4adf-97a4-fab634948334", + "createdTime": "2020-12-31T08:30:53.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e6c12fc-87f0-4844-94dc-2dcd0a682682", + "createdTime": "2020-12-31T08:30:52.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b4b9ab2a-2da2-4569-8a77-b26030774b0c", + "createdTime": "2020-12-31T08:30:52.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd1241fd-d0c0-4201-a439-3cf5c2b3382d", + "createdTime": "2020-12-31T08:23:58.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "07abe614-cdb8-4e3f-96cd-5ae26ef8edba", + "createdTime": "2020-12-31T08:23:57.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c9490f2-1984-4f88-86c5-1195fd14e1c0", + "createdTime": "2020-12-31T08:23:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b2bcddc-ca73-423d-afd4-25a904777b48", + "createdTime": "2020-12-31T08:20:21.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "898ca250-4e33-4c26-ac10-2ebc772f96e8", + "createdTime": "2020-12-31T08:20:20.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c8b86015-c41a-47c0-89ed-9ad6dedbb857", + "createdTime": "2020-12-31T08:20:19.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f8b42e4-9352-4437-8179-29ff8424c460", + "createdTime": "2020-12-31T08:20:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b07e861-bb7c-4694-9bd1-b810792ea492", + "createdTime": "2020-12-30T09:10:00.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63b516bc-21b6-4a3a-af74-71f9f1f1c341", + "createdTime": "2020-12-30T09:09:59.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf21194-8f56-4d2d-a2ac-9ec8f35627b1", + "createdTime": "2020-12-30T09:09:58.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9e7c6f1-4e43-4f94-988a-4c3c07c1d94b", + "createdTime": "2020-12-30T09:09:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05668173-fe69-4305-b3e3-3b5d554af216", + "createdTime": "2020-12-30T09:06:37.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9a3816e-7863-44ce-884d-3e299f8d728c", + "createdTime": "2020-12-30T09:06:36.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5492c9c-e699-43c2-b37d-bf69ee580b14", + "createdTime": "2020-12-30T09:06:35.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d118e464-2e74-4d1c-9513-77905a23d4f0", + "createdTime": "2020-12-30T09:06:34.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ec12b0df-7b27-4a93-97ba-124dc1bdea21", + "createdTime": "2020-12-30T08:59:19.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ea7310eb-6db3-4d75-9dfa-483458091937", + "createdTime": "2020-12-30T08:59:18.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c22aef0c-5786-4e27-a526-827c1a01d28f", + "createdTime": "2020-12-30T08:59:18.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49277e44-751f-46a0-bc8b-3aa9a07a1c88", + "createdTime": "2020-12-30T08:59:17.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fac045f-a105-4fd6-87d1-4278faca64a8", + "createdTime": "2020-12-30T08:54:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ba6930-4f01-47e6-862f-0ee39644b7fe", + "createdTime": "2020-12-30T08:54:44.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6151cb8-7345-4e84-adfb-4fb11d519523", + "createdTime": "2020-12-30T08:54:44.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc37ee8d-8553-464e-bf6d-85509174b57f", + "createdTime": "2020-12-30T08:54:43.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fa3668f-f76a-4641-8c34-365a7da2318b", + "createdTime": "2020-12-30T08:45:17.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d25de72-0fbd-449e-92f9-fc068c9bb217", + "createdTime": "2020-12-30T08:45:16.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f390acec-1b19-4add-acc8-f2c1e524bdf5", + "createdTime": "2020-12-30T08:45:16.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d2442ca5-61b6-47a6-a5af-822a83fe302a", + "createdTime": "2020-12-30T08:45:15.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "654ea60a-1a4f-4e5a-9734-1c036f9ac593", + "createdTime": "2020-12-30T08:24:00.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f77d3a14-4ef3-4f08-9783-df352dfafed5", + "createdTime": "2020-12-30T08:30:37.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e9af07b6-4d21-4b0c-a00c-12c6a815e39c", + "createdTime": "2020-12-30T08:34:05.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "85a62d90-ea69-4ce6-9c47-e5d572546bd8", + "createdTime": "2020-12-30T08:34:04.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc20f9c9-71fe-4d40-8dbd-c40c23028468", + "createdTime": "2020-12-30T08:34:04.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "39eecc3d-bd42-428c-a5cf-35371f93ae3d", + "createdTime": "2020-12-30T08:34:03.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae7d2a8e-b177-402a-8f05-d8b0d8483763", + "createdTime": "2020-12-30T08:30:37.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f4abe8bd-1872-4546-bf31-ff37a74fd2e6", + "createdTime": "2020-12-30T08:30:36.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c32f021-d70f-4b25-b46d-52579af14980", + "createdTime": "2020-12-30T08:30:35.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "013d5e41-c255-4d2e-88af-e134d06ea130", + "createdTime": "2020-12-30T08:24:00.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fb037dd6-d64a-4115-8ea2-1cf946a3c17b", + "createdTime": "2020-12-30T08:23:59.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6017f41e-9064-4b1b-bd0e-ea6818efeb99", + "createdTime": "2020-12-30T08:23:59.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17203519-2edb-42cd-a363-d0a8f9251158", + "createdTime": "2020-12-30T08:20:31.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b02f56da-1920-4caa-af52-97dd2c105554", + "createdTime": "2020-12-30T08:20:30.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1fba0b3b-b990-4b38-8d5b-43d5f705831a", + "createdTime": "2020-12-30T08:20:30.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a91c53f1-57d6-4ea5-bb26-dd75444cb967", + "createdTime": "2020-12-30T08:20:29.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9149e0b0-de41-4ab5-b854-11abfafd8881", + "createdTime": "2020-12-29T20:06:25.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c3b4bef9-16a8-48ef-9d83-7ff9ac6c5229", + "createdTime": "2020-12-29T20:11:14.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "15782071-a511-49b9-b5f5-1f5c2a17c90e", + "createdTime": "2020-12-29T20:08:11.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9c0ed278-d6c7-4b75-b7e3-d17ba3f4bfda", + "createdTime": "2020-12-29T20:04:45.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f9c85808-b055-47ba-9b76-b50353e7bd07", + "createdTime": "2020-12-29T20:05:42.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "654c7f5f-1131-4c9c-b0e6-e00e533649d0", + "createdTime": "2020-12-29T20:05:32.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d61f42fe-5a0d-4c3c-a44f-53fa47b7f35f", + "createdTime": "2020-12-29T20:11:15.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b42a5cb-7b45-403d-b4bb-91c9ae97b1a2", + "createdTime": "2020-12-29T20:11:14.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e9e241e8-c6aa-4d56-8871-629fd0a58ddd", + "createdTime": "2020-12-29T20:11:13.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2981f08-bff9-4ea5-8ae5-226b670499ee", + "createdTime": "2020-12-29T20:08:12.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5bd10f34-8c39-458e-b055-cda02e1701ca", + "createdTime": "2020-12-29T20:08:10.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fe02b8c2-6a44-47e2-a363-38de53cd24a1", + "createdTime": "2020-12-29T20:08:10.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4f4fa7-58d8-407b-94ff-dc59151e33bc", + "createdTime": "2020-12-29T20:06:26.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "28d369fb-a76a-47c8-a5dc-8eee48a47708", + "createdTime": "2020-12-29T20:06:24.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "baf125ec-97a2-4359-979c-1e4f9bdc29fa", + "createdTime": "2020-12-29T20:06:23.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7396e660-5cdd-467d-86f2-3cdfb4783abe", + "createdTime": "2020-12-29T20:05:43.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b815b5f0-715f-4739-9543-a3dd6b6239e6", + "createdTime": "2020-12-29T20:05:42.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0aa04859-fd99-47f7-995d-9b55989588c0", + "createdTime": "2020-12-29T20:05:41.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d199f29-c49c-4d0c-838e-7d3e368533f7", + "createdTime": "2020-12-29T20:05:33.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1650f2b1-4f50-4948-b667-a314a972543d", + "createdTime": "2020-12-29T20:05:31.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "26a9c1a1-c00a-48bf-90f8-478267283e3f", + "createdTime": "2020-12-29T20:05:30.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f487279-b426-4c8d-a9b8-ba708460c2e1", + "createdTime": "2020-12-29T20:04:46.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d6e0f886-e6d6-41be-b6d0-9fb1c915c5f1", + "createdTime": "2020-12-29T20:04:44.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4aea61d5-4159-461e-bcd0-da10b3764fe1", + "createdTime": "2020-12-29T20:04:44.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66d14879-fc9e-4770-a981-d3cd44b74c37", + "createdTime": "2020-12-29T20:04:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cf8a2cce-3f76-4b71-8d0e-1cf86425da00", + "createdTime": "2020-12-29T20:04:38.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "17153da0-a236-4f4b-b69c-ebde67ed51b3", + "createdTime": "2020-12-29T20:04:37.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b48be36b-6122-4798-ab1c-9934a4267126", + "createdTime": "2020-12-29T20:04:37.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "023a2ad4-f219-41b1-8cde-ff8d2f3c170b", + "createdTime": "2020-12-28T20:06:21.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7d43e75d-4b60-4134-942e-0cf15a945d6c", + "createdTime": "2020-12-28T20:11:57.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c16cd0c-5cc5-4315-8d7e-3e5e3af9fd9b", + "createdTime": "2020-12-28T20:11:56.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53145bbf-0a31-49f7-aae1-d9a3a8def343", + "createdTime": "2020-12-28T20:04:48.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ecb24d7d-ae9b-4166-8666-57890bfa88e0", + "createdTime": "2020-12-28T20:11:55.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "64043313-c120-4f28-9624-610d6be73193", + "createdTime": "2020-12-28T20:11:55.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d45121a0-4ec2-41db-907e-0dce1b5dad29", + "createdTime": "2020-12-28T20:04:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6b24502-00aa-40dc-98df-2504525c8170", + "createdTime": "2020-12-28T20:04:44.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f77c2e65-728d-4080-b923-29646fe22b27", + "createdTime": "2020-12-28T20:08:23.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "027ca7c1-7083-435d-acd4-0f276321cd42", + "createdTime": "2020-12-28T20:08:24.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dc079424-26c0-423e-9a1b-edb3652c7943", + "createdTime": "2020-12-28T20:08:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0af9c65f-d5e9-4678-a6c5-be7687db1b09", + "createdTime": "2020-12-28T20:08:22.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d118ce5-0c62-41f5-9861-472d529c7ebc", + "createdTime": "2020-12-28T20:06:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e5f6691-8e09-46a5-bf78-7d0ec26a9d12", + "createdTime": "2020-12-28T20:06:21.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1123ef88-5402-4a80-ab92-6a58678524dc", + "createdTime": "2020-12-28T20:06:20.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a23602a-27ba-4be7-9c4a-423081f7f814", + "createdTime": "2020-12-28T20:04:48.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bfeed532-ff1f-4356-adb7-f9bad927a2ba", + "createdTime": "2020-12-28T20:04:47.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3a2b719f-1e17-4476-9590-64558807ccc6", + "createdTime": "2020-12-28T20:04:47.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0b83a0bd-6975-421f-986d-6c8874f47f7a", + "createdTime": "2020-12-28T20:04:46.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "079f9d92-3953-4a40-8083-8e3939aa5dd5", + "createdTime": "2020-12-28T20:04:46.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eec9f09c-22ce-4dda-88c7-d191f2d42ed6", + "createdTime": "2020-12-28T20:04:45.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f89e2f3-daca-4c04-8921-2ff521784c95", + "createdTime": "2020-12-28T20:04:45.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9310176b-b4ca-4216-ae2b-585c7a84178c", + "createdTime": "2020-12-28T20:04:44.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "435975f3-ad17-4050-ad68-98832a4fdeeb", + "createdTime": "2020-12-28T20:04:43.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b9d07318-e3b4-4975-a3af-711df7e55eeb", + "createdTime": "2020-12-28T20:04:43.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4695ade2-a2e7-4f59-8abf-81c055370dc8", + "createdTime": "2020-12-28T20:04:43.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0c1c8d1a-fe1a-42f1-ab87-6e2e250dd11c", + "createdTime": "2020-12-28T20:04:43.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61c32bbe-393a-4891-9211-b1e35ecf2ad1", + "createdTime": "2020-12-28T20:04:42.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c39a0a39-ea33-4189-84ed-2beedf66ee0d", + "createdTime": "2020-12-26T19:41:44.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "946f4c6d-dce4-4e23-94b2-590632d1fd05", + "createdTime": "2020-12-26T19:41:43.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6974f23d-4a62-4f8e-983d-8b5fedee1e6d", + "createdTime": "2020-12-26T19:41:43.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3662ca6d-6135-4aff-87fc-281a9586ec63", + "createdTime": "2020-12-26T19:41:42.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c11532d9-6de0-40e7-82cd-12f8589130b3", + "createdTime": "2020-12-26T19:40:53.147Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5139a051-9cff-43ff-a528-16719c838fd5", + "createdTime": "2020-12-26T19:40:51.994Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f8e0adf5-00fb-47be-978f-da5119f94204", + "createdTime": "2020-12-26T19:40:51.024Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "baa7b58a-9a2e-4d4a-8e38-3c18fac7cbbc", + "createdTime": "2020-12-26T19:40:50.129Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "549bf864-2a14-4707-a7b5-0c614cba022b", + "createdTime": "2020-12-26T19:34:42.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd5f0a43-9408-4892-bcc5-02f4cd8a7858", + "createdTime": "2020-12-26T19:34:42.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43f562ae-2085-4395-9944-cb9b7bc2a7c7", + "createdTime": "2020-12-26T19:34:41.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f7ac75b-f6d0-4131-8aa6-ecb927c8106a", + "createdTime": "2020-12-26T19:34:41.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7b385d2-a0d6-4628-9845-1ec2224b459c", + "createdTime": "2020-12-26T19:33:35.974Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db47d04d-4408-4db1-9651-b90cf58f1c95", + "createdTime": "2020-12-26T19:33:34.485Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25125b91-5f22-4623-bf6c-5eb41c1b820d", + "createdTime": "2020-12-26T19:33:33.375Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6635e2c5-b176-4c86-8232-2aed87a040b9", + "createdTime": "2020-12-26T19:33:32.132Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "70856037-9d1f-4d18-91f8-010979d5fe08", + "createdTime": "2020-12-26T19:18:16.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "227ed7d3-4e4f-4121-9682-8db2710f9a70", + "createdTime": "2020-12-26T19:18:15.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b0d8c5ea-488d-4aa4-9116-685f34c1c594", + "createdTime": "2020-12-26T19:18:15.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f3392c07-7180-4f14-9848-95ae55e2a540", + "createdTime": "2020-12-26T19:18:14.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa2bd0d5-2087-42cc-8b69-4d39b16f9909", + "createdTime": "2020-12-26T19:17:22.949Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb30f39-f7ca-47d5-a284-c7f41bf10d99", + "createdTime": "2020-12-26T19:17:22.064Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ef74749-a942-4166-843e-2a7a003f3ff2", + "createdTime": "2020-12-26T19:17:21.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8160914d-905c-47d7-8819-c514ddf8f134", + "createdTime": "2020-12-26T19:17:20.327Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eeedde34-57b0-4199-adee-db54bc957cc0", + "createdTime": "2020-12-26T19:08:37.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2d512357-1280-455c-be7e-221777df490a", + "createdTime": "2020-12-26T19:08:37.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b23f07d3-bcbc-46d0-92a5-c72b46d8e850", + "createdTime": "2020-12-26T19:08:36.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d2c1e81-1069-41da-8ec1-d976426dd62c", + "createdTime": "2020-12-26T19:08:36.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30318465-8205-46c7-9f9a-f5e39def0f62", + "createdTime": "2020-12-26T19:07:43.809Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f90a819f-d0a9-4e8a-92d8-e4680b0cdcb9", + "createdTime": "2020-12-26T19:07:42.479Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c64bae98-c2cb-4e39-8661-e2413971e706", + "createdTime": "2020-12-26T19:07:41.283Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d37fd3c3-f442-4274-bda8-243e13a4d985", + "createdTime": "2020-12-26T19:07:40.089Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "91884e2c-ca90-46a5-9be6-6517ecb47063", + "createdTime": "2020-12-26T18:48:42.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c772e292-4ec0-43e6-a5ca-922be0c6e064", + "createdTime": "2020-12-26T18:47:32.909Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a6f73d8e-a7f0-4d3e-8285-4ef037337749", + "createdTime": "2020-12-26T18:51:51.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "279daab8-c19d-4501-a489-137aecbaca2e", + "createdTime": "2020-12-26T18:51:50.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4f36200b-ee7c-4275-be34-37dcd8daece0", + "createdTime": "2020-12-26T18:51:50.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4da6bab-c749-4f15-be37-4385bb444497", + "createdTime": "2020-12-26T18:51:50.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2d00ccb-f237-4916-893d-bea94995b50d", + "createdTime": "2020-12-26T18:48:41.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "393a16a3-0fae-4827-9d3b-b02f89958851", + "createdTime": "2020-12-26T18:48:41.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7c2c51c3-f436-4d19-a0ab-9f539efc6c47", + "createdTime": "2020-12-26T18:48:40.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8138acc3-bd22-4feb-b7b9-72c4475b38f8", + "createdTime": "2020-12-26T18:47:31.404Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25e04d0a-2b7b-4715-a59b-bc03a3c841d0", + "createdTime": "2020-12-26T18:47:29.833Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "14ba6c05-8493-47cd-8ee4-962e711e0260", + "createdTime": "2020-12-26T18:47:28.099Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "acb3465c-779f-4907-a6d9-4d8343c0c381", + "createdTime": "2020-12-26T18:41:10.697Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c0e6c5-7404-4691-9e3b-d8ea7d8e386e", + "createdTime": "2020-12-26T18:33:25.85Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3333381f-ec97-445b-a920-069a16e67d42", + "createdTime": "2020-12-26T18:31:25.998Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "404d2e90-390d-48f5-ae96-532c4b2e0cd7", + "createdTime": "2020-12-26T18:31:23.744Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "62696134-7885-40c7-b50a-7430ad33146a", + "createdTime": "2020-12-26T18:31:21.604Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "92f43471-3e64-4609-8a15-0170c0448aab", + "createdTime": "2020-12-26T18:31:19.951Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c14d8a5c-8d64-4f3d-9b0e-6ea896648023", + "createdTime": "2020-12-25T09:09:32.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9802184-335a-4a2c-9b46-1377f3e98cdf", + "createdTime": "2020-12-25T09:09:31.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8de91df0-5f23-4ee9-86e7-39bc4b426c8e", + "createdTime": "2020-12-25T09:09:30.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f86963e-894d-45df-8089-331a55e2244a", + "createdTime": "2020-12-25T09:09:29.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b58973a-2e80-469d-9bcb-a46bcab64918", + "createdTime": "2020-12-25T09:05:59.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e94785a9-2317-4005-9091-88dbb70ffe67", + "createdTime": "2020-12-25T09:05:58.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "536af1d6-acd5-41c0-9170-22ec0fb83fed", + "createdTime": "2020-12-25T09:05:58.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "77e45f55-35de-476b-b350-78cdae335f08", + "createdTime": "2020-12-25T09:05:57.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ea02ad1-4407-41b9-b99e-744cc3cfebdb", + "createdTime": "2020-12-25T08:59:08.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bacabf11-3864-4629-bd71-e33bd87c43ae", + "createdTime": "2020-12-25T08:59:07.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "942cb0b8-c618-4720-b6f7-7efa578bbb02", + "createdTime": "2020-12-25T08:59:06.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "725367b8-fdc0-4866-aa65-1034b91a86ac", + "createdTime": "2020-12-25T08:59:06.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d06a623-ae13-4639-811e-0c636c826e0f", + "createdTime": "2020-12-25T08:55:40.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9a0410f-e2b3-461e-b21b-e082e6fb8e85", + "createdTime": "2020-12-25T08:55:40.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "61d50871-8a3e-41da-8241-c5bf949ddef2", + "createdTime": "2020-12-25T08:55:39.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c2dd13c9-abe9-4054-95bf-ed4f4c34b095", + "createdTime": "2020-12-25T08:55:38.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0f651ae-30a0-4afb-96c5-b3626855f842", + "createdTime": "2020-12-25T08:47:01.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a985b0f8-2d34-4f70-a8a5-fef154121e00", + "createdTime": "2020-12-25T08:47:00.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35a76e63-f11f-43ed-b313-cfc14d93f37f", + "createdTime": "2020-12-25T08:46:59.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "479e76aa-f34b-48ac-be45-8f1af9dfd7c3", + "createdTime": "2020-12-25T08:46:59.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9dec1de-3069-4953-88a1-02f945331541", + "createdTime": "2020-12-25T08:26:13.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4281866e-d3d7-474f-9851-8459332f7dfc", + "createdTime": "2020-12-25T08:33:10.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2121dcc8-a5f1-49e3-bffc-e0b26ab3a3a8", + "createdTime": "2020-12-25T08:36:45.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb55db8e-ba3e-4f61-8f91-ae16d1efa41f", + "createdTime": "2020-12-25T08:36:44.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "11116714-f1bf-458a-8374-e65d87a2d137", + "createdTime": "2020-12-25T08:36:43.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69c38f4e-ad59-4672-9add-e8e00376f1ad", + "createdTime": "2020-12-25T08:36:42.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2aa0f77-6a73-4d28-a11a-7062262280b7", + "createdTime": "2020-12-25T08:33:10.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c7a32716-29c0-4f86-a5a6-5a2a1e33c697", + "createdTime": "2020-12-25T08:33:09.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bca9531-f861-4620-a92d-2a51a0a7a76d", + "createdTime": "2020-12-25T08:33:09.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8dadeec-a6a6-4899-8712-ff39628ccb95", + "createdTime": "2020-12-25T08:26:12.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e50c9ef-5567-43dc-9484-d53c82a697d8", + "createdTime": "2020-12-25T08:26:11.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "816cbb81-dc0a-43ba-8d63-edfa379b8ce7", + "createdTime": "2020-12-25T08:26:11.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c8e3fc5-3fbb-47fc-ba8f-05aa21262774", + "createdTime": "2020-12-25T08:22:48.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "caad3f90-77aa-4263-b76e-407ed4a09a1e", + "createdTime": "2020-12-25T08:22:47.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf12817-e10a-42e9-bcbd-f47d2b22551c", + "createdTime": "2020-12-25T08:22:46.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "11602a67-36ae-42cd-bba8-9d6d3e4953b4", + "createdTime": "2020-12-25T08:22:46.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a43fbdc-ab73-4e99-8c84-d4e386e808f8", + "createdTime": "2020-12-24T20:15:36.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dbb9a780-4430-4c43-b1f8-054061f194e2", + "createdTime": "2020-12-24T20:15:35.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "edde2701-d541-4a18-94de-2e9911647287", + "createdTime": "2020-12-24T20:15:35.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7db4b3f5-c639-433b-858f-1b777982ee73", + "createdTime": "2020-12-24T20:15:34.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "068f4d52-c4bf-49b6-87c7-681b7ec3f975", + "createdTime": "2020-12-24T20:06:44.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7c7da011-2846-4ab7-8270-c27e0c6dc809", + "createdTime": "2020-12-24T20:05:42.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6c7cfa6-becf-46f8-824b-7fe78ae0b4c2", + "createdTime": "2020-12-24T20:05:19.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f12a119b-da05-446a-8178-56576243a02d", + "createdTime": "2020-12-24T20:08:53.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7130810d-019c-40b4-bf35-a3a8a0489a99", + "createdTime": "2020-12-24T20:04:48.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3556c2cb-fc0d-4842-baa1-6184bead8fda", + "createdTime": "2020-12-24T20:08:54.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7474e4ca-c62e-4d61-a256-e99389c6011a", + "createdTime": "2020-12-24T20:08:52.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8bcb59b9-38f4-4842-b708-346d10515e85", + "createdTime": "2020-12-24T20:08:52.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a50f775d-e969-425d-aa66-30043fb1f31d", + "createdTime": "2020-12-24T20:06:45.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b46a6857-a63b-4675-93c6-092e76f37169", + "createdTime": "2020-12-24T20:06:43.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "518c7b4c-a8f0-4757-a1dc-b63d864998db", + "createdTime": "2020-12-24T20:06:43.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ed2b8c3-9d1e-4e99-8a65-bdf64ab9aee6", + "createdTime": "2020-12-24T20:05:42.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f36f7e8a-5b59-48ea-952d-f312385d0d6b", + "createdTime": "2020-12-24T20:05:41.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6eaa4933-fdef-4df4-a329-6e78319e5e26", + "createdTime": "2020-12-24T20:05:40.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47171d57-32e5-45f0-94f4-cd5e50e817a1", + "createdTime": "2020-12-24T20:05:20.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c5d6e224-024c-4990-8580-11d96fcf9d3d", + "createdTime": "2020-12-24T20:05:18.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "169f1de2-36ec-4512-9ce4-63ce18c1fb23", + "createdTime": "2020-12-24T20:05:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4faff2e-461b-4861-a64f-2024a9568d3a", + "createdTime": "2020-12-24T20:04:49.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7e0bf8f7-6b6e-4817-911b-2b092f695d6b", + "createdTime": "2020-12-24T20:04:48.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "38e45064-6a9f-4b6c-8d62-d6d9756ff8b2", + "createdTime": "2020-12-24T20:04:48.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "42e16f55-a418-4ae9-8da9-ea8da6631b2b", + "createdTime": "2020-12-24T20:04:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "fe4c8aa9-6329-4c1a-a355-4df07d23949b", + "createdTime": "2020-12-24T20:04:47.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e0cf5c20-842c-4ee8-a25d-1217ad645473", + "createdTime": "2020-12-24T20:04:47.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1b7604e-0695-4555-914d-9afd9f90e8d4", + "createdTime": "2020-12-24T20:04:46.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de72de46-c2d3-43df-bf7d-119632f6301e", + "createdTime": "2020-12-23T20:57:14.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7e00fed1-e379-4016-a69c-4d0ffc44020c", + "createdTime": "2020-12-23T20:55:55.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "89d033c3-b29e-499d-9ba3-61477be156b3", + "createdTime": "2020-12-23T20:55:49.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1695baef-106c-4250-9545-27ec27ee13c3", + "createdTime": "2020-12-23T20:55:41.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "31fcaa73-0f9e-49a5-80c7-82d0d3938564", + "createdTime": "2020-12-23T20:59:21.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6537f314-72af-4a46-8254-8c988e600e6d", + "createdTime": "2020-12-23T21:02:17.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3aa2d7eb-6d83-49d2-b1f1-1b8e8d404ce8", + "createdTime": "2020-12-23T21:02:16.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9972891b-4ec2-4ed1-8684-4c560322b6f1", + "createdTime": "2020-12-23T21:02:16.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "61dee648-34cd-4d7e-845a-2bcd8dcdcc29", + "createdTime": "2020-12-23T21:02:15.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "271541ce-831c-4b60-9efd-5f3cfd560355", + "createdTime": "2020-12-23T20:59:21.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0bb80b85-dcb0-434d-b38f-b03de71606ca", + "createdTime": "2020-12-23T20:59:20.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7b201aae-2290-4eff-9c19-cfde840e505c", + "createdTime": "2020-12-23T20:59:19.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a317b0-5c8a-4430-90eb-3d6736241c9a", + "createdTime": "2020-12-23T20:57:15.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d987b8bf-1983-48b4-8cca-662fb034fe5f", + "createdTime": "2020-12-23T20:57:12.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f3cee7b2-bdd8-4887-a345-75571b06c06a", + "createdTime": "2020-12-23T20:57:11.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb393066-09a2-42d2-b4d1-4e84301f6b58", + "createdTime": "2020-12-23T20:55:56.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "61323aa0-5cd3-4799-b0fb-9e1130218214", + "createdTime": "2020-12-23T20:55:54.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3f6a47b2-8880-4980-ab36-e65279c757c1", + "createdTime": "2020-12-23T20:55:54.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc771f83-7120-4dd1-8ddd-298c2f297796", + "createdTime": "2020-12-23T20:55:49.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70932eba-4296-441b-8b55-8d5e7d986767", + "createdTime": "2020-12-23T20:55:48.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7dee9cf5-da65-4b97-9eef-8a358c676ca0", + "createdTime": "2020-12-23T20:55:47.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d6445f5-7c8f-4983-8e42-91a3d8b57d15", + "createdTime": "2020-12-23T20:55:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "339376c1-ffa5-4d6d-b976-2e489e11acae", + "createdTime": "2020-12-23T20:55:40.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0ade10ed-63c3-4456-95f8-d1b233f37cc5", + "createdTime": "2020-12-23T20:55:39.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af85bbd3-0c7d-4295-830d-636b9f292da0", + "createdTime": "2020-12-23T20:55:28.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f57e46c8-87e3-4178-91af-26bfbb400234", + "createdTime": "2020-12-23T20:55:27.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3f791a9d-2a33-4be2-bece-86a8cba5cf40", + "createdTime": "2020-12-23T20:55:26.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6053b909-48d0-49bf-ba8b-a4ef4f46c1b2", + "createdTime": "2020-12-23T20:55:25.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "37732f37-1def-40e5-831b-ac529a35968b", + "createdTime": "2020-12-23T09:15:09.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41719929-c6fc-480e-ac1e-40875d7ca2ec", + "createdTime": "2020-12-23T09:15:09.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "66a1c652-1d16-4c7c-adfb-9bc06aa9e082", + "createdTime": "2020-12-23T09:15:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e691afe-b49e-4ec0-ba50-bc1dafec10e7", + "createdTime": "2020-12-23T09:15:07.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba31bc66-cbca-4c06-b314-26dbf02c627f", + "createdTime": "2020-12-23T09:11:29.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "33bb3722-83cc-48ed-a135-8f7939ca2d1a", + "createdTime": "2020-12-23T09:11:28.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "80f60981-19d3-45bd-a34b-a94e6104ac3b", + "createdTime": "2020-12-23T09:11:28.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5f214c22-adff-4e49-9e36-fb82c533a60b", + "createdTime": "2020-12-23T09:11:27.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65ef382d-bf8f-4a62-9bb1-bce0dcae694e", + "createdTime": "2020-12-23T09:00:03.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "057009cb-46f5-4084-8e7b-9fac9ccb6c54", + "createdTime": "2020-12-23T09:00:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dbb69e5e-3ce5-4fe7-81eb-96d2eaf0a8ce", + "createdTime": "2020-12-23T09:00:01.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f6b1cc3-2489-4522-80a4-7f7f6881b9cf", + "createdTime": "2020-12-23T09:00:01.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "89daaa3e-5a7d-4dc3-8aa2-69f33d44e95c", + "createdTime": "2020-12-23T08:56:24.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b45c5b1-f0f8-49cc-998f-f391b657d8aa", + "createdTime": "2020-12-23T08:56:23.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09bbcac7-81fc-4721-90e1-70846c0a0bd9", + "createdTime": "2020-12-23T08:56:22.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5837ed1b-0f3e-4ca8-87b4-e450935a2a7e", + "createdTime": "2020-12-23T08:56:21.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a6ac7d-8cb8-43f4-b32d-01fe191665b6", + "createdTime": "2020-12-23T08:47:47.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91fe007b-5d38-4669-bbf7-842c8f5d9736", + "createdTime": "2020-12-23T08:47:46.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "23538581-9115-4af6-bbe9-0989e266e343", + "createdTime": "2020-12-23T08:47:45.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a7aec005-b9ae-4fe6-b820-ccb62e716852", + "createdTime": "2020-12-23T08:47:45.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "655d24e9-dc15-4672-82f1-a5edeed36ea5", + "createdTime": "2020-12-23T08:24:41.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d7b984-973b-4cba-846a-53538bb5826c", + "createdTime": "2020-12-23T08:34:21.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1d3719d6-f5fa-4118-b053-2a3b49f36bda", + "createdTime": "2020-12-23T08:37:49.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f2dbfab9-056a-460e-a864-d53c758f8721", + "createdTime": "2020-12-23T08:37:48.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e85a6886-832a-4398-bfec-ee4bfe4d64c3", + "createdTime": "2020-12-23T08:37:47.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8fb381ea-cd25-4cb1-8fd9-b0d546662d21", + "createdTime": "2020-12-23T08:37:46.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "121ea8c0-9752-4e74-a70c-bbd09fcd15c7", + "createdTime": "2020-12-23T08:34:20.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b5450ce-eadd-4b65-9b45-8845be4a59b9", + "createdTime": "2020-12-23T08:34:19.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "332f2f4a-58bb-43d8-8c20-39c37fcfa083", + "createdTime": "2020-12-23T08:34:18.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b28bf906-ba52-4bde-819b-e87d45fe2050", + "createdTime": "2020-12-23T08:24:40.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5868f983-9bfd-4580-a405-067192b7899e", + "createdTime": "2020-12-23T08:24:39.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ccf48000-1df0-449a-a445-34637dd9ef7a", + "createdTime": "2020-12-23T08:24:38.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77abdf63-abc8-4f99-99f5-f70717a0bbc4", + "createdTime": "2020-12-23T08:21:06.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "454b7a57-ee4e-41c7-af70-aef6d91ce632", + "createdTime": "2020-12-23T08:21:05.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e78a2c14-5b98-4a98-a76c-2bd8dcb0660f", + "createdTime": "2020-12-23T08:21:05.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "124c4ac7-f8a4-4b30-99a9-00dfd165de51", + "createdTime": "2020-12-23T08:21:04.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aef428f5-3d71-4c27-b456-ab86b8b5bd2f", + "createdTime": "2020-12-22T20:41:06.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9b7e3df-fbca-41f0-9ee6-54508ffec82c", + "createdTime": "2020-12-22T20:41:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1383546a-0c4f-410c-a69a-7e27cbf6e51d", + "createdTime": "2020-12-22T20:41:04.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "957bb947-548b-481a-aa3f-2c7c3cbf0e95", + "createdTime": "2020-12-22T20:41:03.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42a9b275-d5bc-435a-89f2-58f4051d35ff", + "createdTime": "2020-12-22T20:33:34.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f3a3b1e3-ce4d-40d5-a72c-d544161abd4e", + "createdTime": "2020-12-22T20:34:35.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cdf73d2d-f045-4ecc-a56f-48e08ac4e43b", + "createdTime": "2020-12-22T20:35:11.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5c2c96ed-2a2b-4ffa-bf54-6896805b34c8", + "createdTime": "2020-12-22T20:39:05.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "671bf225-71ae-4b82-970a-6972ab8b2576", + "createdTime": "2020-12-22T20:34:55.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "489f6406-93bc-4dcc-94a3-54dd0621f32e", + "createdTime": "2020-12-22T20:33:42.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a7fc5352-987f-4a5a-bd82-a77e67999573", + "createdTime": "2020-12-22T20:39:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e2dc54ea-1fbd-4dfd-9b85-81c084c4c8bd", + "createdTime": "2020-12-22T20:39:04.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7105d376-82f4-4733-a89a-67c7ea66d5e5", + "createdTime": "2020-12-22T20:39:03.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee0ce34-6d99-4a43-9566-b51f85ac978a", + "createdTime": "2020-12-22T20:35:12.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f7841f1-f60f-4505-948a-373307cd08ce", + "createdTime": "2020-12-22T20:35:10.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0427dcc9-2f94-471f-abae-3108bc2412c9", + "createdTime": "2020-12-22T20:35:07.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82f2a35c-90ee-4ea7-aafc-0f324b46c88b", + "createdTime": "2020-12-22T20:34:57.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9817a6b9-0fe9-4611-b20a-690a93c2bc2a", + "createdTime": "2020-12-22T20:34:53.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fbeba7b9-ca0d-4309-b795-e4c5bf91d69c", + "createdTime": "2020-12-22T20:34:52.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42c50a9e-1012-45be-acb8-8656ed1d4b6b", + "createdTime": "2020-12-22T20:34:36.282Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a0c5c1dd-3950-4b8b-84bc-4dd17e9e0a73", + "createdTime": "2020-12-22T20:34:34.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9ebfdb96-98d9-404f-bec6-1b4905c8f70e", + "createdTime": "2020-12-22T20:34:32.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0bbb61c-83ea-4041-86dc-400dea6256ee", + "createdTime": "2020-12-22T20:33:44.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cb41e179-0b9b-4788-a94a-5c274d3387a8", + "createdTime": "2020-12-22T20:33:40.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b323e93c-48f4-4b00-a256-8fbf3ae2cbc2", + "createdTime": "2020-12-22T20:33:39.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "207d3d01-b193-4a36-b40e-a824effdd5c5", + "createdTime": "2020-12-22T20:33:36.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "494133f4-2576-4159-8cc8-cb43de2e9b72", + "createdTime": "2020-12-22T20:33:32.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8e031594-5754-4cfa-a906-c498d6f8cf51", + "createdTime": "2020-12-22T20:33:27.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61582416-c8b2-4259-a8df-c960a89343e6", + "createdTime": "2020-12-22T09:28:15.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24f8f4c2-7477-4e7d-80c9-16eb34d0c29a", + "createdTime": "2020-12-22T09:28:14.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a05d8f9-40aa-4951-8015-f1d1953e8a01", + "createdTime": "2020-12-22T09:28:13.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96792278-e3b6-47fd-a86a-41f2cdfa3381", + "createdTime": "2020-12-22T09:28:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62f805d2-d710-4222-ba2e-3e392dc06e11", + "createdTime": "2020-12-22T09:24:53.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "587aab10-93ae-488c-aa40-9c1d90662875", + "createdTime": "2020-12-22T09:24:53.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9394eac-b7f9-42d1-904f-00e361966943", + "createdTime": "2020-12-22T09:24:52.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9ed5706a-d087-4245-905d-ec71d60e5855", + "createdTime": "2020-12-22T09:24:52.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccd8fb88-1f5a-42da-98ff-b25f82315ff4", + "createdTime": "2020-12-22T09:17:02.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb13e7c-f42e-45d8-b631-b7a17909a652", + "createdTime": "2020-12-22T09:17:02.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e2bd4df2-d576-4f6e-b013-85778415e4e1", + "createdTime": "2020-12-22T09:17:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad7b3118-caf8-48eb-9e8a-9eefdb19fe23", + "createdTime": "2020-12-22T09:17:01.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48c72110-917c-482c-bfad-d06d3cb0c4f5", + "createdTime": "2020-12-22T09:13:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f886c0a9-abaa-48da-a17e-023a994998cf", + "createdTime": "2020-12-22T09:13:47.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "331d8f18-addd-42df-9a28-55d0860e43e4", + "createdTime": "2020-12-22T09:13:45.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2fd0087-032a-405b-95fc-81e1b058c9bc", + "createdTime": "2020-12-22T09:13:44.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c87b6ce-94a6-4f2e-a973-031e8269ab1f", + "createdTime": "2020-12-22T09:00:39.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb25ec64-3e3d-4900-b337-b17b09d48905", + "createdTime": "2020-12-22T09:00:38.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7764a419-9796-403b-96d3-b86781af166d", + "createdTime": "2020-12-22T09:00:37.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ab9ac661-9721-4f3f-b237-fbc9626bc073", + "createdTime": "2020-12-22T09:00:36.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83a928be-08b1-4aeb-866e-6469dc577878", + "createdTime": "2020-12-22T08:36:30.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91886741-c714-43f8-a994-e1900a0c7c75", + "createdTime": "2020-12-22T08:48:05.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "241a4128-5e39-4db0-86fd-3d8bffbcaf29", + "createdTime": "2020-12-22T08:44:46.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb06585e-fa92-44bc-8b55-389936e1fa63", + "createdTime": "2020-12-22T08:48:04.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0cafde42-d85f-4034-b8dc-995b1b125b85", + "createdTime": "2020-12-22T08:48:04.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bbcf92cd-32b2-477a-bb30-9e19afb30a37", + "createdTime": "2020-12-22T08:48:03.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "294c92cf-9ea5-45d2-b56c-a38d7324f726", + "createdTime": "2020-12-22T08:44:46.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "60cf03fa-278e-4f08-a64d-c7cdec0c5ab9", + "createdTime": "2020-12-22T08:44:45.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a44ca88d-c940-461e-9983-b848a527dfea", + "createdTime": "2020-12-22T08:44:44.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6bfaf4a9-070a-4af4-9c9c-a9a9e9aadac6", + "createdTime": "2020-12-22T08:36:29.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "56b1e4d3-51cc-40a3-82df-e327a8142651", + "createdTime": "2020-12-22T08:36:29.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf926732-204c-4d47-8d21-15cdee948c56", + "createdTime": "2020-12-22T08:36:28.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d375965f-8162-4901-a01e-5b859e0c1d97", + "createdTime": "2020-12-22T08:33:08.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8b43225-d36e-4cea-9805-917e13e0ed09", + "createdTime": "2020-12-22T08:33:08.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f04ab051-0209-4be9-a968-6dae5a6b9d8e", + "createdTime": "2020-12-22T08:33:07.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "437f365b-6f22-494f-ac32-799531bc18f6", + "createdTime": "2020-12-22T08:33:07.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c59609d5-61f8-47c8-add7-08e6358aa25f", + "createdTime": "2020-12-22T01:56:58.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c5ecd7b-91f3-4cf3-9ca7-e2170c1d44b5", + "createdTime": "2020-12-22T01:56:57.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a0152cfa-b0a2-4b86-83bb-82eba4150ffb", + "createdTime": "2020-12-22T01:56:57.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf3b2e07-fc2c-4b0a-b6c9-509c97278554", + "createdTime": "2020-12-22T01:56:56.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "030d6e2e-d0d4-4c2e-be86-c7f1af91808d", + "createdTime": "2020-12-22T01:52:58.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a5a13bd7-a0ba-4aee-8996-00a186a8822d", + "createdTime": "2020-12-22T01:52:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "391bf812-d2a0-4cfd-9e85-08439102f085", + "createdTime": "2020-12-22T01:52:56.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "184cafcd-0a6c-4d11-bd3b-9b082fa7ab9a", + "createdTime": "2020-12-22T01:52:56.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32fd172c-585f-477e-9e64-8ead8c3fd49b", + "createdTime": "2020-12-22T01:46:10.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f41eea61-6e23-4b76-ba2d-7e61dee3b98c", + "createdTime": "2020-12-22T01:46:10.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9f9e7e24-dcc4-463f-9a0d-fac8bda2487c", + "createdTime": "2020-12-22T01:46:09.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8c19a778-2a27-4eb9-a038-a753312285cc", + "createdTime": "2020-12-22T01:46:08.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd20251a-c2af-4530-a606-5aa13011edeb", + "createdTime": "2020-12-22T01:42:19.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "896cec48-1291-400b-9aa4-2b2eb5605476", + "createdTime": "2020-12-22T01:42:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39b08c09-e886-4ecf-a659-691c61a54522", + "createdTime": "2020-12-22T01:42:17.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f7d6579-1034-4427-a8ad-9b0bacd20f0c", + "createdTime": "2020-12-22T01:42:16.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46408c8c-a711-440e-9af3-a07be85092d6", + "createdTime": "2020-12-22T01:33:32.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c2d2350b-44a9-4072-99c2-1a437e2cbab4", + "createdTime": "2020-12-22T01:33:31.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9909321-90ea-41b1-bdd0-edfb97c55d6d", + "createdTime": "2020-12-22T01:33:31.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "488489f8-2cc2-4e95-a5db-9a9ef9056ca7", + "createdTime": "2020-12-22T01:33:30.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaa1251f-bc99-49ee-9e59-7f22ceebba15", + "createdTime": "2020-12-22T01:23:31.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8e43277b-3165-47aa-a21c-a6c448440dbc", + "createdTime": "2020-12-22T01:20:09.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41c19240-6e79-4996-9ca8-52d27d270b1a", + "createdTime": "2020-12-22T01:13:30.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f3a4264f-c691-4cd6-8bea-66ae5197ed7c", + "createdTime": "2020-12-22T01:23:29.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "891df15f-d72a-4c5f-b59e-db53b7298c88", + "createdTime": "2020-12-22T01:23:28.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "af864a46-16e9-48b2-8014-c6a345191e52", + "createdTime": "2020-12-22T01:23:28.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2dbd77a-40c8-4de8-a3a8-5d73e2652d82", + "createdTime": "2020-12-22T01:20:07.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c42e7d4-54d0-4c23-912d-9613e08aa9e7", + "createdTime": "2020-12-22T01:20:07.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a5f7e8f-fc0d-4b2e-ac5b-7aa6dd5870b3", + "createdTime": "2020-12-22T01:20:06.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419f69af-4434-4470-90fe-95c601408a15", + "createdTime": "2020-12-22T01:13:29.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43290590-f206-4d66-85c1-65a708f3cfd4", + "createdTime": "2020-12-22T01:13:29.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "580f2e65-b4fd-421a-876a-f8ca0eb63ae9", + "createdTime": "2020-12-22T01:13:28.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "997b195b-9a9a-46c0-8873-38d0c0b65c6c", + "createdTime": "2020-12-22T01:10:38.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "20ae3052-6a9a-43b1-b472-c63e9f7d0918", + "createdTime": "2020-12-22T01:10:37.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0f7f2807-16bc-4572-ab1a-758c953b091e", + "createdTime": "2020-12-22T01:10:37.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "656d1936-0248-455c-a6e1-bd9fc88a20f6", + "createdTime": "2020-12-22T01:10:36.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ad5c44b-eaea-4f61-9979-7e4c9dee770d", + "createdTime": "2020-12-21T20:06:58.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e4cad3d3-4432-4450-9968-ddf201292322", + "createdTime": "2020-12-21T20:11:41.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68213513-ecfc-4642-96c4-30e0d2d38e57", + "createdTime": "2020-12-21T20:05:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bc5dabdd-ee81-4440-b416-fce6727c0c2c", + "createdTime": "2020-12-21T20:10:11.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7b5edb6a-c0be-45b1-96bd-cf9ac8dc3b87", + "createdTime": "2020-12-21T20:05:05.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53f340b6-2ea9-45b2-be1e-adb49953edf1", + "createdTime": "2020-12-21T20:05:00.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ee9a3907-9d91-4587-93cb-437961dff2f2", + "createdTime": "2020-12-21T20:11:41.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f5b74891-32aa-40c4-95c4-906c7d3f49d1", + "createdTime": "2020-12-21T20:11:40.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "88d7c425-0302-4fac-bf37-b71289e6c409", + "createdTime": "2020-12-21T20:11:39.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8d67b49-044b-41b4-88ba-884d8e1e9857", + "createdTime": "2020-12-21T20:10:12.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70963599-7dac-47a1-8d71-fb45b408e080", + "createdTime": "2020-12-21T20:10:11.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d010d7aa-10db-482a-8165-8b2ca27f6c31", + "createdTime": "2020-12-21T20:10:11.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f576d28-0e21-4e2c-adc6-9f181f5a3639", + "createdTime": "2020-12-21T20:06:59.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ce75e4e2-e35c-4222-8634-4daf92e1aae0", + "createdTime": "2020-12-21T20:06:58.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ba24119-bb70-4c8c-b1f0-8aca6700b4ce", + "createdTime": "2020-12-21T20:06:57.346Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbf71920-a54f-41b2-a79d-eb1900d7ad4e", + "createdTime": "2020-12-21T20:05:38.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4434d7df-5c0e-4da8-9243-76e1bca52e78", + "createdTime": "2020-12-21T20:05:36.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "782791c2-0dfb-45ca-a305-78d023dc7b8c", + "createdTime": "2020-12-21T20:05:35.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7701327-2962-4f98-adc4-146bb9e7ad54", + "createdTime": "2020-12-21T20:05:06.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "51f570a4-915e-4720-bc7f-e36ef49c5b8b", + "createdTime": "2020-12-21T20:05:04.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ed7f4b88-350b-43d1-89bf-b17b0a696494", + "createdTime": "2020-12-21T20:05:03.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffb837a-1c8b-4d79-85a5-dba9c92537fa", + "createdTime": "2020-12-21T20:05:01.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c1b6e51c-fa2a-48a1-9ea9-d0289a16e4fc", + "createdTime": "2020-12-21T20:05:00.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6c093bb-1bb9-4012-bdc4-7f34d4aeda63", + "createdTime": "2020-12-21T20:04:59.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7992feb-b713-409e-a8ea-aa5173ec24ea", + "createdTime": "2020-12-21T20:04:53.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d5e144d7-3140-4860-81df-cd6e072fe130", + "createdTime": "2020-12-21T20:04:52.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "73c63d08-cb04-47c3-a1bc-690339937f1d", + "createdTime": "2020-12-21T20:04:51.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d293a698-37ae-458a-a986-46cb81ddb81c", + "createdTime": "2020-12-21T20:04:51.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a5b997b-a07d-4294-a2ec-8a95d9c02471", + "createdTime": "2020-12-21T09:16:21.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bce89fd-697b-4c24-b4df-aa0286ed4e90", + "createdTime": "2020-12-21T09:16:20.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2764deb1-6c2a-4446-adb0-8881dab5170c", + "createdTime": "2020-12-21T09:16:15.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ea30f813-a923-40ec-a626-2b06424a46fe", + "createdTime": "2020-12-21T09:16:14.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12b67cfb-dfa4-45df-b3c7-485924cf3a7d", + "createdTime": "2020-12-21T09:12:31.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa3759d9-e629-4252-9699-ef33fc54a812", + "createdTime": "2020-12-21T09:12:31.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0caf195a-b9ca-47dd-a05c-0c4382459d50", + "createdTime": "2020-12-21T09:12:30.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e97db822-38ea-4fa2-958b-b380b79deec1", + "createdTime": "2020-12-21T09:12:29.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6bc6bd2-e1e8-4c43-98bd-f8ecadcc29e4", + "createdTime": "2020-12-21T09:02:31.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a7f98f2-a65c-42c6-ae66-c7660aa49664", + "createdTime": "2020-12-21T09:02:31.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "14cc7aee-81fd-4b75-9246-af319d5fcbb8", + "createdTime": "2020-12-21T09:02:30.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc24d7dd-28e1-4f4f-a1ee-6fce4e4540f2", + "createdTime": "2020-12-21T09:02:29.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "379cda55-5f97-44dc-8060-12d11b929f0d", + "createdTime": "2020-12-21T08:59:09.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e7d947af-ea5c-4046-b9af-f00fdf541ed9", + "createdTime": "2020-12-21T08:59:08.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05ee127f-c5d8-4966-93b5-d686178719e9", + "createdTime": "2020-12-21T08:59:08.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ec406b95-d72c-4129-93cb-a2480ec56f45", + "createdTime": "2020-12-21T08:59:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e67bec9d-7363-44f0-b7ca-96255a4de836", + "createdTime": "2020-12-21T08:49:34.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45cd6fe9-9e83-47e9-9edc-b1cad6def5d2", + "createdTime": "2020-12-21T08:49:34.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "835b1362-c0b7-489b-8257-671d8f75f945", + "createdTime": "2020-12-21T08:49:33.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9f85f44-5c9f-4cb4-bcaf-d636f09ae352", + "createdTime": "2020-12-21T08:49:32.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3939b12-c0c0-4804-90f6-5e4b59db0e4a", + "createdTime": "2020-12-21T08:35:58.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88e26549-5d6b-4221-b3fc-e0008c26448f", + "createdTime": "2020-12-21T08:39:28.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4818551b-9a9f-45c7-9c47-03b86b1aae9d", + "createdTime": "2020-12-21T08:25:00.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d0a9c6b0-1f42-47f6-8e29-db0adb8b29a2", + "createdTime": "2020-12-21T08:39:27.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9434abd6-3feb-4081-9fab-90f7b606ce44", + "createdTime": "2020-12-21T08:39:26.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "91691658-aab4-45c2-9696-7698b2691464", + "createdTime": "2020-12-21T08:39:25.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd5f6c17-f9d2-4406-abc2-eb95f6c0a8ba", + "createdTime": "2020-12-21T08:35:57.927Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db7fbbdb-41f8-49ce-af8a-5a2605520264", + "createdTime": "2020-12-21T08:35:57.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6e0c5f91-de44-40b9-b7c4-65592b342d8e", + "createdTime": "2020-12-21T08:35:56.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4530377-c29b-498e-a1f2-8d3c3773add6", + "createdTime": "2020-12-21T08:24:59.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1170056b-e936-45e9-8c57-5c759aaad2c2", + "createdTime": "2020-12-21T08:24:59.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1326c27-5701-48d4-8575-ff1d97fd51d7", + "createdTime": "2020-12-21T08:24:58.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77df024c-0ab5-4ef1-8092-1f0d6063ddf3", + "createdTime": "2020-12-21T08:21:20.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ccc374-9fa5-4532-89a9-27043243707c", + "createdTime": "2020-12-21T08:21:19.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63d7b793-a5eb-45ed-964e-c0a1f914b4de", + "createdTime": "2020-12-21T08:21:19.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f53f4bfd-309e-471c-b77b-c47c69b6f22a", + "createdTime": "2020-12-21T08:21:18.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9663eef4-5478-405f-acb5-e652bb76ad06", + "createdTime": "2020-12-18T20:05:09.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f6368bb-86c3-4601-b57c-fe93662bf5cc", + "createdTime": "2020-12-18T20:04:35.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "63ce5795-2a00-47d4-86cb-f5e016367cf4", + "createdTime": "2020-12-18T20:12:32.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a94c549f-f76b-49bb-b00c-6c60c70a5c8c", + "createdTime": "2020-12-18T20:12:32.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6fbc6d60-d9c1-4e22-9946-c83faedad174", + "createdTime": "2020-12-18T20:12:31.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "44798a38-6683-45b9-a045-c91abcf4c640", + "createdTime": "2020-12-18T20:12:30.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c806877d-5789-4157-b089-8a5636379be1", + "createdTime": "2020-12-18T20:07:26.588Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5f8b3c02-3131-4476-b279-b6efa1c8af26", + "createdTime": "2020-12-18T20:10:21.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1758ed3a-c590-4b2d-8183-e1f7c2852b37", + "createdTime": "2020-12-18T20:05:10.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "754ccde0-da05-476e-9eec-e15c62e2e88e", + "createdTime": "2020-12-18T20:10:21.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be3bf3e4-bc5d-40b7-9e84-671863c43268", + "createdTime": "2020-12-18T20:10:20.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c9ad198a-004a-4789-909d-eb825c4eb9fd", + "createdTime": "2020-12-18T20:10:20.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8ec561c-c48d-4615-b15c-3594f7229d2a", + "createdTime": "2020-12-18T20:07:27.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1886af61-5ba7-41ba-9399-700a05c24531", + "createdTime": "2020-12-18T20:07:25.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e89d9100-fe6b-4464-8c46-c3063338a105", + "createdTime": "2020-12-18T20:07:25.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bcb83a9-1be8-447c-9d01-696a25734582", + "createdTime": "2020-12-18T20:05:15.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "64a585ee-2dfd-4510-90ab-847636559098", + "createdTime": "2020-12-18T20:05:10.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d8203b8e-3fd5-4b54-9c99-3e5c09ca1ac8", + "createdTime": "2020-12-18T20:05:09.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8dcbc710-89d0-4de5-802c-90c6d6142fa0", + "createdTime": "2020-12-18T20:05:09.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78a8f8d8-ebf7-420f-b8d8-d98c99cda553", + "createdTime": "2020-12-18T20:05:08.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dc434381-4746-4eb1-a0e3-e5eebe3ca765", + "createdTime": "2020-12-18T20:05:08.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d47c562-e927-4be1-ac21-b81c46da782d", + "createdTime": "2020-12-18T20:04:36.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d87a4f57-d301-4dca-b73a-1ea899be7fc2", + "createdTime": "2020-12-18T20:04:34.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "423ea879-afcb-4f34-9cc1-c462029d30aa", + "createdTime": "2020-12-18T20:04:34.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6c2aa646-d49e-485c-a35e-c7ba62727787", + "createdTime": "2020-12-18T20:04:29.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c5ea709-483e-48e4-80aa-a37dce600cac", + "createdTime": "2020-12-18T20:04:28.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce28c74-1e1e-46b4-a588-1393f5844636", + "createdTime": "2020-12-18T20:04:28.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c7303528-8773-45c7-bf96-97347e68ac4f", + "createdTime": "2020-12-18T20:04:27.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a39d9071-6ef4-4f4e-96d7-0303618bda62", + "createdTime": "2020-12-18T09:08:42.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69669442-1020-4b88-b421-73a971090452", + "createdTime": "2020-12-18T09:08:41.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf5ef7a4-bcc1-4f65-bf52-a64b0553ce29", + "createdTime": "2020-12-18T09:08:40.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "79b6629a-f91f-4b15-bbd1-60a4346139b1", + "createdTime": "2020-12-18T09:08:39.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c3572f8-d970-469f-8f3c-f7da5c9e6549", + "createdTime": "2020-12-18T09:04:58.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d048bc9-7202-4b6f-b2ce-a94ebc16c870", + "createdTime": "2020-12-18T09:04:58.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9044a46-6ac7-4014-a822-a193b392c022", + "createdTime": "2020-12-18T09:04:57.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6f3f0a6-3000-4b00-8325-0f2538a3e3a6", + "createdTime": "2020-12-18T09:04:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "133d4eb5-c12d-4ba9-a08d-7ec823d30936", + "createdTime": "2020-12-18T08:58:18.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "145d185f-c70a-4d1a-9c59-a135549cc6d1", + "createdTime": "2020-12-18T08:58:17.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99935685-0216-4153-941f-c059628068dc", + "createdTime": "2020-12-18T08:58:17.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c9d468e4-a468-4607-b8a1-ce002690c67a", + "createdTime": "2020-12-18T08:58:16.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "066b2370-f7a3-4d5a-a51e-ab78d186aaad", + "createdTime": "2020-12-18T08:54:19.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e95e206-6e83-4433-8de5-ff7c07afac96", + "createdTime": "2020-12-18T08:54:19.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f2252935-aac2-4d85-b358-192b8f1ca00c", + "createdTime": "2020-12-18T08:54:18.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce87c703-441f-490d-af03-1bb2c9f11258", + "createdTime": "2020-12-18T08:54:17.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "650f9646-2c36-49eb-9a6b-c4eb13974f77", + "createdTime": "2020-12-18T08:45:18.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c25627d5-969b-439c-856b-9e164bd4054a", + "createdTime": "2020-12-18T08:45:18.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32d2ce14-1158-4804-b05f-fcda9efcc8c7", + "createdTime": "2020-12-18T08:45:17.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "906d7d76-5934-4b1b-8ba6-c41fe631ba09", + "createdTime": "2020-12-18T08:45:17.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75f53536-b8b9-4dd5-a61f-47da8662d348", + "createdTime": "2020-12-18T08:32:01.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acdc17e8-a3ef-4c01-8f12-3265364a212e", + "createdTime": "2020-12-18T08:24:43.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c4568631-4d6c-4c2c-8314-a8cef88320f3", + "createdTime": "2020-12-18T08:35:33.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ee569a-e172-41c7-a5ed-0c474ff9b5bf", + "createdTime": "2020-12-18T08:35:32.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd687913-ffde-490c-9a7b-02d2653893f3", + "createdTime": "2020-12-18T08:35:32.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd7cfb47-1e31-425e-ab3e-1b703e0ef4c0", + "createdTime": "2020-12-18T08:35:31.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d99477d8-4db3-4c69-8c2d-fb0ef88f8dfe", + "createdTime": "2020-12-18T08:32:00.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c61a0a-e0b4-4a03-b698-20a93d61bc38", + "createdTime": "2020-12-18T08:32:00.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "996b42e3-88a7-41f8-89fd-0aa4ddb014a5", + "createdTime": "2020-12-18T08:31:59.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23d65c93-f4ad-4b11-9d20-081d7df691a8", + "createdTime": "2020-12-18T08:24:42.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25b3af23-028c-4c96-83cb-ac2b0db7e822", + "createdTime": "2020-12-18T08:24:41.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d48f827-4d7d-4036-af3d-f6b40d154c52", + "createdTime": "2020-12-18T08:24:40.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3507eaf9-baec-44e3-b39c-182408c61713", + "createdTime": "2020-12-18T08:21:02.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b7fc6e1f-964e-4ec9-82aa-5c3078410eec", + "createdTime": "2020-12-18T08:21:02.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7757a6f3-773c-495e-80e7-354740a790ea", + "createdTime": "2020-12-18T08:21:01.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c038a980-5328-4a95-8439-eff3c371aeb0", + "createdTime": "2020-12-18T08:21:01.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3edc139d-b44f-4ab6-bb14-7406bd1271dd", + "createdTime": "2020-12-17T20:08:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "283974a6-c947-4bf2-bb92-917bd84cd5be", + "createdTime": "2020-12-17T20:07:58.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9e02a74d-11fc-4680-8e09-08abddd311fe", + "createdTime": "2020-12-17T20:07:55.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2fec2e0b-dee4-43b7-b9b3-ee78ebc7c145", + "createdTime": "2020-12-17T20:11:40.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aa3c5f90-ee3a-47c4-b612-431f228a0e9b", + "createdTime": "2020-12-17T20:08:33.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c368c0c9-2be0-4cb8-a780-6b6140dca6ea", + "createdTime": "2020-12-17T20:14:32.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4a64fca-545e-4c76-a4ee-19a1b131e0d4", + "createdTime": "2020-12-17T20:14:32.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1395a3ac-b7c8-4650-b4ff-4d16456daa70", + "createdTime": "2020-12-17T20:14:31.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2f3f7a0f-a8c0-45d4-af19-7ff01442f13a", + "createdTime": "2020-12-17T20:14:31.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87945667-649e-481f-a311-9f879b3a7b0b", + "createdTime": "2020-12-17T20:11:40.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "18b848eb-f5f9-4c7b-a551-9d7a9d050919", + "createdTime": "2020-12-17T20:11:39.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6cd9410-adc4-4cdc-b750-5a4d21cff2fb", + "createdTime": "2020-12-17T20:11:38.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10439fdd-92c3-4712-8aa2-4284870994e9", + "createdTime": "2020-12-17T20:08:34.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7a8eef48-882a-4766-b731-a79aa45e2223", + "createdTime": "2020-12-17T20:08:32.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b975a83f-9d8e-4bd1-9a5f-9983628f45c1", + "createdTime": "2020-12-17T20:08:32.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61f08483-89ab-48bd-a588-7312cc484bce", + "createdTime": "2020-12-17T20:08:02.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "95d28482-f91f-4e31-b455-29a69291da4e", + "createdTime": "2020-12-17T20:08:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f81cdcc-ecd7-407d-8655-c16c652d08af", + "createdTime": "2020-12-17T20:08:00.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e8518d4-6596-4ec6-b658-c2672f18ef96", + "createdTime": "2020-12-17T20:07:58.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "123a2431-67bc-4ad7-9f9c-03ab89ead8a0", + "createdTime": "2020-12-17T20:07:57.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "795b8ce5-7e31-4c13-8943-7e59790e52a3", + "createdTime": "2020-12-17T20:07:57.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "897771e3-8ed8-4aef-89c5-ec2338702589", + "createdTime": "2020-12-17T20:07:56.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8817f5f2-5360-4738-b7ca-216c8e004a71", + "createdTime": "2020-12-17T20:07:55.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4060cb7f-d356-446d-8f27-eeebae6cbe5b", + "createdTime": "2020-12-17T20:07:54.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "243aed22-08fd-44f4-9d7f-223c5312ce59", + "createdTime": "2020-12-17T20:06:59.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0db74e27-9fba-4398-9f9c-b245f4d1c8cf", + "createdTime": "2020-12-17T20:06:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f1722f-8232-4fa4-9c3e-ee9f5ab94c26", + "createdTime": "2020-12-17T20:06:58.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "24b15149-faca-484e-b28a-eee6ecaeb8ae", + "createdTime": "2020-12-17T20:06:57.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "194ce8fe-f3da-47db-9cd5-93acce1b419e", + "createdTime": "2020-12-17T09:11:13.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c54e6221-c744-488a-8df6-e5adf3f6b65c", + "createdTime": "2020-12-17T09:11:12.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0a28eca4-dfe4-49b4-b02d-1e05f0112c03", + "createdTime": "2020-12-17T09:11:12.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4388c5ab-daf5-4da9-9eeb-2e5729c0a691", + "createdTime": "2020-12-17T09:11:11.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ecedb7d-61d4-4176-8f3d-ce8e3d8e8935", + "createdTime": "2020-12-17T09:07:15.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "78bc8e40-8b44-450f-855f-1a3d186810d7", + "createdTime": "2020-12-17T09:07:14.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd204b1-f588-4aef-9409-9b6efa8c9457", + "createdTime": "2020-12-17T09:07:13.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "616c6807-89bb-415b-8f2b-24f40c8c3512", + "createdTime": "2020-12-17T09:07:13.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "298b0899-915b-4b85-a842-d37357f8f1b4", + "createdTime": "2020-12-17T08:59:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8692396a-0f72-42ef-a6a4-3f84223cb1ef", + "createdTime": "2020-12-17T08:59:18.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d8b95612-0b12-4a6c-a846-089500758c95", + "createdTime": "2020-12-17T08:59:17.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "575adccf-5861-4845-9793-36574ffdd83f", + "createdTime": "2020-12-17T08:59:17.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8a14622-12d6-4b6d-a756-52cce65c88d0", + "createdTime": "2020-12-17T08:55:24.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "809d3ad6-94a4-40a6-b91e-7ff23fd75198", + "createdTime": "2020-12-17T08:55:24.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3fb9bfbc-5448-47d4-abdd-a075568da318", + "createdTime": "2020-12-17T08:55:23.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bd427dd3-9986-436a-bf28-56ccd01dc634", + "createdTime": "2020-12-17T08:55:22.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0c90228-6b66-434f-90e8-6d4b6f6c8906", + "createdTime": "2020-12-17T08:46:17.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "18477b5e-57db-4046-a685-152a1fcda513", + "createdTime": "2020-12-17T08:46:16.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "46efc1fd-fe21-4300-a460-0184b8d4d98e", + "createdTime": "2020-12-17T08:46:16.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2bf9e06-dd60-4c63-8c31-7de3eba60cbe", + "createdTime": "2020-12-17T08:46:15.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8d85bd3-94c5-4ef1-acdc-9b19346c1c3e", + "createdTime": "2020-12-17T08:33:05.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3e502217-3054-44e0-9997-6d1ee387f8bc", + "createdTime": "2020-12-17T08:36:45.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d5e72cc-56f2-46d8-8f6d-83d0a796cb36", + "createdTime": "2020-12-17T08:36:44.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8cfa28c3-67b5-48d9-9353-cd9c9ba5e06b", + "createdTime": "2020-12-17T08:36:43.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f24c42c2-3a9b-4a4e-a19d-7d8b21435c1a", + "createdTime": "2020-12-17T08:36:42.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2039ef3f-2388-4e8d-8db1-e45e255716ff", + "createdTime": "2020-12-17T08:21:26.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9fe7b3e-2b44-470b-81b3-b2d21f6f8cbb", + "createdTime": "2020-12-17T08:25:24.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c8d7f13-aeb4-4784-ad33-64e758850bf9", + "createdTime": "2020-12-17T08:33:05.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "549aec3f-d8cc-44e4-b996-35a5b458105a", + "createdTime": "2020-12-17T08:33:04.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8d92be9-c0b1-44fd-84ae-682031ec4de8", + "createdTime": "2020-12-17T08:33:03.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92affdca-1402-473c-8e86-847f2b6b0dd4", + "createdTime": "2020-12-17T08:25:24.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d9873558-0e44-4acc-a56c-e3b139745aee", + "createdTime": "2020-12-17T08:25:22.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37404930-c2ec-4c2c-8fd3-7b07ed72c212", + "createdTime": "2020-12-17T08:25:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7125acd-f3b5-425a-bbcc-489539852dc0", + "createdTime": "2020-12-17T08:21:24.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "927735ba-5135-425e-a01b-c7fa6f2b1611", + "createdTime": "2020-12-17T08:21:22.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "522e8b5d-c29c-42c4-ba36-fd1d28abed00", + "createdTime": "2020-12-17T08:21:16.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ee6766e-a2de-465b-be63-fe689cc5902b", + "createdTime": "2020-12-16T20:05:22.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "09b509df-a8aa-481e-b986-571030f2faad", + "createdTime": "2020-12-16T20:05:12.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d4e0f28-5ee5-4540-9650-899219518f29", + "createdTime": "2020-12-16T20:12:08.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "599582a5-57c9-4fea-bdbc-faad803b5fa1", + "createdTime": "2020-12-16T20:06:49.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "46affe3e-19ba-485b-ab10-f190051eabad", + "createdTime": "2020-12-16T20:05:45.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3cbaa889-9c5d-4335-a1e9-3c867ac4f3bb", + "createdTime": "2020-12-16T20:12:37.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "552b9a99-c493-49bf-87db-2ad1a70ff440", + "createdTime": "2020-12-16T20:12:36.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "55373cb3-72c3-4b49-9796-970f0cc3f7c5", + "createdTime": "2020-12-16T20:12:34.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fd1c94e8-c946-4e9a-ac1f-c6d83615d3cd", + "createdTime": "2020-12-16T20:12:33.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4316407e-eb27-4591-af11-95b346dc3f10", + "createdTime": "2020-12-16T20:12:08.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a3cd4b76-2cd8-4021-801a-34159cda0e84", + "createdTime": "2020-12-16T20:12:07.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1addfd55-da55-4afe-9265-57f3ea1b1a3c", + "createdTime": "2020-12-16T20:12:07.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dda56b7e-6fb9-4d70-a23d-8a288024c0d6", + "createdTime": "2020-12-16T20:06:49.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ecd45ee0-0d67-498c-94ac-f2fcc6a3fd37", + "createdTime": "2020-12-16T20:06:48.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bd0d0615-ae7b-42ab-b925-b25039d8aa3f", + "createdTime": "2020-12-16T20:06:47.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87c24904-6e2e-4dcd-923b-fd52bc8a75b8", + "createdTime": "2020-12-16T20:05:46.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e8f1bbde-23e3-4773-b42b-20915696d3c0", + "createdTime": "2020-12-16T20:05:44.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e94f7ebc-0e37-416f-9d1a-d091f953f224", + "createdTime": "2020-12-16T20:05:43.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c04583e7-5040-488a-a487-ccea42902a71", + "createdTime": "2020-12-16T20:05:23.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f0bd55c0-1ad8-4722-8263-a6de4a46fa44", + "createdTime": "2020-12-16T20:05:20.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "20ffbd26-892e-4b78-935a-55b056ccf52e", + "createdTime": "2020-12-16T20:05:19.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94eb3d95-402d-407b-9741-fefd6432e286", + "createdTime": "2020-12-16T20:05:13.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c8dae370-e7f9-40f9-ac09-038782b1d30a", + "createdTime": "2020-12-16T20:05:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b040eab4-8841-49be-92ff-2e6161ffdb87", + "createdTime": "2020-12-16T20:05:11.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3ba8286-7e1f-4929-b3de-e98ec50e97c1", + "createdTime": "2020-12-16T20:05:08.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "58a8c495-75b4-474c-80d3-5196152eeb5d", + "createdTime": "2020-12-16T20:05:07.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "12ae16cb-b418-477f-9c73-110be6ff2a26", + "createdTime": "2020-12-16T20:05:07.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "53ccc287-b680-461c-9118-356566b55c57", + "createdTime": "2020-12-16T20:05:06.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0b851d8-7b34-4ce9-bffc-4963c7222c76", + "createdTime": "2020-12-16T17:37:38.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e70019a1-0d0c-4741-bbeb-8326641d1b9c", + "createdTime": "2020-12-16T17:37:37.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f159de-a1a4-40f6-aa71-cc6efe5d9515", + "createdTime": "2020-12-16T17:37:36.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a7eccf5-aaeb-4779-b4cc-f28fe6cd0262", + "createdTime": "2020-12-16T17:37:35.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d0c9ab3-abd7-4b00-8fbe-67fe070cd37f", + "createdTime": "2020-12-16T17:34:02.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f1f7090-edb7-4ed4-bc06-5a603d036073", + "createdTime": "2020-12-16T17:34:02.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0e67ddd7-eb00-46ac-aafc-d4b66484ef1e", + "createdTime": "2020-12-16T17:34:01.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "03aa6e5d-77fa-46d8-9617-06f70f66c606", + "createdTime": "2020-12-16T17:34:01.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761061b2-6fc2-4750-a26b-1840eb4ad7fb", + "createdTime": "2020-12-16T17:27:13.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89eb8328-7a04-429b-a82e-eaf75442566d", + "createdTime": "2020-12-16T17:27:12.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf6f5b9-9f5a-4e87-954b-1bf28ab6509d", + "createdTime": "2020-12-16T17:27:11.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b1609865-4cbf-491d-9280-27f597292799", + "createdTime": "2020-12-16T17:27:11.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e927ae7a-2717-46ee-9473-b0e8ee3c247d", + "createdTime": "2020-12-16T17:23:44.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e43fdd60-d1d3-4353-b058-88a21be5a688", + "createdTime": "2020-12-16T17:23:43.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "978b4db7-5981-4c2b-a5e6-9c886e896f6a", + "createdTime": "2020-12-16T17:23:42.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc40a2cd-629d-4813-877f-32d5dd0780be", + "createdTime": "2020-12-16T17:23:41.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4a65a5d-ab09-4fc1-a601-9178b8575ca9", + "createdTime": "2020-12-16T17:13:23.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c44a85ba-3410-447a-972f-58bde62f2142", + "createdTime": "2020-12-16T17:13:22.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25f91160-b6ee-424b-9ddf-201872235508", + "createdTime": "2020-12-16T17:13:21.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59219346-7a2f-46b5-bf46-90bab052cdeb", + "createdTime": "2020-12-16T17:13:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f993cb7-ce37-4fe0-9809-7b8a86db9a05", + "createdTime": "2020-12-16T16:57:23.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be4439aa-15b0-4eea-ae16-d23361d3fc54", + "createdTime": "2020-12-16T17:01:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2926a1ca-791d-4a4c-b272-ab57142d22f1", + "createdTime": "2020-12-16T17:01:06.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7759f9c5-4eed-42ea-b9b4-eb56a3cca475", + "createdTime": "2020-12-16T17:01:06.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "01b6ac49-6bf3-41ff-85e9-b25380761667", + "createdTime": "2020-12-16T17:01:05.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e679fd08-b07e-4fe4-b920-b7f9c4d81124", + "createdTime": "2020-12-16T16:45:44.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7e155c3a-7333-481b-89cf-f5326db5dcb1", + "createdTime": "2020-12-16T16:49:41.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5df29647-fac4-4a35-b1fa-a9ea6212c13e", + "createdTime": "2020-12-16T16:57:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1c4e3799-c0fb-407a-a3ac-ae0ddcf0b7d3", + "createdTime": "2020-12-16T16:57:22.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1f9c4727-7986-409f-99b2-e4a84c63c337", + "createdTime": "2020-12-16T16:57:21.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4499406-3e59-4d37-972b-80250c66f4a6", + "createdTime": "2020-12-16T16:49:38.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "beb769b2-4f4c-4298-a236-a16cc3b96dc4", + "createdTime": "2020-12-16T16:49:37.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b0b70a99-e0b6-4771-9733-df68bcdcdee0", + "createdTime": "2020-12-16T16:49:34.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdcfdd58-472f-4995-bc76-c19a38217012", + "createdTime": "2020-12-16T16:45:42.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8ead6503-bf85-475a-a0d4-3391e67a6fb5", + "createdTime": "2020-12-16T16:45:40.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bea06748-7b01-40db-b8e1-6c1d5cafcc28", + "createdTime": "2020-12-16T16:45:36.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e5a30a4-a2aa-448e-a23b-33015b266ced", + "createdTime": "2020-12-16T10:10:15.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd6c5734-d463-4514-b7b9-6237adb73cf8", + "createdTime": "2020-12-16T10:10:14.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f63d9736-7b8c-4210-b693-8afe57c904d4", + "createdTime": "2020-12-16T10:10:13.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa6c9012-ab4c-4edc-90be-bdf094bff7ad", + "createdTime": "2020-12-16T10:10:13.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "376d60f8-c3ab-43b5-9127-c9ae2f0a42f0", + "createdTime": "2020-12-16T09:58:30.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bb30db51-476a-43e9-b21e-080163b60de2", + "createdTime": "2020-12-16T09:58:30.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "529e5a10-60b3-4e6b-8596-c460ba2845da", + "createdTime": "2020-12-16T09:58:29.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b22a10a6-8748-4ac6-8f0b-b953fc62ca26", + "createdTime": "2020-12-16T09:58:28.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c170b77f-1059-4058-a4d1-f6d075f27ed4", + "createdTime": "2020-12-16T09:42:43.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ccbeff1f-b0ae-4b91-a3bf-1f06cc068c03", + "createdTime": "2020-12-16T09:42:43.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9dceb65-a17c-4b72-b037-78c133a6a19d", + "createdTime": "2020-12-16T09:42:42.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5b3b0607-8af0-4a93-ad5c-1c04fdce94b7", + "createdTime": "2020-12-16T09:42:42.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb558c25-917d-4c3d-9a0e-01f365fa8f05", + "createdTime": "2020-12-16T09:34:36.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5318354a-3323-4989-beac-18ee524e09c2", + "createdTime": "2020-12-16T09:34:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32043475-9dfe-4c48-82c0-e9b125ac9e0e", + "createdTime": "2020-12-16T09:34:34.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc690e93-6ffd-41e6-b6e7-055827f70e32", + "createdTime": "2020-12-16T09:34:33.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6002afcd-3400-430a-bd8b-7070e4296afd", + "createdTime": "2020-12-16T09:08:31.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ae77a9-ab26-4745-ae21-28bac1c41abf", + "createdTime": "2020-12-16T09:08:31.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a9bae51b-1b91-4e6f-906b-a9bfd6e7dd37", + "createdTime": "2020-12-16T09:08:30.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4869dcb-f76c-4404-8e60-148e0a9219e7", + "createdTime": "2020-12-16T09:08:29.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbcf0a9d-6ab3-4ed5-9835-a96992ea3cc3", + "createdTime": "2020-12-16T08:48:47.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17400839-0e27-4c33-86c1-b6ac31bd11a3", + "createdTime": "2020-12-16T08:48:46.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8fa1cfe5-e360-4819-9674-48e169d36372", + "createdTime": "2020-12-16T08:48:46.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc608b97-6194-440a-8f42-f3da9ba6ffa9", + "createdTime": "2020-12-16T08:48:45.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ddfae7a-1f91-418f-995b-80e43f10febc", + "createdTime": "2020-12-16T08:38:44.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5e5d7522-7441-47dd-8197-ffdec59b0044", + "createdTime": "2020-12-16T08:38:44.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc8fd2f-419f-4679-8443-30db4d35d19b", + "createdTime": "2020-12-16T08:38:43.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf9fc5bd-d7dd-4315-b0c4-6609d7cda3c6", + "createdTime": "2020-12-16T08:38:42.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23fc0eef-ce3e-477e-b3e1-61d9e7bbef57", + "createdTime": "2020-12-16T08:29:03.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cfc252ab-16ee-4a03-8645-f5e5eb0e5110", + "createdTime": "2020-12-16T08:29:02.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b98929c0-f55d-48f2-9964-cb475b26fe49", + "createdTime": "2020-12-16T08:29:02.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "183934a0-a3ba-4f27-b6a4-2685214081c7", + "createdTime": "2020-12-16T08:29:01.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba313fcb-21d5-4f6e-949c-0166084088ff", + "createdTime": "2020-12-16T08:23:06.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bc87b35-1e92-49d3-8932-964809a836a9", + "createdTime": "2020-12-16T08:23:06.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac396330-5fe8-4484-b184-4ce917fe59ec", + "createdTime": "2020-12-16T08:23:04.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a2abd210-4c26-4fec-b6a5-b8439817725d", + "createdTime": "2020-12-16T08:23:04.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ca0c55b-6ef2-4ae4-a2a9-0dbaed305920", + "createdTime": "2020-12-15T20:15:37.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1ec9678c-691c-43d7-b09e-bf9532600df7", + "createdTime": "2020-12-15T20:15:36.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "740bc226-7c41-46dc-8160-f55a27e8c1a7", + "createdTime": "2020-12-15T20:15:35.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1f99a0e5-47f3-490b-934f-0aac24a6b70e", + "createdTime": "2020-12-15T20:15:35.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "871b26cb-19f2-4659-a869-d93d8ec095ab", + "createdTime": "2020-12-15T20:12:19.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ab4179a-16e1-48ac-b850-2c82b2870612", + "createdTime": "2020-12-15T20:12:18.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8fd4a2f1-e11a-4872-a363-736f610f0457", + "createdTime": "2020-12-15T20:12:17.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "efb5e291-9502-4bcd-99b9-e29bab03f1fb", + "createdTime": "2020-12-15T20:12:16.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2231c3c3-726c-4050-9463-72834a3d9438", + "createdTime": "2020-12-15T20:11:50.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e40524f7-3c6e-4518-bee4-9d01f82e63da", + "createdTime": "2020-12-15T20:11:49.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e0ab132b-1c3d-431e-8e55-e403b61934b7", + "createdTime": "2020-12-15T20:11:48.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8afd0247-b76b-4393-8fd8-3100a7fe51c9", + "createdTime": "2020-12-15T20:11:47.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8054194b-6e98-408e-9962-2b32900ff0bc", + "createdTime": "2020-12-15T20:06:47.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c1e2ced-7df3-4947-bdd0-6a59091f6367", + "createdTime": "2020-12-15T20:06:45.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a952b1cb-d503-4cb4-b613-3a8f113af433", + "createdTime": "2020-12-15T20:06:43.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1d74bf10-735d-4131-9688-421c39a15caa", + "createdTime": "2020-12-15T20:06:41.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a052766f-8252-4414-940e-382f2776dde3", + "createdTime": "2020-12-15T20:06:41.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1d337188-7df5-4fe5-aacf-1a0a688e55c8", + "createdTime": "2020-12-15T20:06:39.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "26a35a78-0ed3-456b-9611-b1cd749066cd", + "createdTime": "2020-12-15T20:06:36.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9045b945-8f45-43e5-be06-774eef831284", + "createdTime": "2020-12-15T20:06:32.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21aa0998-91fa-41ce-b153-7a05a6d6586b", + "createdTime": "2020-12-15T20:06:02.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b1f8fa18-da67-4c80-bfe5-5bebaed61982", + "createdTime": "2020-12-15T20:06:02.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "974597a5-ebb2-46fd-b2bd-a71051004f2c", + "createdTime": "2020-12-15T20:06:01.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0c3379f-a01a-4ccb-82a0-1f267ee74750", + "createdTime": "2020-12-15T20:06:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ced23829-e176-4dde-9593-f53e281b7ab6", + "createdTime": "2020-12-15T20:05:46.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b9df66a6-cacd-414c-b53b-08c02ebb78d4", + "createdTime": "2020-12-15T20:05:45.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f7c60f8a-4ee2-4164-9e1e-39ff62a8162a", + "createdTime": "2020-12-15T20:05:42.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b07dee7-004b-4a2e-9a0b-a7a6ed9f5dc0", + "createdTime": "2020-12-15T20:05:42.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1752cbf0-6b1d-4e19-a556-5280211b8d15", + "createdTime": "2020-12-15T09:18:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e2457cb-a3f7-4635-b142-35dcb49ad032", + "createdTime": "2020-12-15T09:18:44.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc05d5a2-ee02-456b-a809-19ccc324e938", + "createdTime": "2020-12-15T09:18:43.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fafcdda2-897e-4ec9-93a0-cfdb01b66f21", + "createdTime": "2020-12-15T09:18:42.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "826ab393-4099-450b-b0fd-05f462f00d64", + "createdTime": "2020-12-15T09:15:00.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9bdd6465-43c2-4471-9413-cc4af2cbaad4", + "createdTime": "2020-12-15T09:14:59.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7b01663-9937-4cd7-bc0e-1e5462c2cb7b", + "createdTime": "2020-12-15T09:14:58.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "113c94e3-d49f-408f-992a-1882edf5060c", + "createdTime": "2020-12-15T09:14:57.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9cb4deb-0b4c-4aaf-83c8-1f7f2ea1c145", + "createdTime": "2020-12-15T09:04:06.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bc01276e-8437-43a7-b19d-601d89c1c892", + "createdTime": "2020-12-15T09:04:05.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "009eaf54-3a07-46a8-969e-a689ab4ff5da", + "createdTime": "2020-12-15T09:04:05.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5bd7089b-f0ac-414f-abc2-ed5c36ceda5a", + "createdTime": "2020-12-15T09:04:04.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da58f497-4fee-4111-b6e0-67f44f3e5452", + "createdTime": "2020-12-15T09:00:09.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66a0ae88-92bc-48bb-8516-b6fa716918ec", + "createdTime": "2020-12-15T09:00:08.75Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf4dae37-bfef-4163-bae0-6d056eb2793b", + "createdTime": "2020-12-15T09:00:08.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e87a25f-af39-4d27-a40c-7a811e09107c", + "createdTime": "2020-12-15T09:00:07.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4d2b141-d372-4906-80a6-05113d1ae722", + "createdTime": "2020-12-15T08:50:44.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a06f5988-2d42-405c-b97f-8c7dab137b2e", + "createdTime": "2020-12-15T08:50:43.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1628ce8-70d9-46fe-886d-f6895ed4c6ac", + "createdTime": "2020-12-15T08:50:43.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "82ebbecb-27c2-46e8-b371-b3f96f6ab1ab", + "createdTime": "2020-12-15T08:50:42.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef4958b2-f4c5-47a2-acbd-f82c1e8a99b5", + "createdTime": "2020-12-15T08:35:37.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1be057c6-e7fd-46c8-a6f5-5ad462d45e66", + "createdTime": "2020-12-15T08:35:36.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67f9fa90-9a96-489b-9ed0-b284213d81b7", + "createdTime": "2020-12-15T08:35:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e760e518-2c34-4128-b559-4bf114ff2427", + "createdTime": "2020-12-15T08:35:34.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd53f617-b376-4a44-91b9-d93054d41663", + "createdTime": "2020-12-15T08:31:33.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7a527e8b-35bc-471e-bb01-8c8d38dd9053", + "createdTime": "2020-12-15T08:31:33.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca28843-4633-453e-a0bc-80fce622b15d", + "createdTime": "2020-12-15T08:31:32.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdca9fd9-735f-4622-81bd-378a2ac04de1", + "createdTime": "2020-12-15T08:31:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff27d1b-e37d-4c53-8d75-4187d695056a", + "createdTime": "2020-12-15T08:23:55.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dac40d6-cff6-4626-aad2-b87ae9ed6ba8", + "createdTime": "2020-12-15T08:23:55.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "68ecb4ac-908d-4419-9165-fa88a140d1b9", + "createdTime": "2020-12-15T08:23:54.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "21af922e-0e91-47e7-8baa-0b5f94d8e25d", + "createdTime": "2020-12-15T08:23:54.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7dcfc795-24d0-4bec-af06-8974dc1cd49d", + "createdTime": "2020-12-15T08:20:52.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd26f148-54fe-45cb-8dba-befdeafb7603", + "createdTime": "2020-12-15T08:20:51.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f02260e1-8ba6-4bfa-9555-c6b6e76f21e5", + "createdTime": "2020-12-15T08:20:50.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3c6b410-7ace-4639-adb4-e71498ceb10e", + "createdTime": "2020-12-15T08:20:49.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5820d88b-5d9c-4d28-855f-226e16c543ac", + "createdTime": "2020-12-15T01:34:48.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57bb55e8-d848-4f30-bc0c-ce64ac6e56ac", + "createdTime": "2020-12-15T01:34:48.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7c875492-e765-4f42-8392-16b882233975", + "createdTime": "2020-12-15T01:34:47.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "724a18c2-99a1-43e1-be86-9efc81658462", + "createdTime": "2020-12-15T01:34:47.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa2c1fa5-b5b3-4c28-851a-4f19fdc31364", + "createdTime": "2020-12-15T01:34:46.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bd411ea6-d52c-4e7f-aa0f-9193bfbc9a46", + "createdTime": "2020-12-15T01:34:46.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a159427-a55f-4aaf-b7d4-ddc61e9ea730", + "createdTime": "2020-12-15T01:34:43.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ec71e2e0-ca5d-40ea-bece-967657b3513e", + "createdTime": "2020-12-15T01:34:42.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c2d58161-22f6-4587-8453-f2c15c102038", + "createdTime": "2020-12-15T01:34:42.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3718aa43-3423-4082-883f-833f906366c7", + "createdTime": "2020-12-15T01:34:42.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "252407cf-f2b4-4820-8b66-70d764bc6d85", + "createdTime": "2020-12-15T01:34:41.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "52d96f56-5e37-4967-ab2a-5f4dbdffbb68", + "createdTime": "2020-12-15T01:34:41.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10bf1723-3e9a-41d5-b229-67f7dfbdcecf", + "createdTime": "2020-12-15T01:17:02.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f03a4f5c-d7d7-4d8c-925a-af5f2f4a7880", + "createdTime": "2020-12-15T01:17:02.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7d990d16-ba32-45c2-aad3-3e6204fd61cb", + "createdTime": "2020-12-15T01:17:01.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "516d7478-eb6e-4aba-b660-50c6564331fd", + "createdTime": "2020-12-15T01:17:01.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7622b244-294f-422c-bdb7-21aac162f923", + "createdTime": "2020-12-15T01:17:00.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "69736d3e-f632-49d7-998c-1886cac797f4", + "createdTime": "2020-12-15T01:16:59.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7920b927-0fd6-42da-aeb5-09ef0e0a144f", + "createdTime": "2020-12-15T01:16:57.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f3eede78-471d-4cc2-9631-2d2b7e7f35b1", + "createdTime": "2020-12-15T01:16:56.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e4fdb3d4-69df-4dd7-8a84-aa10bcb510d6", + "createdTime": "2020-12-15T01:16:55.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "780f534b-2f98-4c64-a3de-e7f907b822e9", + "createdTime": "2020-12-15T01:16:55.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "06f9c4ca-0006-4536-97a7-28feb71a395f", + "createdTime": "2020-12-15T01:16:54.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c1a487bb-6fcd-41bc-bbad-ed00cbe8bc39", + "createdTime": "2020-12-15T01:16:48.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71a2b349-a71c-4255-acbd-c4176b4cedb8", + "createdTime": "2020-12-14T20:13:05.831Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "457a5634-3e14-49c0-98e9-a7692274fa01", + "createdTime": "2020-12-14T20:13:05.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d3cfee47-ee9a-474d-9f65-d547de5481da", + "createdTime": "2020-12-14T20:13:04.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "918c8e33-f9bf-4321-8379-196b3763a9df", + "createdTime": "2020-12-14T20:13:04.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ce3a2f4-35cb-42e6-9ca2-2990f169a858", + "createdTime": "2020-12-14T20:12:53.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3c942769-5d5c-46e8-a896-3f622afa1587", + "createdTime": "2020-12-14T20:12:53.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "905a0ec5-6dda-445c-8832-ba391ca6d22e", + "createdTime": "2020-12-14T20:12:53.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3db112c1-3933-45f8-a8aa-2eff0ff9200a", + "createdTime": "2020-12-14T20:12:52.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "20a9451c-b3af-454b-9b9f-f02578a966d1", + "createdTime": "2020-12-14T20:07:11.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfde0cd3-58ae-475b-93cc-4cb982f761b2", + "createdTime": "2020-12-14T20:07:11.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9f5d2d52-364f-47f6-b707-a2069f9de4f4", + "createdTime": "2020-12-14T20:07:10.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "229da172-9c4f-463c-89d8-950dd73230bc", + "createdTime": "2020-12-14T20:07:09.135Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06825b74-0417-4293-9b8c-8c268f2507ee", + "createdTime": "2020-12-14T20:04:57.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "555352b8-4a6d-4225-b0da-ecc5155be98e", + "createdTime": "2020-12-14T20:04:57.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f80273e4-ccec-4741-93c1-91f818928dc4", + "createdTime": "2020-12-14T20:04:56.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7dc79633-5dd8-444a-b928-667c0749aade", + "createdTime": "2020-12-14T20:04:55.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c09b814-fc99-4536-a448-f588c740ba36", + "createdTime": "2020-12-14T20:04:55.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "42371b02-ab31-499d-9411-25e40458ab59", + "createdTime": "2020-12-14T20:04:54.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8f8f6c10-5d06-429d-87e9-c4267bba2576", + "createdTime": "2020-12-14T20:04:54.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a6f59a81-9f97-4d06-9b06-925951683bf6", + "createdTime": "2020-12-14T20:04:54.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "360562bf-a814-4cb7-b449-600fede81374", + "createdTime": "2020-12-14T20:04:53.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "461fce25-12e3-4a44-98b3-25c63d525fbc", + "createdTime": "2020-12-14T20:04:53.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d6f31bfa-6fd1-4905-8507-962b866f90e4", + "createdTime": "2020-12-14T20:04:53.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6fc577b5-c3e2-4887-80a6-2e6afa64d90b", + "createdTime": "2020-12-14T20:04:52.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5a082c8c-43d6-4ee1-a55a-636095399ded", + "createdTime": "2020-12-14T20:04:52.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e1d1ea0d-825a-4855-bb33-7e5986e26e60", + "createdTime": "2020-12-14T20:04:51.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2b2e208-9d1d-4237-a2d5-99b85f92162e", + "createdTime": "2020-12-14T20:04:51.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "47b3ef36-95d2-41a2-a564-b8179ef2af8f", + "createdTime": "2020-12-14T20:04:50.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "162eaa3f-e233-4313-bd75-1ee56abff5aa", + "createdTime": "2020-12-14T09:21:02.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "057883ac-2ab2-4caf-af62-3724ca2e807d", + "createdTime": "2020-12-14T09:21:01.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "21430ef3-756d-44b7-836b-d3e309d8094a", + "createdTime": "2020-12-14T09:21:01.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d290cee1-e919-46e3-a78c-919592f9588f", + "createdTime": "2020-12-14T09:21:00.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "718bae15-dd8c-4f8f-8ef3-427a991ff001", + "createdTime": "2020-12-14T09:16:44.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c1e9087-de34-41b3-8777-c3e2deffa79b", + "createdTime": "2020-12-14T09:16:44.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c648cecd-0082-4c61-9c64-88d4bd8106db", + "createdTime": "2020-12-14T09:16:43.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cea7a6af-4799-4c76-8822-710a1662a19f", + "createdTime": "2020-12-14T09:16:43.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af240be7-e26e-4a54-a612-d3c32771480b", + "createdTime": "2020-12-14T09:07:04.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dea74df3-14e1-433b-a145-80c3d1ed73ca", + "createdTime": "2020-12-14T09:07:03.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7a4598c-e7d9-4f0d-982d-0a760dd9e8f2", + "createdTime": "2020-12-14T09:07:02.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a16aa85f-4d80-4789-9eac-de64dd269dce", + "createdTime": "2020-12-14T09:07:01.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a775776-2ae3-492a-8533-fd2a92185cf2", + "createdTime": "2020-12-14T09:03:04.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "49992a84-3ee2-4ea0-9de0-a14cdb9abacc", + "createdTime": "2020-12-14T09:03:03.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fa0509c3-c475-4953-bfa3-8da77a5762f0", + "createdTime": "2020-12-14T09:03:02.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "028c7a9a-febf-4a2d-9b2b-ec97f96236fb", + "createdTime": "2020-12-14T09:03:01.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d2eb2aa-cb68-461f-a78d-989c29bb1fd6", + "createdTime": "2020-12-14T08:48:06.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fff97041-c61a-40a4-97e0-5de93e90ca92", + "createdTime": "2020-12-14T08:48:05.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75af087a-8785-4334-9ea0-2901e452c00c", + "createdTime": "2020-12-14T08:48:05.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "70bcfcb5-e231-435e-8671-eb1d09c58058", + "createdTime": "2020-12-14T08:48:04.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9a981a17-d308-4e3f-927a-529737b118a2", + "createdTime": "2020-12-14T08:37:51.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bc65e3d2-34e8-457e-bb69-5b745c35446f", + "createdTime": "2020-12-14T08:37:49.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cff79243-88ea-47f8-b035-bd3f99f75a25", + "createdTime": "2020-12-14T08:37:49.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "12f6a212-b9b7-4dec-bfeb-2f6fdeb87d1c", + "createdTime": "2020-12-14T08:37:48.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bc8c9bd-3e4b-4638-9416-029bbbaa922f", + "createdTime": "2020-12-14T08:33:54.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e93c2c39-2db3-483a-9479-af72c6cb9686", + "createdTime": "2020-12-14T08:33:53.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c70ae3e-77f6-47ba-af29-892783dd9fa7", + "createdTime": "2020-12-14T08:33:53.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2b2d6cfa-fb6d-444d-8380-5cb76acba164", + "createdTime": "2020-12-14T08:33:52.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "210ffcd5-ee57-4306-af02-ad8710dfebc3", + "createdTime": "2020-12-14T08:25:47.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9718eba1-3a2e-4e8c-952d-9d62c0aa544c", + "createdTime": "2020-12-14T08:25:46.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1f2c42bb-7e57-4f75-abc7-cf32485e27ba", + "createdTime": "2020-12-14T08:25:46.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa33071d-9898-4f6e-8a84-0065ddda841c", + "createdTime": "2020-12-14T08:25:44.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a46db5c-00db-4031-83f8-b8113a5cd5c1", + "createdTime": "2020-12-14T08:21:51.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f84a5fc4-297a-4b45-b612-146b37336335", + "createdTime": "2020-12-14T08:21:51.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "997cce26-8835-470c-aab0-48c75374501f", + "createdTime": "2020-12-14T08:21:50.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "559bba31-aadf-4cb6-b80e-8cc2eec84489", + "createdTime": "2020-12-14T08:21:49.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6674db88-c741-495a-a6a3-0f1897c2122e", + "createdTime": "2020-12-11T20:16:07.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "323feec6-4e33-4962-921f-7e5fd0eddd73", + "createdTime": "2020-12-11T20:16:06.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "46beb96b-8ab5-44e1-9074-a52409f3ac56", + "createdTime": "2020-12-11T20:16:06.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6ef02959-fc1c-40c4-bcfc-9f529cbcc81a", + "createdTime": "2020-12-11T20:16:05.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29cdd603-f4b6-4148-a08d-d69fa3b12c63", + "createdTime": "2020-12-11T20:10:07.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2788679d-1257-4616-bf04-fbb62e4be72b", + "createdTime": "2020-12-11T20:10:07.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aa32fe46-3ef0-4cc5-ba8e-12155cdadc0d", + "createdTime": "2020-12-11T20:10:06.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d16305a1-2305-44e0-88fb-cdb326796c8c", + "createdTime": "2020-12-11T20:10:05.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1dd54793-4fc3-4d79-99ed-e0b4fb251dc3", + "createdTime": "2020-12-11T20:09:47.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6abe68ac-4026-4b28-b5b9-33bdf67c9aa9", + "createdTime": "2020-12-11T20:09:46.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0b63d6a2-2fea-4d6f-b83e-c6f2107070e9", + "createdTime": "2020-12-11T20:09:46.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "69f058b0-6649-4bf3-b2f4-464c6dc1ba3f", + "createdTime": "2020-12-11T20:09:45.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af5ed77a-f6fa-416f-8f7a-e3e894c63664", + "createdTime": "2020-12-11T20:06:03.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9f11a4ce-9f06-4be2-8af5-42a8e6f87d8d", + "createdTime": "2020-12-11T20:06:02.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b0a55c20-ac4f-46db-a301-4ef59c65dbcb", + "createdTime": "2020-12-11T20:06:02.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "38db91ef-ba7f-41a6-9174-452589fa0609", + "createdTime": "2020-12-11T20:06:01.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d56fd30-0466-4620-8c3e-6a05e82daff2", + "createdTime": "2020-12-11T20:05:46.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5fcea47b-41e8-490c-8ba6-e2474e344b54", + "createdTime": "2020-12-11T20:05:45.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1a09803d-a585-4b35-90a6-94ee4cf3ecd3", + "createdTime": "2020-12-11T20:05:44.591Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6e0104e8-cbfd-41f4-a147-65aa81e4e265", + "createdTime": "2020-12-11T20:05:43.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5b0fed6-e7dd-479b-ac66-a68acc45d297", + "createdTime": "2020-12-11T20:04:54.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "268bc282-2c42-4f21-a6a6-6b1c74a8ba74", + "createdTime": "2020-12-11T20:04:54.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "874200dc-74a4-4fb3-a8df-9eb3b11763be", + "createdTime": "2020-12-11T20:04:53.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "339e52e4-eca8-43e4-bd0e-20044abb3d58", + "createdTime": "2020-12-11T20:04:53.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7af59732-b4b0-4315-863f-b92a767326ba", + "createdTime": "2020-12-11T20:04:53.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c16c8331-c450-42f3-89f8-87c187c01c6c", + "createdTime": "2020-12-11T20:04:52.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "457e2463-2ba7-424b-84b2-964d5e879eff", + "createdTime": "2020-12-11T20:04:52.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1216f6c8-c31f-42f7-bce1-b552bff57680", + "createdTime": "2020-12-11T20:04:51.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9dd1a38d-0d3a-45ea-9e0e-445f52f0a68c", + "createdTime": "2020-12-11T09:26:49.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "65bdcd46-20f6-4a9b-baeb-cfd3bff62f1d", + "createdTime": "2020-12-11T09:26:48.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1c2208ba-6bfa-4961-ba97-f49b7f8d31f6", + "createdTime": "2020-12-11T09:26:47.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e123a34-5587-43a7-979d-fbec04d42c5c", + "createdTime": "2020-12-11T09:26:45.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "231082df-794b-4ba1-af65-441c740ac689", + "createdTime": "2020-12-11T09:23:04.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "60582cbd-f21a-434d-8bfd-dd14c086a088", + "createdTime": "2020-12-11T09:23:03.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "af2f38b8-1f3c-4715-991e-f99fc2b18461", + "createdTime": "2020-12-11T09:23:03.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8b7dc13-55e8-4bc7-8592-c38884e663cf", + "createdTime": "2020-12-11T09:23:02.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16c2d98a-d824-4824-a2be-6f2f52f1c01c", + "createdTime": "2020-12-11T09:08:43.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1d621dc4-aaec-47a8-8f95-21d45a7e9f50", + "createdTime": "2020-12-11T09:08:42.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "28523e80-077c-41e7-9c41-0d5f2c5aa290", + "createdTime": "2020-12-11T09:08:42.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "622bd7fb-c717-422b-8f4d-e9da2270b6cc", + "createdTime": "2020-12-11T09:08:41.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4190ce2d-2087-46aa-aeb7-ae84e4f95c2c", + "createdTime": "2020-12-11T09:04:34.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "355ddec4-3f50-4e15-aab0-2926ea7563e3", + "createdTime": "2020-12-11T09:04:33.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "de0a41df-5c9f-4850-af5d-d93d8362f3db", + "createdTime": "2020-12-11T09:04:32.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dda0e01e-6c8f-4e61-9e83-d5219cb0f4ad", + "createdTime": "2020-12-11T09:04:32.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85f9aa5a-c1f0-44d7-b1bf-15ab4afc7507", + "createdTime": "2020-12-11T08:52:08.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e50e85d9-ae30-497c-9692-1df60e22c4ca", + "createdTime": "2020-12-11T08:52:07.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "054e1a5e-a8b8-4dcd-9cd5-e006e88f8579", + "createdTime": "2020-12-11T08:52:06.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b728421-d5af-4950-98c6-2905ba0d7611", + "createdTime": "2020-12-11T08:52:05.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf259b30-6de9-476e-90c7-b57b22100fd3", + "createdTime": "2020-12-11T08:40:20.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f45b720f-0d4e-4964-a5f4-3ac39c6070bb", + "createdTime": "2020-12-11T08:40:19.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a2fd918c-8344-434a-bc2b-e772439814af", + "createdTime": "2020-12-11T08:40:18.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "23b3cc51-5998-4c86-a576-9a19d9bb4ad5", + "createdTime": "2020-12-11T08:40:18.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ed20556-947f-4e78-a8d0-e270ac57a78f", + "createdTime": "2020-12-11T08:36:02.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e1875ab3-e102-42a8-ae6f-9f8cbb741f24", + "createdTime": "2020-12-11T08:36:02.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fc79c0d3-2574-4142-ac7b-e81312831741", + "createdTime": "2020-12-11T08:36:01.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8040b951-1d24-4377-8ff2-a9ebaa74f10d", + "createdTime": "2020-12-11T08:36:00.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2f947b4-d4c6-493b-9523-930b4278e43e", + "createdTime": "2020-12-11T08:24:47.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c3a31f4-d25c-4c14-8293-56d7bf4496bb", + "createdTime": "2020-12-11T08:24:45.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67cf88e2-30d5-423d-b410-73c184789c53", + "createdTime": "2020-12-11T08:24:44.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a68e1eb-a876-481b-a3b9-dad9b9dfe38a", + "createdTime": "2020-12-11T08:24:43.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9784604-d9f3-4342-af87-6a1e7038a676", + "createdTime": "2020-12-11T08:21:12.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "af1388bc-5562-4b89-a957-71316fa6b89d", + "createdTime": "2020-12-11T08:21:12.172Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a2664d7-48a7-47f2-9ea6-b393a0069f6d", + "createdTime": "2020-12-11T08:21:11.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e013b426-aa34-45e7-93e9-df3150fc51c1", + "createdTime": "2020-12-11T08:21:10.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0cfa724c-86d3-45a2-a526-b7ce600210b2", + "createdTime": "2020-12-10T20:16:34.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6c77e2c8-1311-44bd-bfd7-81ee949ddd39", + "createdTime": "2020-12-10T20:16:33.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b16046cd-4f20-42de-af52-1f4e3a2f34b7", + "createdTime": "2020-12-10T20:16:33.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5da999b3-2d6a-43ba-a6a6-f57c96e218c7", + "createdTime": "2020-12-10T20:16:32.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b507a64a-d316-4ece-ac2c-af1026cc106b", + "createdTime": "2020-12-10T20:14:24.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "089a8c2d-7ac8-4cdb-ae82-c4f98268ec7c", + "createdTime": "2020-12-10T20:14:23.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "eef380f0-ba2c-47b1-bbfc-73d8dfeb36b6", + "createdTime": "2020-12-10T20:14:23.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ef845263-1904-46f9-9dc4-fa729f36d286", + "createdTime": "2020-12-10T20:14:22.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98094bcf-c70c-4236-8463-c53f834aa85e", + "createdTime": "2020-12-10T20:12:16.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2e080316-64df-415a-a3e1-240dd46da931", + "createdTime": "2020-12-10T20:12:15.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57cff96f-9e75-4ca0-b760-0bb1a350b0d1", + "createdTime": "2020-12-10T20:12:14.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4d2541f2-ab7c-4773-92eb-2b3f0be2c01d", + "createdTime": "2020-12-10T20:12:14.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d9685a5-98db-446a-bf94-0d3bdac2d9b0", + "createdTime": "2020-12-10T20:09:30.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9dd35114-7bab-437a-ac5b-6b0dbdfd0563", + "createdTime": "2020-12-10T20:09:29.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e766f356-ee8a-4233-a95e-2aa7c09036d0", + "createdTime": "2020-12-10T20:09:28.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f6304467-14be-42ca-8bfe-32f4797b7c60", + "createdTime": "2020-12-10T20:09:26.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffcfe14-f400-4303-9810-ba84bd72778c", + "createdTime": "2020-12-10T20:09:26.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0cf6f60b-c204-4f1e-a37e-dfa18190ae05", + "createdTime": "2020-12-10T20:09:25.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0ea9709a-c4a0-4519-b963-7056edbfaf6b", + "createdTime": "2020-12-10T20:09:24.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "95b94166-8ab0-4916-8fb9-758119382c2f", + "createdTime": "2020-12-10T20:09:23.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "41b1e5aa-968e-4306-be2d-abc95de3b8bc", + "createdTime": "2020-12-10T20:08:42.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "907acbb4-bad0-443f-87be-a4a2a4058d92", + "createdTime": "2020-12-10T20:08:41.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4caa8061-ba94-4eec-b226-e090ffb4e2e5", + "createdTime": "2020-12-10T20:08:41.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8360ab35-c819-47a7-b842-68f2acdbbcff", + "createdTime": "2020-12-10T20:08:40.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b10fcbac-849e-4c43-8df8-b63bd0c694c0", + "createdTime": "2020-12-10T20:08:23.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "01c8a5d6-b534-4d99-8821-c73b8e962677", + "createdTime": "2020-12-10T20:08:22.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b1ba594a-5ea8-4eb7-9a66-9c6ac9b10bf4", + "createdTime": "2020-12-10T20:08:22.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a8362289-a175-4d2b-b39d-1a0547a8e31c", + "createdTime": "2020-12-10T20:08:21.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88cc613d-b00e-4671-873f-dbf37a483778", + "createdTime": "2020-12-10T09:26:41.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "79927c5a-2f8d-469a-b5f3-c149c4db322b", + "createdTime": "2020-12-10T09:26:41.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4cbe266-4188-4bc4-862b-1d9fed278320", + "createdTime": "2020-12-10T09:26:40.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "73af6742-928e-4b6b-b30a-95b931ac990e", + "createdTime": "2020-12-10T09:26:39.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae29a184-4754-4e64-952e-889a261834d3", + "createdTime": "2020-12-10T09:22:29.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e46ef07f-e85d-4f3e-91b6-2e52e2d7f1a3", + "createdTime": "2020-12-10T09:22:28.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2236a7e8-1a2c-4c85-b56b-76bd364c13e7", + "createdTime": "2020-12-10T09:22:27.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42fdb47b-b6e3-42f6-9b30-134899c92321", + "createdTime": "2020-12-10T09:22:27.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "26f1b315-b1ea-4763-bb9e-d5802ec86967", + "createdTime": "2020-12-10T09:08:53.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "31d17407-cb4a-474c-b093-51983c70f212", + "createdTime": "2020-12-10T09:08:52.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0beebcde-a8bd-4859-b6ab-7098a157b2a1", + "createdTime": "2020-12-10T09:08:51.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "64f6c2ad-8d83-4e35-92cc-acc74f21b37b", + "createdTime": "2020-12-10T09:08:50.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23c0ce4d-8d08-4e37-911a-d2f6895efef1", + "createdTime": "2020-12-10T09:05:17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "aff9ef32-4424-4842-a82d-6d8eb5c733c7", + "createdTime": "2020-12-10T09:05:16.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c4407f29-2ae9-40a0-a545-7e7b28559af7", + "createdTime": "2020-12-10T09:05:15.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fecd3831-b120-4efe-8248-a342b04ce970", + "createdTime": "2020-12-10T09:05:15.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f00c20d1-99c6-4bdb-9ff4-11f128913994", + "createdTime": "2020-12-10T08:51:34.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be9443a6-15a8-45f6-890b-3a1eb21fb7ac", + "createdTime": "2020-12-10T08:51:33.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a8082a24-ce57-4b80-b18a-272f2fa8ddef", + "createdTime": "2020-12-10T08:51:33.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a2b07520-b3aa-46f5-ab3d-61e2f2ee974c", + "createdTime": "2020-12-10T08:51:32.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a57bd532-c799-456c-8ab7-1fbd25159c61", + "createdTime": "2020-12-10T08:37:08.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "226e2f03-fcfa-490f-ab3a-c871e8153825", + "createdTime": "2020-12-10T08:37:07.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b1a6fffb-4848-4f66-a9d0-c31cda788be5", + "createdTime": "2020-12-10T08:37:06.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "127a860c-7111-4893-90cd-6e06a73b8e4c", + "createdTime": "2020-12-10T08:37:06.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32c9beb6-b68c-444f-931a-f2b04286f11e", + "createdTime": "2020-12-10T08:33:17.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7948c821-fa94-4973-a6e8-620a991e5fbc", + "createdTime": "2020-12-10T08:33:16.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3144df04-615c-45d6-85b6-d57fdc5b6cde", + "createdTime": "2020-12-10T08:33:16.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49c3393e-0cc4-418c-9186-da2b1faebc95", + "createdTime": "2020-12-10T08:33:15.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86ceb361-1245-44b5-a94c-d8a474e6b257", + "createdTime": "2020-12-10T08:24:22.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8a258a43-58da-4e59-a2bc-9065b41a3aa3", + "createdTime": "2020-12-10T08:24:21.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "03347991-3c37-4f53-9688-284f305393ce", + "createdTime": "2020-12-10T08:24:21.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "925abd50-4e00-42c7-89ab-0820a56d2cd4", + "createdTime": "2020-12-10T08:24:21.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "781fcec3-3b6e-43aa-981e-bc5d3cf6d944", + "createdTime": "2020-12-10T08:21:25.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf6d3d34-a79c-4c44-97a5-63f423f32984", + "createdTime": "2020-12-10T08:21:24.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b9cb64f3-db35-4ad5-a7d8-70bf35c475b4", + "createdTime": "2020-12-10T08:21:24.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ece728d-be21-496e-8d8f-7a8547712bfc", + "createdTime": "2020-12-10T08:21:23.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d28b1d93-864f-49c1-8cfd-23d864f257fe", + "createdTime": "2020-12-09T20:20:02.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "69fcc0dd-077d-4849-ab6c-40e85fa9f0bc", + "createdTime": "2020-12-09T20:20:02.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "17469905-ea68-4602-9bd3-c62b7b39841b", + "createdTime": "2020-12-09T20:20:01.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "555425c0-baaf-4d3f-a4a4-eb1c569f5b48", + "createdTime": "2020-12-09T20:20:00.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eeba2acd-0670-4ed0-9358-d5d8deb2c311", + "createdTime": "2020-12-09T20:13:54.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "efbaf6c4-d188-4510-994f-01a2fd3fccc9", + "createdTime": "2020-12-09T20:13:54.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cfdafb69-7c4a-42f0-bd07-5fa235dec0e6", + "createdTime": "2020-12-09T20:13:53.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9d842031-67fb-45d9-bd42-2395e56489d8", + "createdTime": "2020-12-09T20:13:52.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a98dc58-fe91-428a-90c1-01c1eab78e17", + "createdTime": "2020-12-09T20:10:23.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c384a966-f6df-43ae-83de-d388e9445862", + "createdTime": "2020-12-09T20:10:22.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4b4261bb-d06c-41fb-a481-98ab9d4e9b41", + "createdTime": "2020-12-09T20:10:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6eb070dd-4c21-46c0-81a9-ddc44d34e3f3", + "createdTime": "2020-12-09T20:10:20.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "132464d9-cf57-41a3-8096-2fe293c0f866", + "createdTime": "2020-12-09T20:05:19.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9f33651d-c3c3-4d4a-b751-b7f660e84533", + "createdTime": "2020-12-09T20:05:18.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "acf54ffb-d63e-41e6-a807-bc25735cc4a7", + "createdTime": "2020-12-09T20:05:17.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6495e931-8acf-423a-b518-6e8d9200405e", + "createdTime": "2020-12-09T20:05:16.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0444a12f-bff7-4b2c-bad2-05e9f7b5df52", + "createdTime": "2020-12-09T20:05:15.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "24e10217-659b-4701-b23b-2269e6a18734", + "createdTime": "2020-12-09T20:05:14.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bedcccc2-9a74-4c88-9692-ad0b0c2f6c45", + "createdTime": "2020-12-09T20:05:14.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ffc0c297-6f5a-4595-8d12-60a92e9898a1", + "createdTime": "2020-12-09T20:05:13.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9ac3065f-8a32-44cf-8a9b-76060897419e", + "createdTime": "2020-12-09T20:05:13.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b8d1266d-4f17-4b80-94bf-59bd63c05f27", + "createdTime": "2020-12-09T20:05:13.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9498de24-9ca4-4bfe-972b-565e4ce3f7ae", + "createdTime": "2020-12-09T20:05:13.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1e666825-4768-4531-a776-00ef530daad0", + "createdTime": "2020-12-09T20:05:12.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b4ce454-45a5-4040-8623-bff9e636112b", + "createdTime": "2020-12-09T20:05:12.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77040a77-23d9-4ba8-abe4-e078d17bf920", + "createdTime": "2020-12-09T20:05:12.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "29c67b57-2943-4acc-b91a-f2cfd1d739d2", + "createdTime": "2020-12-09T20:05:11.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "afe11669-09c0-434c-b5d9-dcef7696a9d3", + "createdTime": "2020-12-09T20:05:09.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1b6cc90-aa7a-4e49-bf45-8307204f9a72", + "createdTime": "2020-12-09T09:37:26.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b209e60a-df5c-464a-b99b-d21056427ea8", + "createdTime": "2020-12-09T09:37:25.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ffb5299-e30e-4dfb-b5b5-d8037a5e57be", + "createdTime": "2020-12-09T09:37:24.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d13a610-dc26-4ab5-b10e-890bb7eb8fdd", + "createdTime": "2020-12-09T09:37:23.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b36e048c-2159-41f9-92fc-3ddcce5aed4d", + "createdTime": "2020-12-09T09:33:49.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5743ea4d-c639-47ff-9c62-9f59c5603033", + "createdTime": "2020-12-09T09:33:48.496Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cef63a6e-070d-4e1f-833c-85b90cd75f16", + "createdTime": "2020-12-09T09:33:47.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8bbf2478-9501-4b64-bb06-ed6a33c5adf0", + "createdTime": "2020-12-09T09:33:46.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfd80195-b6fb-4ab5-b108-758eb73b86b4", + "createdTime": "2020-12-09T09:20:02.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0b07748e-3014-4a93-afac-ccfd205f2e4c", + "createdTime": "2020-12-09T09:20:01.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b0f8a7ca-a702-4651-be0c-76c47679fa14", + "createdTime": "2020-12-09T09:20:00.449Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fdcc596d-d4df-4ed3-9d9c-ab46e4d69251", + "createdTime": "2020-12-09T09:19:59.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f984f2f-65a9-4cab-b0b0-ae1fdf334eca", + "createdTime": "2020-12-09T09:16:10.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8868dc3c-31e7-4233-bc02-1b2a2327d788", + "createdTime": "2020-12-09T09:16:09.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe8966d1-8d95-4ab7-875b-d189793dbfb0", + "createdTime": "2020-12-09T09:16:09.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96694283-affc-4422-9307-a6839af40591", + "createdTime": "2020-12-09T09:16:08.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a4a7a12-2dc7-4e75-938b-5cf06af8b5f4", + "createdTime": "2020-12-09T09:01:39.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5d6e5df5-8ce2-41b4-9a42-27e2cfc8e606", + "createdTime": "2020-12-09T09:01:38.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff8ed15a-9574-477c-9241-ef59d9d8bcc2", + "createdTime": "2020-12-09T09:01:37.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4ae1daa0-0667-4f8c-8227-3c88469e1841", + "createdTime": "2020-12-09T09:01:36.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21b13746-6885-4df1-aa78-4805d157caa9", + "createdTime": "2020-12-09T08:40:08.404Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b69c14b1-a5e3-419a-addf-f914bc8a4405", + "createdTime": "2020-12-09T08:40:07.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "98e155b8-1d42-4175-a7f4-072cb8d693ca", + "createdTime": "2020-12-09T08:40:07.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c4ef182-9d3c-443b-81c5-5ecd751c8d07", + "createdTime": "2020-12-09T08:40:06.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9657d884-8633-41f7-a037-b55e8111c132", + "createdTime": "2020-12-09T08:36:20.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23a867dc-9729-43c8-b13c-e06088740de9", + "createdTime": "2020-12-09T08:36:20.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "73edd33e-be96-441f-8422-048078725f8f", + "createdTime": "2020-12-09T08:36:19.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "44ee3e04-0c6e-47cf-b418-b29a11d0fe32", + "createdTime": "2020-12-09T08:36:18.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f179aa7-ff9e-4bb8-8e82-ff7eb3d7c1ce", + "createdTime": "2020-12-09T08:24:52.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9dafc41f-a96a-459a-8632-e3d97a9e93e7", + "createdTime": "2020-12-09T08:24:51.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f382c5ea-d8a8-49f5-858f-05250d5e749c", + "createdTime": "2020-12-09T08:24:50.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8bd6f638-9fae-4c28-a69f-57379e2d024c", + "createdTime": "2020-12-09T08:24:48.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03ce5f7f-100c-40ff-87d7-14835d252b4a", + "createdTime": "2020-12-09T08:21:03.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f3b79be6-17ce-47d4-9339-f5d5e587d96f", + "createdTime": "2020-12-09T08:21:02.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "06ab766f-bd11-4fff-aadc-018bffb17035", + "createdTime": "2020-12-09T08:21:01.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da446a67-8383-4494-be1c-13694cc4dbae", + "createdTime": "2020-12-09T08:21:00.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "145fd924-ba50-4dee-b8cc-dc682d7e0d34", + "createdTime": "2020-12-08T22:53:18.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d37065e8-9d58-41d1-8ac3-1d8e6e0db9a9", + "createdTime": "2020-12-08T22:53:11.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f7b0f830-cdf2-4e78-b42f-fae71033e74a", + "createdTime": "2020-12-08T20:56:25.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0e8d7566-5e44-45c7-bc3f-5ea8a3d1ba18", + "createdTime": "2020-12-08T20:56:24.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ae805f30-ea52-4850-b7dc-d07aae45218d", + "createdTime": "2020-12-08T20:56:23.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5a31e669-00a7-4b23-bff1-e118c8de99bd", + "createdTime": "2020-12-08T20:56:22.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a607ecc9-ef5f-4e31-b364-bdcba487fe78", + "createdTime": "2020-12-08T20:51:28.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bea3c90a-d621-4933-bffe-807c3f5a6341", + "createdTime": "2020-12-08T20:51:27.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ceaf1eea-ae98-460f-8f1a-cf45bc35340e", + "createdTime": "2020-12-08T20:51:26.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3c1276ca-7613-447f-9037-313a0e2e2a53", + "createdTime": "2020-12-08T20:51:25.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92236577-3e3e-4ee4-bd29-be706ea43a68", + "createdTime": "2020-12-08T20:50:52.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "105912d8-5b91-49f4-85e2-5a45d8bdd926", + "createdTime": "2020-12-08T20:50:51.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e50c4cd3-d589-43ff-964d-ff93640171b6", + "createdTime": "2020-12-08T20:50:50.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ba1522dd-d921-4d12-ac83-70e8ba8418d8", + "createdTime": "2020-12-08T20:50:49.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "662acda2-861b-4d97-bbcc-b5e87bba27c0", + "createdTime": "2020-12-08T20:42:45.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f61b50b1-7179-41cb-994f-7b5fb64d0da2", + "createdTime": "2020-12-08T20:42:44.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7da226b-cc52-4cd2-9a79-b433b289a2a7", + "createdTime": "2020-12-08T20:42:43.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "132d9e7c-35eb-42fe-968f-5c64d30a948d", + "createdTime": "2020-12-08T20:42:42.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "13299070-bcdf-4d27-b0a8-57d84adf5761", + "createdTime": "2020-12-08T20:42:32.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4a25b657-9f91-4eb3-9f03-7dd60b703345", + "createdTime": "2020-12-08T20:42:31.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d844c885-eed9-43ad-8e1b-88874882982c", + "createdTime": "2020-12-08T20:42:29.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2f9cfd7e-3367-4365-b005-d2e6e3d8b2ea", + "createdTime": "2020-12-08T20:42:28.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6760949d-78a0-456c-9576-cf814ad17e53", + "createdTime": "2020-12-08T20:41:44.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7947823c-8ef0-4868-817b-39651a9b6710", + "createdTime": "2020-12-08T20:41:43.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bb170204-57ae-4173-adb0-8db77818683f", + "createdTime": "2020-12-08T20:41:43.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e19f3aa-9ad4-4152-aa06-32f54328431c", + "createdTime": "2020-12-08T20:41:42.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a488d1b-fb7b-4f42-b38a-542f8b75ffad", + "createdTime": "2020-12-08T20:41:36.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d35304f3-d497-444e-aa42-2eee8d76b21e", + "createdTime": "2020-12-08T20:41:35.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7f3e7880-f9ef-4ec3-8d91-5fb4142aa86b", + "createdTime": "2020-12-08T20:41:34.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c61e7029-47e2-48bb-bfac-caaae8e3027e", + "createdTime": "2020-12-08T20:41:34.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65c8108e-2390-451b-b7e0-916bbdeeff95", + "createdTime": "2020-12-08T18:40:20.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "53720982-0da9-4a9c-af01-3e0093d51d6c", + "createdTime": "2020-12-08T18:40:19.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7c5c34f4-5fda-4478-b3cb-1faa8a795eed", + "createdTime": "2020-12-08T18:40:19.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f74886c0-34f6-4d28-9d6d-9833a7d6dd64", + "createdTime": "2020-12-08T18:40:18.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "22676348-2fb6-4e75-93a4-b2aa4b4f001d", + "createdTime": "2020-12-08T18:40:18.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f9e43d89-e98f-4be4-8949-88135f278536", + "createdTime": "2020-12-08T18:40:17.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bc4fa44b-f9dd-44c3-9d74-a1fd077645d6", + "createdTime": "2020-12-08T18:40:10.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "77e4169d-d007-47ca-ad6c-05cfe3f5fcf2", + "createdTime": "2020-12-08T18:40:09.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b43f237b-a5a8-484c-97c1-a34a8775f268", + "createdTime": "2020-12-08T18:40:08.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "218d97b1-4d4c-4138-b060-5e3617255066", + "createdTime": "2020-12-08T18:40:08.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cc19e4d9-9151-4c05-b7d7-e637718f2b90", + "createdTime": "2020-12-08T18:40:07.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b34d9429-2e4f-4b73-88ca-7739f834089d", + "createdTime": "2020-12-08T18:39:56.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "786489a1-3207-4bff-896e-0f600c11b80b", + "createdTime": "2020-12-08T09:20:18.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "00c7d828-1075-4b8e-a2c5-37c5aa3dda53", + "createdTime": "2020-12-08T09:20:17.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35e794f9-5388-4b23-b6f5-265ddc4c4fec", + "createdTime": "2020-12-08T09:20:17.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dfc4f499-ae71-4e66-a536-60022c24284f", + "createdTime": "2020-12-08T09:20:16.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "380d6475-6f96-4bc0-8caf-a2376d8d9d25", + "createdTime": "2020-12-08T09:16:41.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7510a9e2-07f2-4398-b0fa-159ae5d76dec", + "createdTime": "2020-12-08T09:16:40.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ef5dd44-0baa-4db7-a337-00d1916c75b9", + "createdTime": "2020-12-08T09:16:40.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "24384629-8edf-401a-843d-b493fad71280", + "createdTime": "2020-12-08T09:16:39.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5148db91-76ee-4804-9094-2b1bb12dd59a", + "createdTime": "2020-12-08T09:02:33.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bcf248d2-1631-45c8-b0b5-ff4303f72480", + "createdTime": "2020-12-08T09:02:32.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f044141a-1896-4da6-a232-40a0076bee82", + "createdTime": "2020-12-08T09:02:32.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd6f9745-db9c-4e15-80ee-f078230fca67", + "createdTime": "2020-12-08T09:02:31.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34f4047c-4eb9-451d-8de9-14e15224958c", + "createdTime": "2020-12-08T08:58:55.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4f811b9c-702e-47c5-815f-cd68bf36ab8f", + "createdTime": "2020-12-08T08:58:54.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9b213d0a-923f-4c3e-908c-c62ba0c3191c", + "createdTime": "2020-12-08T08:58:53.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc59f06f-26a7-459b-8818-d0e05804d713", + "createdTime": "2020-12-08T08:58:52.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "deff4420-65cb-4c11-a4d6-ebc6c3d254c9", + "createdTime": "2020-12-08T08:50:12.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b2ad04bc-4762-4477-906f-0a81827fc74b", + "createdTime": "2020-12-08T08:50:12.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09e11c69-3f77-4fe3-914b-cd6f1f24fa46", + "createdTime": "2020-12-08T08:50:11.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "64092a79-dabb-449b-89a1-5a350c65e4d5", + "createdTime": "2020-12-08T08:50:10.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c7a0c73-dd85-47a6-92bf-8e6ba38847ba", + "createdTime": "2020-12-08T08:39:54.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51043672-a34c-4a7f-bb56-79e7d7de2cd6", + "createdTime": "2020-12-08T08:39:53.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "da235ba5-ffbc-4abf-982b-e6c7c95018d1", + "createdTime": "2020-12-08T08:39:52.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7aa4a300-2f8d-4bba-8815-86a083f53af9", + "createdTime": "2020-12-08T08:39:51.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51658e08-72c4-4339-919f-f549d227b292", + "createdTime": "2020-12-08T08:36:06.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf9b996f-5364-4046-9ed6-5f29cf8f9624", + "createdTime": "2020-12-08T08:36:05.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2bd9790c-d245-444c-8f93-31d2c4bdf70e", + "createdTime": "2020-12-08T08:36:05.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4b94c9bc-6dfa-4679-838e-9704def1702c", + "createdTime": "2020-12-08T08:36:04.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1ad07296-1323-4578-a98c-5cde95897bf1", + "createdTime": "2020-12-08T08:24:23.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bf8b0e5-1399-4e95-8943-2f1c752b8b95", + "createdTime": "2020-12-08T08:24:22.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c497ae6-d7a7-49f1-8ec1-7b66e84a22c7", + "createdTime": "2020-12-08T08:24:21.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "50f45714-7805-4631-9ff5-4da5baf9aa9f", + "createdTime": "2020-12-08T08:24:20.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "740a9f8d-0d6f-418d-8389-a2e10877b23c", + "createdTime": "2020-12-08T08:21:05.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c505d72d-4882-4f8a-aa7a-279c769e2787", + "createdTime": "2020-12-08T08:21:05.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5d3d43fd-d5b7-4a41-985e-6d73bf1cb71a", + "createdTime": "2020-12-08T08:21:04.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "414b0dbb-cfc0-40dc-bcb3-79c6269fd24c", + "createdTime": "2020-12-08T08:21:03.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1cde363b-e396-4a7a-bc83-6c00b7852cc2", + "createdTime": "2020-12-08T04:42:13.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "22d7ab40-1eab-457b-96a3-cf9952ae4970", + "createdTime": "2020-12-08T04:42:12.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b316f3b1-dc66-48ae-9361-479e87eaf129", + "createdTime": "2020-12-08T04:42:12.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "849a55c3-4894-4068-a086-d38ed1a6eafb", + "createdTime": "2020-12-08T04:42:11.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d3fda21c-a2ca-4cfc-acc0-64e9112a2e21", + "createdTime": "2020-12-08T04:42:11.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "99053e69-2c8b-45dc-b558-ae5696c1b03c", + "createdTime": "2020-12-08T04:42:10.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "375f3bfd-8345-4d92-914d-dda804ddff94", + "createdTime": "2020-12-08T04:42:07.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b8ada8a3-3895-40b8-857d-13defbfde5be", + "createdTime": "2020-12-08T04:42:06.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cb5756e6-04ee-47cf-854a-b336a7794817", + "createdTime": "2020-12-08T04:42:06.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdceaac9-77c9-4d46-b5bd-49f2a7029b39", + "createdTime": "2020-12-08T04:42:05.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "555499a8-6103-46ec-8846-91932e245e87", + "createdTime": "2020-12-08T04:42:05.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "77c168e7-c9f0-483f-a46b-a0ca2ba01bc8", + "createdTime": "2020-12-08T04:42:03.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "aeabd6ba-05ab-49b6-ac63-6114895c8016", + "createdTime": "2020-12-08T04:20:16.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b428de37-6fab-4f21-9c20-e5905eaba563", + "createdTime": "2020-12-08T04:20:16.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a50dad1-7d23-4d4b-bf91-26082dacccfe", + "createdTime": "2020-12-08T04:20:15.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00714ec2-535b-4c76-b61a-39add8b70dcb", + "createdTime": "2020-12-08T04:20:15.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f0df7709-6773-455a-9308-0b4fcb80a163", + "createdTime": "2020-12-08T04:20:14.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d853441d-f5aa-4ebe-8fac-767455188739", + "createdTime": "2020-12-08T04:20:14.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "002c500a-3ca0-4913-b53b-1a1e0a8667b7", + "createdTime": "2020-12-08T04:20:10.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3acfe5bc-67fa-4e53-995a-7a212f37e3f6", + "createdTime": "2020-12-08T04:20:10.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8c198030-01a6-46cb-856b-3d22d63c3a2d", + "createdTime": "2020-12-08T04:20:09.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f82e1ad4-b64e-49ab-b92f-6c59f8eda831", + "createdTime": "2020-12-08T04:20:09.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "860e289c-8777-4148-acdf-518e902c7f3e", + "createdTime": "2020-12-08T04:20:08.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f406f4f9-4435-4a6a-91f7-fe85d5c4486b", + "createdTime": "2020-12-08T04:20:01.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "df8f1cf3-8adc-4cbf-963f-d379032306bd", + "createdTime": "2020-12-08T03:52:25.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5b9a3d6-1644-48a5-bda9-e97666211ec8", + "createdTime": "2020-12-08T03:52:24.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "79583bf7-58e7-46b5-8c54-859ef0c21afe", + "createdTime": "2020-12-08T03:52:24.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12d45ccf-e59b-4c1c-a063-bcab9e4aca2e", + "createdTime": "2020-12-08T03:52:24.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "87c6b5da-6126-4186-b24d-1933dd11b4b3", + "createdTime": "2020-12-08T03:52:23.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "38b44c0e-20fc-4f8e-b4a3-55ec2ab56a04", + "createdTime": "2020-12-08T03:52:23.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6cb8e9e7-0a32-4030-99fc-5502ea5d3459", + "createdTime": "2020-12-08T03:52:21.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5100b663-3652-49d8-979c-5fc93131a04e", + "createdTime": "2020-12-08T03:52:21.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "250db864-c211-40f4-aa7e-e6417ff2062f", + "createdTime": "2020-12-08T03:52:20.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9792d09b-d8cf-4b86-9864-fd6fdc4e5bc8", + "createdTime": "2020-12-08T03:52:20.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f3ae2e16-e50b-419c-bef9-4dd68e412663", + "createdTime": "2020-12-08T03:52:19.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3be5091e-3c8a-41fd-9377-f943683433b0", + "createdTime": "2020-12-08T03:52:18.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4d702aa8-ea3c-403f-b462-e8a69f616b65", + "createdTime": "2020-12-08T03:43:45.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "65f42055-1f8b-4b99-8743-1fb8dcd61d85", + "createdTime": "2020-12-08T03:39:38.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1217ffc-5c63-421d-b485-dd8401973da3", + "createdTime": "2020-12-08T03:39:38.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c15e060b-0212-4230-83ed-6d5140d912c6", + "createdTime": "2020-12-08T03:39:37.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a42cc45-055c-4b1f-ad78-4556036f0da3", + "createdTime": "2020-12-08T03:39:36.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9445c504-b4bb-4a87-9e68-cdce3a91c108", + "createdTime": "2020-12-08T01:43:38.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2cc9667-b9ea-4e4b-979a-1cda60528ffc", + "createdTime": "2020-12-08T01:43:38.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5804501-fd9e-45fa-9349-ac49c411fefb", + "createdTime": "2020-12-08T01:43:38.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a46d8c70-7e78-44e4-a0ca-4cf20c0664ac", + "createdTime": "2020-12-08T01:43:37.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "812cfc5b-d32f-4cb7-b502-7d4583b99f2a", + "createdTime": "2020-12-08T01:43:37.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ffba2469-db88-466e-9e8a-737f324b0962", + "createdTime": "2020-12-08T01:43:36.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a2cb7427-f408-45e1-bab8-4927d2e0e6cf", + "createdTime": "2020-12-08T01:43:35.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "244df76b-1196-4b56-892d-8c4fe18784d4", + "createdTime": "2020-12-08T01:43:34.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "861f5f33-13a3-4a71-b800-a19da1547a90", + "createdTime": "2020-12-08T01:43:34.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "927076dd-4acc-4132-a7c9-171fa5441385", + "createdTime": "2020-12-08T01:43:33.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "383d0ff4-f81b-4a9a-bc6e-9240975a07e5", + "createdTime": "2020-12-08T01:43:33.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6d7a7556-e6ca-4c94-8cf0-a99a85e4941b", + "createdTime": "2020-12-08T01:43:27.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa3d4d40-a337-4bba-9c43-836613c64bea", + "createdTime": "2020-12-08T00:36:31.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c7950531-3465-42d7-aa87-4391660119dc", + "createdTime": "2020-12-08T00:36:31.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "04fa6afa-512f-47e8-b4bf-6ce286014eef", + "createdTime": "2020-12-08T00:36:30.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f1e1dde2-d04c-4a09-8582-b53ce42f7917", + "createdTime": "2020-12-08T00:36:30.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2f1e8559-66af-487c-a477-a2563ab08b02", + "createdTime": "2020-12-08T00:36:24.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9ba4dd1a-89e2-4eae-9830-aa55e5352db9", + "createdTime": "2020-12-08T00:36:23.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c5402275-d6b7-49b4-a1ba-3b61377125c1", + "createdTime": "2020-12-08T00:34:27.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6aadf1d-3cf0-41e2-a42d-0dc2a495dc00", + "createdTime": "2020-12-08T00:34:27.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "52b71989-18b6-4b82-b47c-1fcdda1718e2", + "createdTime": "2020-12-08T00:34:26.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1a026dc4-4613-4ae3-9934-ee053dbe312e", + "createdTime": "2020-12-08T00:34:25.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "56ab6d88-e74c-408a-bdc6-fee202972b0d", + "createdTime": "2020-12-08T00:34:25.341Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "433191bd-49cc-4072-ac4e-a34dc84007f6", + "createdTime": "2020-12-08T00:34:24.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6240c879-8660-4826-9ef6-f6f8005cbceb", + "createdTime": "2020-12-08T00:13:41.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6d50e8d-520a-4547-951a-7d1b656830b8", + "createdTime": "2020-12-08T00:13:40.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9c1ea7e9-a2a3-4329-9dec-30cf3c6942c4", + "createdTime": "2020-12-08T00:13:39.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe403ab1-bf86-4b63-b16a-f9c5e18d4d66", + "createdTime": "2020-12-08T00:13:33.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1e8d3432-b299-4bcb-be61-31adfba6b05c", + "createdTime": "2020-12-07T20:13:10.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "36270d9c-e603-4deb-a966-dce03e48fef0", + "createdTime": "2020-12-07T20:13:09.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b95775f2-fa5a-4499-8a0f-0acb266d484c", + "createdTime": "2020-12-07T20:13:08.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "23e76178-aeb8-4032-a751-2c8e89e5ed5b", + "createdTime": "2020-12-07T20:13:08.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23f03511-10d1-4a2f-bb99-b2417f098155", + "createdTime": "2020-12-07T20:10:00.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e6edbcc5-6683-4f13-a5ba-9d6f96afc273", + "createdTime": "2020-12-07T20:09:59.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4474b3a3-0db8-4477-8121-4f86d1935fa9", + "createdTime": "2020-12-07T20:09:58.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4346f4bf-4ddf-4230-a735-9cf2c1ba3322", + "createdTime": "2020-12-07T20:09:57.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "14c18cad-733c-4b80-9b2f-e96007fded87", + "createdTime": "2020-12-07T20:08:42.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d2ac228c-d564-4f56-a390-2d96355039a7", + "createdTime": "2020-12-07T20:08:42.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "60e0e110-cb2d-4544-a271-4d27136ee3f5", + "createdTime": "2020-12-07T20:08:41.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ec8b08d5-739b-4ed4-96cc-0fb621109276", + "createdTime": "2020-12-07T20:08:41.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0440f1e8-261c-4ed6-a56f-31a557a2a3c5", + "createdTime": "2020-12-07T20:06:05.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1f1f3d31-c76a-4f8f-adbb-b0eac382b89e", + "createdTime": "2020-12-07T20:06:04.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f6236d33-7d8e-4fd0-a3d2-981e4b429432", + "createdTime": "2020-12-07T20:06:03.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "49750b76-0b4f-4c99-8fc8-28a9793659b3", + "createdTime": "2020-12-07T20:06:02.881Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10d2a829-a50f-42c6-bddb-523f266349c7", + "createdTime": "2020-12-07T20:06:01.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "fa847b45-0edd-4818-ba8c-fb4960c84329", + "createdTime": "2020-12-07T20:06:00.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0473ed62-5192-49e0-a7b0-1d2ffb72b2f9", + "createdTime": "2020-12-07T20:05:57.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3328c309-9832-4245-a15c-a2ed0c0643b7", + "createdTime": "2020-12-07T20:05:56.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7d824f6a-320b-47fb-a4aa-0c481a9402e0", + "createdTime": "2020-12-07T20:05:56.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5708fd40-eb46-4c9d-8ec2-d830cbab128a", + "createdTime": "2020-12-07T20:05:55.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d12d1ef-a10d-4350-b723-a06e2a7581d5", + "createdTime": "2020-12-07T20:04:39.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c34ac34a-964c-4e86-8651-22d821ab2a7c", + "createdTime": "2020-12-07T20:04:38.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7fe9246e-03db-49bb-a81a-0a454d1ea513", + "createdTime": "2020-12-07T20:04:38.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e9378fbd-8ef5-4777-966c-279bdc2b7a0d", + "createdTime": "2020-12-07T20:04:37.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1476f4dd-3877-4b2f-a7c4-316edd93767e", + "createdTime": "2020-12-07T20:04:36.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f4c87106-6fdf-4f78-97f4-878bc2ea8e85", + "createdTime": "2020-12-07T20:04:36.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "96c0f7c5-81e5-4aaf-b578-0627f063e5ff", + "createdTime": "2020-12-07T20:04:35.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7e1f082f-b255-4931-b2a4-37f55c8321ff", + "createdTime": "2020-12-07T20:04:34.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "733d79ab-9e58-4c01-b00e-cce37113ef70", + "createdTime": "2020-12-07T20:00:28.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7ce703dc-87f2-413f-9fd0-ea580918423d", + "createdTime": "2020-12-07T20:00:22.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "657a44d7-e559-4f2a-a645-ad9369a12a3f", + "createdTime": "2020-12-07T19:47:58.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "de66798a-1eda-412f-bf72-c55c38cf474d", + "createdTime": "2020-12-07T19:47:57.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "595f810b-21b4-450f-b789-9c54b12ceaaf", + "createdTime": "2020-12-07T19:47:00.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fc8af2fd-cd27-4d05-91c1-b1af63c05339", + "createdTime": "2020-12-07T19:47:00.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bc7ae733-cb89-461b-b5c7-39295d3575c4", + "createdTime": "2020-12-07T19:46:59.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f2a3688f-5404-4cd6-ba63-4e2c7ccc6a7f", + "createdTime": "2020-12-07T19:46:47.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe914219-a6cb-4e5c-bd73-0f0ba1ebcc68", + "createdTime": "2020-12-07T19:15:00.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "278f0265-e32e-4f72-bd16-6692bdcbaeec", + "createdTime": "2020-12-07T19:09:48.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "69db78bf-852f-4d02-b07d-b29650d0cebd", + "createdTime": "2020-12-07T19:09:41.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "08f0b86e-24c5-4c5a-959f-c32bcbfbdc62", + "createdTime": "2020-12-07T19:03:27.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d541b738-4408-4675-983c-b58f2439c11d", + "createdTime": "2020-12-07T09:45:18.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "60acc412-80c9-443b-93f8-97a061682a50", + "createdTime": "2020-12-07T09:45:17.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c10817ad-cde1-4195-9aa9-6d5170f5ed07", + "createdTime": "2020-12-07T09:45:17.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5a47529f-bab0-4b88-910f-d690c6fa29f5", + "createdTime": "2020-12-07T09:45:16.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "353dd49c-f2dc-4fbd-8738-5c73ebdccbbe", + "createdTime": "2020-12-07T09:41:39.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d87a4ce6-609a-443d-8c8a-37e0803c22b3", + "createdTime": "2020-12-07T09:41:38.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6776eb11-3306-4211-ade9-1e093ad0fed1", + "createdTime": "2020-12-07T09:41:37.419Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "524b5e50-0204-4947-aee8-d3c125627f8d", + "createdTime": "2020-12-07T09:41:35.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88ae78f6-cf34-4da6-acf0-6fdacb505487", + "createdTime": "2020-12-07T09:34:41.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "39078709-8f19-4a54-8cb7-b2fee569e578", + "createdTime": "2020-12-07T09:34:41.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2afb06d4-36ae-4d9f-a91d-1042008788ef", + "createdTime": "2020-12-07T09:34:40.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ae231c97-e759-4263-8c7e-d50d212906a5", + "createdTime": "2020-12-07T09:34:39.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1480ed38-7486-4f2f-97f2-7fe1725e46ab", + "createdTime": "2020-12-07T09:30:36.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "506fffac-3a4e-4c44-90db-4be9a33fd29b", + "createdTime": "2020-12-07T09:30:36.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "70ba089f-004b-421b-9e79-9e011afd8948", + "createdTime": "2020-12-07T09:30:35.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "39b6fc34-5380-43d2-9d00-de9df8df1675", + "createdTime": "2020-12-07T09:30:35.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e16e5213-e08e-42d6-a768-5e916af4b3d5", + "createdTime": "2020-12-07T09:21:34.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "47bf6b27-097a-48a5-bf21-5fb319e998a9", + "createdTime": "2020-12-07T09:21:33.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "06b042da-48a7-42a3-b60c-7bd02f498834", + "createdTime": "2020-12-07T09:21:33.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "831d0260-d5b5-48ef-9fff-6701bd70f866", + "createdTime": "2020-12-07T09:21:32.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cce849ec-d9a3-4985-9f41-19c1fb60b48b", + "createdTime": "2020-12-07T09:06:38.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1def5ecd-b5ab-4105-be7a-ac7a099d84e8", + "createdTime": "2020-12-07T09:06:37.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "91c151c0-08e0-4c1b-9ba2-5f68c959d14f", + "createdTime": "2020-12-07T09:06:36.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6faed0ae-c4b0-4408-acd1-825a15aaefb2", + "createdTime": "2020-12-07T09:06:34.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ddde201-54aa-43b7-9a93-74aee0bccd3c", + "createdTime": "2020-12-07T09:02:37.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a480ea1-a3ad-4857-9b7b-be50a33b6c72", + "createdTime": "2020-12-07T09:02:36.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e761f812-1a5c-4018-be47-087ed7b01615", + "createdTime": "2020-12-07T09:02:35.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "45939c31-ccae-4108-b932-a011f1eeddde", + "createdTime": "2020-12-07T09:02:34.312Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2bef96e-a401-4e95-a995-53624b7ddd3a", + "createdTime": "2020-12-07T08:55:18.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "997a32ba-eac5-4509-9099-b7ff3e67141d", + "createdTime": "2020-12-07T08:55:18.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "103e3176-fbbb-4076-a17d-bfd8efad7330", + "createdTime": "2020-12-07T08:55:17.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d044fd89-9ada-46a6-9643-ba6e0d4f7b54", + "createdTime": "2020-12-07T08:55:16.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0dbf6d3e-db25-417f-b5a0-e11b5e729de8", + "createdTime": "2020-12-07T08:51:36.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8c5a6478-dc7f-4487-a5bf-29323f931cf8", + "createdTime": "2020-12-07T08:51:36.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "88b6f691-3c4f-4e02-a7c9-164f09eadafc", + "createdTime": "2020-12-07T08:51:35.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7d797ad0-8fe2-4aa5-914c-3e6fa0394e43", + "createdTime": "2020-12-07T08:51:34.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cd9e489-0652-4637-b002-0045ec2e7133", + "createdTime": "2020-12-05T00:32:29.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "421d5a18-47fd-49c1-b958-cbcf4f80eaf0", + "createdTime": "2020-12-05T00:31:55.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f58dc36-0a14-4761-ac1a-1ea6c311c45a", + "createdTime": "2020-12-05T00:31:44.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1211fdb7-16a3-404b-80d1-b72365564374", + "createdTime": "2020-12-04T23:50:43.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": {} + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1ffc1c83-b7df-4ac2-92c7-7079469ad0e0", + "createdTime": "2020-12-04T20:25:50.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bf816638-c840-4ea2-b850-081fe0d7c0d3", + "createdTime": "2020-12-04T20:25:49.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c715e1ee-783b-43e2-b838-de36be76d316", + "createdTime": "2020-12-04T20:25:48.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ed2ced69-3a2a-4cfa-b293-1d26056dd502", + "createdTime": "2020-12-04T20:25:48.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0d9602a-39dc-4532-8cd5-7572f0302b3b", + "createdTime": "2020-12-04T20:23:30.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3f34acae-2bd5-420d-a416-fad2b823d9b8", + "createdTime": "2020-12-04T20:23:29.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "383f41c2-2058-461e-b5d9-d0762fd89104", + "createdTime": "2020-12-04T20:23:28.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2731a52d-d941-4472-b238-b4701f0a4579", + "createdTime": "2020-12-04T20:23:28.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22fa035a-1f81-4a33-81a7-91d367f8c093", + "createdTime": "2020-12-04T20:22:44.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d87ef1db-c986-4b21-90b0-64f0fb0caefc", + "createdTime": "2020-12-04T20:18:03.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfe17c4f-44f6-4e5a-a84c-bba3352ddc7f", + "createdTime": "2020-12-04T20:18:02.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "db6c4747-3766-47c9-9195-b56bc016dd4d", + "createdTime": "2020-12-04T20:18:01.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a0f1ecb3-ab98-4378-a9ab-990a02823d1e", + "createdTime": "2020-12-04T20:18:01.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85903a2d-1707-46cb-996f-e5767e45baab", + "createdTime": "2020-12-04T20:17:03.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ad99eee1-3fdb-4895-b86d-9cfa770175fa", + "createdTime": "2020-12-04T20:17:03.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cacbd66b-61d1-49da-9591-2f73c4cc8072", + "createdTime": "2020-12-04T20:17:02.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "74f3fb12-4eb8-4798-a724-f9598d2f9042", + "createdTime": "2020-12-04T20:17:02.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c35733d7-15ee-4092-a884-ce3ad2f4bedb", + "createdTime": "2020-12-04T20:17:02.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e3f40630-0da5-4d6c-bb28-1e118379903f", + "createdTime": "2020-12-04T20:17:01.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "961abb64-c356-48ad-81b4-f971b5359208", + "createdTime": "2020-12-04T20:17:01.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ddfdaa8c-4f0e-4edb-85eb-2f06bf7aaa4d", + "createdTime": "2020-12-04T20:17:00.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b34e1d8a-3cf7-467e-a07e-fd216969a493", + "createdTime": "2020-12-04T09:18:16.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0513c8bd-717a-40ed-9dee-4ca9b16148b7", + "createdTime": "2020-12-04T09:18:15.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f61ea6df-5c50-46a2-adaf-e4f3bbf3dd8b", + "createdTime": "2020-12-04T09:18:15.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6ec9157-f62b-4267-81f9-8b1ff76d012b", + "createdTime": "2020-12-04T09:18:14.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f11778a-56ae-44f6-89fc-97b6386a21dc", + "createdTime": "2020-12-04T09:14:30.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f0f5af7a-c0b4-40f5-9096-ae642ca3b933", + "createdTime": "2020-12-04T09:14:29.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3a5f75e0-567c-4ad3-90a1-f7887c35aaa8", + "createdTime": "2020-12-04T09:14:29.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2322a55a-734a-40cc-88bf-9e3324345682", + "createdTime": "2020-12-04T09:14:28.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47880220-8d17-43f0-a9f0-653f1312f2d6", + "createdTime": "2020-12-04T09:04:23.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57d6c9de-16fd-4b2d-a8a2-8636566151ac", + "createdTime": "2020-12-04T09:04:22.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a8c17f44-efdb-456f-8236-f943f4b1405d", + "createdTime": "2020-12-04T09:04:22.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e259df9-8f22-4ff3-8fe7-0ee5e00fe0ae", + "createdTime": "2020-12-04T09:04:21.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc6a5320-1d2e-481b-a870-cb9d639afcce", + "createdTime": "2020-12-04T09:00:32.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9a16d778-5bbd-4842-a8d8-ec7c4aae1871", + "createdTime": "2020-12-04T09:00:31.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7d37094-db58-4bee-9d33-4d7a91067299", + "createdTime": "2020-12-04T09:00:31.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3cdcda6f-85fc-4d60-9ef2-87b66386b6b6", + "createdTime": "2020-12-04T09:00:30.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf445062-d991-4765-a65c-37da321f70d0", + "createdTime": "2020-12-04T08:50:53.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cca6eb66-796e-46fe-80e5-3eff869b9b1e", + "createdTime": "2020-12-04T08:50:52.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3b60d231-9bc9-4739-ba5c-bd0635ae4ebc", + "createdTime": "2020-12-04T08:50:52.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2821cfbf-94d0-44c9-a25b-42fa15fcc334", + "createdTime": "2020-12-04T08:50:51.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66f1ddde-921f-4eec-8c2e-26413e07b3c6", + "createdTime": "2020-12-04T08:39:26.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dc15a8af-28ce-401b-b083-9d1a60c69271", + "createdTime": "2020-12-04T08:39:26.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e428b6e4-c670-4a9d-8695-370a9d1de61d", + "createdTime": "2020-12-04T08:39:25.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ffc5882d-a90f-47df-9796-b9bc80cd23a2", + "createdTime": "2020-12-04T08:39:24.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab91b4a7-4231-4a01-81a1-58c847512d6f", + "createdTime": "2020-12-04T08:35:34.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ff4621ca-caaa-47d3-947e-5dbc16e53176", + "createdTime": "2020-12-04T08:35:34.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eb3f2013-a76a-4268-a830-3135a518fc7a", + "createdTime": "2020-12-04T08:35:33.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c75e7031-aa32-4f1e-92c3-832c247925f1", + "createdTime": "2020-12-04T08:35:33.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db70fa19-e11d-42f2-889f-0b4dad21190b", + "createdTime": "2020-12-04T08:27:44.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "707b505b-d0d4-40fc-b9ba-b0feeee64e7d", + "createdTime": "2020-12-04T08:27:43.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "074c2e49-422a-44ed-8f5a-759c96bb96b6", + "createdTime": "2020-12-04T08:27:42.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1991ea64-6545-4a5b-b416-8dee6c722beb", + "createdTime": "2020-12-04T08:27:40.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "99bdff7d-5ab6-49bd-b5ee-4bb3b79f7572", + "createdTime": "2020-12-04T08:24:06.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a682146a-dee3-46eb-9db0-1682c6d75eed", + "createdTime": "2020-12-04T08:24:05.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8f9d2209-e12c-4bed-8e98-c78b4967ff79", + "createdTime": "2020-12-04T08:24:05.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3919d84d-f4e3-4f55-8d48-b560d95c4208", + "createdTime": "2020-12-04T08:24:04.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd1dd7d8-953b-4343-8819-2a434995f8c4", + "createdTime": "2020-12-04T00:02:57.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0296f355-f62a-4798-98cf-f0cfdbf59eee", + "createdTime": "2020-12-04T00:02:56.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "659d2d45-23c1-473c-9451-8ff1d3dd7194", + "createdTime": "2020-12-04T00:02:56.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8c835d2c-2cfd-4ed4-980e-0fad1c8c2a91", + "createdTime": "2020-12-04T00:02:55.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b88164a-591d-4590-a22b-36c5df33205f", + "createdTime": "2020-12-03T23:59:28.497Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "395eb04f-26fa-472e-af6e-995388dbe87c", + "createdTime": "2020-12-03T23:59:27.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a2bd51a3-da29-4913-9ee6-8cab4a4c5fb3", + "createdTime": "2020-12-03T23:59:27.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a5820bcd-1cba-46f9-bd54-472c7dec7065", + "createdTime": "2020-12-03T23:59:26.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f241bed3-9acc-47c2-8c83-5b3d93c9e51d", + "createdTime": "2020-12-03T23:58:12.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fa8e8623-e703-407d-b975-f66b4854d757", + "createdTime": "2020-12-03T23:58:11.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3e1d2e56-2e93-48cd-bb61-ecab70795cdd", + "createdTime": "2020-12-03T23:58:10.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e934cb8e-54e8-4570-8505-765115a6fb77", + "createdTime": "2020-12-03T23:58:10.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f553649f-16f9-4590-8fce-c909d82c4d95", + "createdTime": "2020-12-03T23:58:10.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aad897d1-d6ba-45b4-a122-b82918ad23f0", + "createdTime": "2020-12-03T23:58:09.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0edad45-a250-4567-aa8c-d9d8c3b79298", + "createdTime": "2020-12-03T23:58:09.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e254283-bd2f-44e1-9d47-8863b73e8a37", + "createdTime": "2020-12-03T23:58:08.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e0e48cd-d7a6-48d5-b078-d70f1e7f7e01", + "createdTime": "2020-12-03T23:58:06.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "58091c8b-8d9a-4d9d-8f6c-1eeb89c09746", + "createdTime": "2020-12-03T23:58:05.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "29b3f0d3-927c-4208-abb5-30b863210dfc", + "createdTime": "2020-12-03T23:58:04.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3641257f-339a-4415-bf16-5bde98c02083", + "createdTime": "2020-12-03T23:58:03.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d593a62-75be-4ca2-9530-dfea26ff394e", + "createdTime": "2020-12-03T23:58:01.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c0473764-9f8b-4104-a777-d34993998895", + "createdTime": "2020-12-03T23:58:00.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8b9990cb-45d4-4ef4-890b-ec589ac46628", + "createdTime": "2020-12-03T23:58:00.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2dfd4b4c-f772-4760-b8d6-286064e2407b", + "createdTime": "2020-12-03T23:57:59.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8f984b-d3e2-4cc2-8e19-da513671d50d", + "createdTime": "2020-12-03T23:55:33.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6dcd7693-85cb-4a0d-847b-1341a14e21b9", + "createdTime": "2020-12-03T23:55:32.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1aa0ffa0-3ed8-4c2d-a7f4-123083afb316", + "createdTime": "2020-12-03T23:55:32.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6fb1a1a8-fcbb-482d-a4a0-05fb0f976b79", + "createdTime": "2020-12-03T23:55:31.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82fce932-4bce-4811-832d-eec869d21b09", + "createdTime": "2020-12-03T23:11:16.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3f558efb-a6bf-402d-9029-1baee8ac76a3", + "createdTime": "2020-12-03T23:11:16.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "962472b5-ecee-4ea7-b1f0-7a1f56c8876d", + "createdTime": "2020-12-03T23:11:15.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "df3e3e4e-5e10-41b4-86b5-e66152f601ba", + "createdTime": "2020-12-03T23:11:15.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7df7370d-791f-4109-8e69-02bfcf2a1808", + "createdTime": "2020-12-03T23:08:01.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "59e999ff-38b8-477d-91cd-a809fae28281", + "createdTime": "2020-12-03T23:08:01.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5d6c4d0f-4bae-485d-8f45-2eaed73e8879", + "createdTime": "2020-12-03T23:08:00.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7f180b42-83c7-4fc1-9985-64dec903a68e", + "createdTime": "2020-12-03T23:07:59.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f3d1da6-4c3b-4672-b4fe-e907bc4567e0", + "createdTime": "2020-12-03T23:07:06.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "db4e869e-049d-44db-a695-9403a36f1c60", + "createdTime": "2020-12-03T23:07:05.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5c7630f7-fcd7-47fb-82c3-0b6e1e95c471", + "createdTime": "2020-12-03T23:07:05.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "97c19d6c-dfe8-4855-8bc1-63d5adf42ec5", + "createdTime": "2020-12-03T23:07:04.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35049ecd-f279-440e-bf5b-2d859de2c106", + "createdTime": "2020-12-03T20:14:01.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "85c8e44d-50a8-4354-b3cb-b2a51f36a48c", + "createdTime": "2020-12-03T20:14:00.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c4f793ed-e957-4b0f-b1fe-d9cca29b2580", + "createdTime": "2020-12-03T20:14:00.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "155d548c-4bc7-454d-b07c-68643f5a0173", + "createdTime": "2020-12-03T20:13:59.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61fae67b-d458-4df5-8b7d-690ee594ad33", + "createdTime": "2020-12-03T20:11:45.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4223c55b-fbbf-4d10-92e9-361abb3fadf4", + "createdTime": "2020-12-03T20:11:45.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "fc352420-8671-43e0-9522-67ebe8d2ed82", + "createdTime": "2020-12-03T20:11:44.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e63b631f-a1e9-41b2-9232-7cb480a6af21", + "createdTime": "2020-12-03T20:11:43.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c81903b3-fce2-430c-9429-ce6a9a9424e7", + "createdTime": "2020-12-03T20:07:14.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7e827e10-02de-4196-bfe0-8bc66f6f0226", + "createdTime": "2020-12-03T20:07:13.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b8eca302-fb6d-442a-adef-9d66c2664e77", + "createdTime": "2020-12-03T20:07:12.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ce24e7ee-bac4-40e3-8a91-3b81efeee6e9", + "createdTime": "2020-12-03T20:07:11.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9c2a1aa-6d33-423d-81eb-b583ad57d4ba", + "createdTime": "2020-12-03T20:05:40.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0751282e-1b83-4146-be0f-8eea2a748b14", + "createdTime": "2020-12-03T20:05:40.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0bbc17b5-0eec-4cdc-9420-122bce7ca01d", + "createdTime": "2020-12-03T20:05:40.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8f40e985-2ab9-4ff8-9f57-f492339a5d28", + "createdTime": "2020-12-03T20:05:39.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5011d0a6-ee3e-489a-9082-d8f2f6083179", + "createdTime": "2020-12-03T20:05:39.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f8d9725b-fd0b-4d0c-b27d-cd9a216562c7", + "createdTime": "2020-12-03T20:05:39.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4a7fc4c8-7791-470c-8c26-3bf8d37063d9", + "createdTime": "2020-12-03T20:05:38.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c6ceaf08-3ab1-4547-ba3a-9709c257ced5", + "createdTime": "2020-12-03T20:05:38.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1a5d515a-4278-49ab-888e-6684bdf1bf8c", + "createdTime": "2020-12-03T09:14:25.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9183d0c0-3026-4463-b0a1-a127671b8c9e", + "createdTime": "2020-12-03T09:14:24.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac077438-e5be-4f2c-9bac-204cba7b662e", + "createdTime": "2020-12-03T09:14:24.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e43c60dc-0458-4913-ad0e-16117fddbe5f", + "createdTime": "2020-12-03T09:14:23.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f853e653-6f17-4bdf-b16c-e11767eadf66", + "createdTime": "2020-12-03T09:10:31.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c015c64e-d6ae-4953-9e48-59eaf52607b6", + "createdTime": "2020-12-03T09:10:30.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "00101d82-97e8-433a-9eb7-c032932bf20b", + "createdTime": "2020-12-03T09:10:29.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "059e7418-afc8-4fa0-b4c7-1b22cab242d1", + "createdTime": "2020-12-03T09:10:28.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d4d8d01-7837-4a9e-875e-d301b5c9e500", + "createdTime": "2020-12-03T09:01:01.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "407d76c4-b8cd-443e-9041-05f192fea5cb", + "createdTime": "2020-12-03T09:01:00.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e392b56-5cec-4161-ad52-f939974db995", + "createdTime": "2020-12-03T09:00:59.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ba35493d-1af3-4e66-9f13-bd6db8c62c16", + "createdTime": "2020-12-03T09:00:59.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9e8c5262-d30d-402f-a541-4d5c67fc6183", + "createdTime": "2020-12-03T08:57:13.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86a9e2d5-d252-4cdf-9ecc-d967327c4dd6", + "createdTime": "2020-12-03T08:57:12.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cd09401a-3a31-451d-be1b-1f8e4dbc9c36", + "createdTime": "2020-12-03T08:57:12.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d8635f2-7733-4d81-a218-8aca42641926", + "createdTime": "2020-12-03T08:57:11.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a94690d-623a-4828-a316-b9c690bcc50b", + "createdTime": "2020-12-03T08:47:31.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "470ba73f-661c-4c17-bc65-7f30d1c6763f", + "createdTime": "2020-12-03T08:47:31.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e739f0c7-1962-42b9-ae17-b81d126ba9bd", + "createdTime": "2020-12-03T08:47:30.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59817f89-e6fa-4c6a-a95c-e89d21ffdfae", + "createdTime": "2020-12-03T08:47:29.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df23174d-1c43-4173-b245-8e834c73dfcc", + "createdTime": "2020-12-03T08:37:20.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d347e511-b386-47d3-8c4a-aa1c80da2f4b", + "createdTime": "2020-12-03T08:37:19.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e8edbb6-35ad-44e0-84da-3a7b03f21353", + "createdTime": "2020-12-03T08:37:19.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3c6e961-9246-4079-abc3-28e2bc9dede4", + "createdTime": "2020-12-03T08:37:18.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8304fd21-fcb8-4bf4-9104-d240eb48a75a", + "createdTime": "2020-12-03T08:33:23.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55bb2c07-9e47-44e3-a5a9-ff9aa600c285", + "createdTime": "2020-12-03T08:33:23.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2eaea66f-23ad-49a6-909e-167265fc6289", + "createdTime": "2020-12-03T08:33:22.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c35501ac-d61f-4d4e-a7bc-72fd43210f7c", + "createdTime": "2020-12-03T08:33:21.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6be017d5-7b5f-4d6f-88af-1653092f6707", + "createdTime": "2020-12-03T08:23:54.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c690c0d7-7f65-48fe-bd52-a10038f4a25f", + "createdTime": "2020-12-03T08:23:53.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b71b46b0-a16f-49b6-b92e-a6c2c2b66aab", + "createdTime": "2020-12-03T08:23:53.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "937e8379-4c2c-4da6-8ce2-d88faf6a0746", + "createdTime": "2020-12-03T08:23:52.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6708b9c-272b-47bf-bce8-d20ba557a784", + "createdTime": "2020-12-03T08:20:56.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d3496742-efa8-439c-874b-658a20416c87", + "createdTime": "2020-12-03T08:20:56.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f891afba-59ef-4f78-b423-aec2516b0916", + "createdTime": "2020-12-03T08:20:55.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0c902b1e-8afa-4898-b7f7-7cd57ae10d23", + "createdTime": "2020-12-03T08:20:55.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ade7172c-15ad-4628-939a-6589c78b751b", + "createdTime": "2020-12-02T09:40:09.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dc75dd27-bb59-40af-b43b-74beef89c409", + "createdTime": "2020-12-02T09:40:08.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9cbfe98f-61b7-4c0f-bd4b-fd5af178c2b3", + "createdTime": "2020-12-02T09:40:08.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5d99565c-0763-48b1-87c9-aa19f3767a51", + "createdTime": "2020-12-02T09:40:07.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77de7ece-ba9c-4e06-bdae-d8bcce0c882e", + "createdTime": "2020-12-02T09:36:27.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27dabffd-b42e-4290-8117-f435a4afd60d", + "createdTime": "2020-12-02T09:36:27.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7c111fbf-60d3-4d06-9979-2e0ea907d394", + "createdTime": "2020-12-02T09:36:26.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b0674e55-2083-464f-bf84-02ae38eb8c22", + "createdTime": "2020-12-02T09:36:26.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a293935-c545-48e5-aeb1-8e9240e3dc89", + "createdTime": "2020-12-02T09:25:38.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9d0d638e-65f9-4e53-a672-b6cc082e11e1", + "createdTime": "2020-12-02T09:25:37.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "92dc7daf-ee75-409a-8959-1af066dbecca", + "createdTime": "2020-12-02T09:25:37.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3c873f1-930c-4251-8afe-3588c07326fd", + "createdTime": "2020-12-02T09:25:36.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7bb340d-63b5-499d-af6b-f87fb7a8f253", + "createdTime": "2020-12-02T09:21:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f2ca37f9-29d8-471c-9174-c27ef6ff8158", + "createdTime": "2020-12-02T09:21:45.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "618e53a5-4705-4ad5-b101-03c88e642c67", + "createdTime": "2020-12-02T09:21:45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d447f451-ef26-44a2-899e-f0106ce22aee", + "createdTime": "2020-12-02T09:21:44.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cee24191-6d49-4c61-bf93-0561026ee9ce", + "createdTime": "2020-12-02T09:00:08.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "413c4d30-1154-4486-8fcb-7c6cc260b0e6", + "createdTime": "2020-12-02T09:00:07.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "803b48c7-5211-43f6-a5c6-5968b4d57fab", + "createdTime": "2020-12-02T09:00:07.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5ea18935-cdbb-47cc-837e-a65f0d6a693e", + "createdTime": "2020-12-02T09:00:06.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe6c2aec-60e7-4911-9226-3568aad688c4", + "createdTime": "2020-12-02T08:42:49.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acc3e6be-ea6c-4664-9dd6-91e410e1f451", + "createdTime": "2020-12-02T08:42:48.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8dbb3ec1-ac98-493f-ac7f-e6e06d34caab", + "createdTime": "2020-12-02T08:42:47.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d0895dd-d8a0-4dd9-9a09-3d84589c9d37", + "createdTime": "2020-12-02T08:42:46.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "680fa97d-4931-4eea-bfc2-ef7ca1711c6c", + "createdTime": "2020-12-02T08:38:52.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57f5278a-d5b5-4080-af10-776660e3a13f", + "createdTime": "2020-12-02T08:38:51.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b8464c8e-dfd3-4a33-bd0a-2881d7fe4e2b", + "createdTime": "2020-12-02T08:38:50.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "87438c2e-8a33-43d2-b645-b0c220fc0d36", + "createdTime": "2020-12-02T08:38:50.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "795b7429-6fcb-4e96-969b-bf10443bd30f", + "createdTime": "2020-12-02T08:26:53.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7aac1f2c-fb8f-4b12-bd8c-2ad8d96a75b8", + "createdTime": "2020-12-02T08:26:52.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3f09a50-00d4-4623-8ea1-ed1b2e45d96f", + "createdTime": "2020-12-02T08:26:51.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8867bd38-c0f3-4e2a-9745-9b694ff4a11d", + "createdTime": "2020-12-02T08:26:49.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f4fb02e-8e53-4dbe-bff1-62a3958934fc", + "createdTime": "2020-12-02T08:23:03.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "570cfcea-3dd7-4a10-915d-94a53c61c796", + "createdTime": "2020-12-02T08:23:02.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dcd34728-59ee-48ba-b34c-be1f5524eb4f", + "createdTime": "2020-12-02T08:23:01.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ae4fa1fc-366f-407c-bda4-29d142181602", + "createdTime": "2020-12-02T08:23:00.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4392c386-c573-4091-8197-9fd1ac268c74", + "createdTime": "2020-12-01T09:17:11.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eefab8f8-fc9b-406c-ae7b-e9ec86bbf1a7", + "createdTime": "2020-12-01T09:17:10.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0876dde4-385b-4a57-a792-c132dcee3a24", + "createdTime": "2020-12-01T09:17:09.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6582704a-d422-4f3e-8209-1fecf252c105", + "createdTime": "2020-12-01T09:17:09.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "971b3fbe-1682-48e9-b6e5-a9ed78d306c5", + "createdTime": "2020-12-01T09:14:20.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "916b80ca-91c4-43c3-ab7b-1dab4f0f6f18", + "createdTime": "2020-12-01T09:14:19.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a457fb27-8f1b-4c79-a021-3e7a4b1ab95d", + "createdTime": "2020-12-01T09:14:18.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b0a9aec-e5d9-4179-9888-fd444a20bad0", + "createdTime": "2020-12-01T09:14:17.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a30bb5b-c377-4c99-8b66-c90363147cdb", + "createdTime": "2020-12-01T09:05:06.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9b4e87ff-827e-49d0-b2b9-a65343ccb19f", + "createdTime": "2020-12-01T09:05:06.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f2a233bf-20f0-4ca3-af0d-14354e443e04", + "createdTime": "2020-12-01T09:05:05.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b51eeb6e-1407-41f9-9c6b-b6895c25435a", + "createdTime": "2020-12-01T09:05:05.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f16edb5e-ee89-4da6-8679-f5313eb6bf85", + "createdTime": "2020-12-01T09:01:25.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "534d3bbb-f667-4c48-86c4-19584375d853", + "createdTime": "2020-12-01T09:01:25.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35741c5a-b211-41e0-8e66-dbbfffe3f5e6", + "createdTime": "2020-12-01T09:01:24.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e96bb54-b5e5-4121-996e-6658098319e8", + "createdTime": "2020-12-01T09:01:23.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7ccb5e9-0dae-42c9-8b57-259d12173ad0", + "createdTime": "2020-12-01T08:52:32.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e9b2441c-7cf0-4a27-940f-678507233c42", + "createdTime": "2020-12-01T08:52:32.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "664a2964-8365-405b-a3da-e62f33aac10a", + "createdTime": "2020-12-01T08:52:31.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bb84d0e3-cb04-4c03-9395-f7f4a713424b", + "createdTime": "2020-12-01T08:52:30.761Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2365bb19-3080-4257-bc42-b77e2949f0de", + "createdTime": "2020-12-01T08:40:37.564Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f9495511-d6f4-4fcb-a718-9c97e6178d91", + "createdTime": "2020-12-01T08:40:36.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b16e25e5-b003-4068-abaf-a05f917051e7", + "createdTime": "2020-12-01T08:40:36.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "400a4731-95d6-4c2a-880d-67a4f3b5f711", + "createdTime": "2020-12-01T08:40:35.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78266e97-64bc-4bd3-833e-ba3da74552af", + "createdTime": "2020-12-01T08:36:31.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5038cd2c-bbd1-4e98-8226-f545b20dfd82", + "createdTime": "2020-12-01T08:36:30.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e25065a4-58ed-4f59-8dd5-c524aaf3f56a", + "createdTime": "2020-12-01T08:36:29.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a8012eea-a20a-41e3-9d44-039bd6185c1d", + "createdTime": "2020-12-01T08:36:29.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8c403d8-7052-4ee6-9952-6f637a4d1501", + "createdTime": "2020-12-01T08:25:52.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03897b26-dbd2-4005-b3bd-1e6096929812", + "createdTime": "2020-12-01T08:25:51.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9c2c0798-f096-45f0-b812-a944ed29d16d", + "createdTime": "2020-12-01T08:25:50.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f4e99ec4-1ee9-42aa-aa9b-da612ceb4f93", + "createdTime": "2020-12-01T08:25:48.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50ee1b89-1d9c-4c96-b305-03cac0489c1b", + "createdTime": "2020-12-01T08:21:58.725Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fd8adcad-26a1-4eef-a72c-abf1b306c246", + "createdTime": "2020-12-01T08:21:58.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "02b1ffd1-edc6-4a8c-a650-5e25f130992f", + "createdTime": "2020-12-01T08:21:57.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c24d8c05-3edd-4ad3-b992-86585ed066a0", + "createdTime": "2020-12-01T08:21:56.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59dd1c58-bbdc-4b5c-ba86-1d40af081ddb", + "createdTime": "2020-11-26T09:15:31.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2751bbd8-a599-4cff-9f62-1e82361f84b1", + "createdTime": "2020-11-26T09:15:30.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c883b466-afbd-4aca-a3f8-b38fc1ca23d9", + "createdTime": "2020-11-26T09:15:29.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8aaf7759-4763-4d01-9ebf-98b4beac77da", + "createdTime": "2020-11-26T09:15:27.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d4663d5-d942-42bb-b3bc-dd6d0fe09216", + "createdTime": "2020-11-26T09:12:01.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f4aeaec2-59ad-44b9-8b6d-8e155278b989", + "createdTime": "2020-11-26T09:12:00.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "675c1f30-3c33-45e5-9785-610d16c25194", + "createdTime": "2020-11-26T09:12:00.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "66fa300a-9d3e-4b5c-a9f3-db5b606b9688", + "createdTime": "2020-11-26T09:11:59.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29c4a110-32eb-49cd-94b6-ebafc15885e0", + "createdTime": "2020-11-26T09:03:19.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5787611e-24e7-4fb4-8ba0-f28757bac1ca", + "createdTime": "2020-11-26T09:03:18.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a5c3df8-64d3-4189-ad56-8821e945ab92", + "createdTime": "2020-11-26T09:03:18.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a5a10ab4-916b-4c5e-8a13-f63124fd0c4e", + "createdTime": "2020-11-26T09:03:17.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be32a7bf-f347-4eeb-9443-42b3fc38de4e", + "createdTime": "2020-11-26T08:59:54.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9cf04104-12f8-47b7-aafe-61edad829e4f", + "createdTime": "2020-11-26T08:59:54.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff1d7e57-9713-4095-980e-52911c5fb829", + "createdTime": "2020-11-26T08:59:53.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2f6c95de-f2e4-4f3b-9529-2428dacef09f", + "createdTime": "2020-11-26T08:59:52.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed5886ee-8714-47ba-adbc-d0a5f62d3def", + "createdTime": "2020-11-26T08:50:33.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a8ceccf9-b269-4f35-a50d-858678021927", + "createdTime": "2020-11-26T08:50:32.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3494cbe7-3a35-42f5-8460-91abe2364fbb", + "createdTime": "2020-11-26T08:50:31.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c4a51d79-acda-40a3-8909-e3ceec64655c", + "createdTime": "2020-11-26T08:50:31.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfa54f38-f33b-40ae-b95d-8f81ad3b88e7", + "createdTime": "2020-11-26T08:36:51.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4bec3c5a-b769-47a3-966b-1deab38257bf", + "createdTime": "2020-11-26T08:36:50.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a706a0d0-7419-4e2e-9a51-f81482383867", + "createdTime": "2020-11-26T08:36:49.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8eb32238-69b5-40ea-91e5-adaff4f5f00d", + "createdTime": "2020-11-26T08:36:48.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b08d3a5a-0b53-4c87-a84e-1a2636ec5b58", + "createdTime": "2020-11-26T08:33:21.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "949e8d36-49ae-45b4-8a02-f762579d3d17", + "createdTime": "2020-11-26T08:33:21.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "20b2495f-0434-4007-b46e-fa65a91c3c97", + "createdTime": "2020-11-26T08:33:20.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8e4c2c9b-abca-4854-a724-4a58bcb0536f", + "createdTime": "2020-11-26T08:33:19.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a9f9229-d359-4141-b122-8b82c4a80e8f", + "createdTime": "2020-11-26T08:23:44.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27ba41c4-3764-478c-a78c-8e47f567377f", + "createdTime": "2020-11-26T08:23:44.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ce0f5ac4-3839-4e5e-a468-df0bcf05d42c", + "createdTime": "2020-11-26T08:23:43.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5f378f11-948f-40dc-b3ae-5ca50222126b", + "createdTime": "2020-11-26T08:23:43.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9242ebd-8f45-4203-887a-35d12940ea67", + "createdTime": "2020-11-26T08:20:56.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d5429ecb-2db5-4d09-9805-bf2be37e50b3", + "createdTime": "2020-11-26T08:20:55.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "74d993f6-c264-41b3-8a2b-d6a1f5e297f1", + "createdTime": "2020-11-26T08:20:54.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7ad4b338-a66c-460c-944e-2ccb0064461e", + "createdTime": "2020-11-26T08:20:53.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df7ed036-de5d-40b5-b4c7-cb25e4e78481", + "createdTime": "2020-11-25T17:16:32.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "612731cd-94f9-4361-9bef-3f5ec080d834", + "createdTime": "2020-11-25T17:16:31.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aa6cfde2-b1df-46ab-abc2-a1ca077d1679", + "createdTime": "2020-11-25T17:16:31.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5a980bcb-a2f5-4932-9b21-9d2478498a60", + "createdTime": "2020-11-25T17:16:30.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "300cff3e-6f1c-4c67-8db7-9901f3dc6ea7", + "createdTime": "2020-11-25T17:12:54.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "291e49d4-4c99-4174-9712-a721055a7d69", + "createdTime": "2020-11-25T17:12:53.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7c9822ce-5183-4fbb-8d76-6cd9793cb02b", + "createdTime": "2020-11-25T17:12:52.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "562a250c-587d-4995-9cee-db039062eb46", + "createdTime": "2020-11-25T17:12:51.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "91775e3a-d1de-4877-af99-d425256ac7db", + "createdTime": "2020-11-25T09:37:31.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "79f37aaf-ee81-431d-8df0-3162845b946d", + "createdTime": "2020-11-25T09:37:31.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "81578c3a-24ea-4248-b902-7b602cc38cf6", + "createdTime": "2020-11-25T09:37:30.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "357fec43-32ea-4d48-94db-34bfc92176fa", + "createdTime": "2020-11-25T09:37:29.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1e70db8-133d-4a71-97ff-98c9a668fd26", + "createdTime": "2020-11-25T09:32:33.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3a8158d-42a2-4d9c-b12a-89f0f7dc778e", + "createdTime": "2020-11-25T09:32:32.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b49fa23-4dda-4a0b-91ba-2dc643a78410", + "createdTime": "2020-11-25T09:32:32.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "29e2aded-5884-4a5e-bc16-d6b3bd9e49bd", + "createdTime": "2020-11-25T09:32:31.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e5daf54-26e6-47a2-8aac-51ddfbf9a08f", + "createdTime": "2020-11-25T09:24:32.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63bc2ed5-04e2-4e00-ba93-56f4dc21d113", + "createdTime": "2020-11-25T09:24:31.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f48236d6-a2a1-48bc-8686-ec9afc05a6a8", + "createdTime": "2020-11-25T09:24:30.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c2d8fb23-9d0f-4ba5-8c02-83338d641cff", + "createdTime": "2020-11-25T09:24:29.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e0fb1903-ab8b-46e2-a924-fe733b30c222", + "createdTime": "2020-11-25T09:18:45.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "618d9fdc-0f94-4249-aced-1cb3bcf11cdb", + "createdTime": "2020-11-25T09:18:43.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6db94561-bf7b-4399-8d87-876fad68e6fa", + "createdTime": "2020-11-25T09:18:42.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "02f068e0-48cf-462b-97b0-85346f252c25", + "createdTime": "2020-11-25T09:18:41.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8f742c11-2519-40ec-a8c9-358227250aa4", + "createdTime": "2020-11-25T09:05:01.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2caabe28-3258-41af-8aa2-ac5aec8f0791", + "createdTime": "2020-11-25T09:04:59.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "806e5ac6-1dec-40de-9d28-29f05019e388", + "createdTime": "2020-11-25T09:04:58.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d4152d5d-5ec9-4e92-9809-93401db20888", + "createdTime": "2020-11-25T09:04:57.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87d797b6-1e55-4400-99f0-52ad4e2bbe88", + "createdTime": "2020-11-25T08:48:50.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "98c2a027-a3d0-4447-99f4-9acc9d47c664", + "createdTime": "2020-11-25T08:48:49.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d82c78ce-394c-49fc-a2ec-5dd7888bde6d", + "createdTime": "2020-11-25T08:48:48.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0ee38770-c7d5-45a9-8214-0b0aea49ba1b", + "createdTime": "2020-11-25T08:48:46.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "104a74a8-e85e-4cab-88b6-7e6c05f19095", + "createdTime": "2020-11-25T08:39:57.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "edddd216-198c-4fbb-92f9-698a743337de", + "createdTime": "2020-11-25T08:39:54.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64c296e4-6793-47ec-bd71-8b17d440c319", + "createdTime": "2020-11-25T08:39:52.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3bebd4d3-0729-4094-a3d5-69588617cdc8", + "createdTime": "2020-11-25T08:39:51.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2202d20-118b-4eed-a501-cb4c075d709a", + "createdTime": "2020-11-25T08:25:11.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "082fbb24-db89-4821-9f83-bc257e768d4b", + "createdTime": "2020-11-25T08:25:10.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a24c00d4-f8fd-48ff-9159-33b7d45864ad", + "createdTime": "2020-11-25T08:25:09.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1af63fef-5645-4134-9212-c0747c520274", + "createdTime": "2020-11-25T08:25:09.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba28d7f8-44cb-420d-9e29-f36875f7c1bb", + "createdTime": "2020-11-25T08:21:06.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5c701709-9742-415a-b1eb-64b6e02257bf", + "createdTime": "2020-11-25T08:21:05.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3484556c-af91-4464-a189-d511ef296b37", + "createdTime": "2020-11-25T08:21:04.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "897a9a4c-cb8e-4dd0-9b3d-8785d7e933a8", + "createdTime": "2020-11-25T08:21:04.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9202bad4-0a32-4a9c-9846-a1e297cdc26c", + "createdTime": "2020-11-24T09:51:55.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5031a47f-34b6-443f-bf3a-1d87ebc4ac4c", + "createdTime": "2020-11-24T09:51:54.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f307651f-bb9a-455e-96e8-5eaa30c93917", + "createdTime": "2020-11-24T09:51:54.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b722cd7-fe90-4c21-9965-f1d9fd1733c0", + "createdTime": "2020-11-24T09:51:53.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9a15dd1-300c-43e8-b212-e4632e2b7737", + "createdTime": "2020-11-24T09:46:29.776Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e27b1d29-91f8-4719-9c6c-8b6b8cff0f2e", + "createdTime": "2020-11-24T09:46:29.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3b9c537f-59ce-4ffb-a5f7-5054e020df22", + "createdTime": "2020-11-24T09:46:28.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a652f422-d9bd-4da3-af28-ef0dd23692b5", + "createdTime": "2020-11-24T09:46:27.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f5df77a-1ad4-4907-9cb3-10e51deb43be", + "createdTime": "2020-11-24T09:22:01.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23e87ae8-4470-4b29-9963-352bd8733920", + "createdTime": "2020-11-24T09:22:01.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "04827ed0-e0dd-45e5-9521-052d1027a70d", + "createdTime": "2020-11-24T09:22:00.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "709b184b-6565-4d94-a10b-a1eb27f30ec7", + "createdTime": "2020-11-24T09:21:59.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff1ac345-9d04-4c39-a599-4a8c18b8aba5", + "createdTime": "2020-11-24T09:18:10.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e5273eea-a60d-421e-a9f5-6b1ae2352bea", + "createdTime": "2020-11-24T09:18:09.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "625a7f62-33b1-4bad-bdf5-31d6d0314e54", + "createdTime": "2020-11-24T09:18:08.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3d79878c-ca9f-4f22-8643-315d4a7f4f13", + "createdTime": "2020-11-24T09:18:08.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d89ff3eb-3e3b-41f6-bb9e-f94485806965", + "createdTime": "2020-11-24T08:54:40.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bee8b37e-e8c1-4a6b-9918-125155b8dfd7", + "createdTime": "2020-11-24T08:54:39.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a562cdac-2ff2-41af-802e-31c79bfb8340", + "createdTime": "2020-11-24T08:54:39.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f20ace7d-d0e4-45c0-8bb3-06635da88c50", + "createdTime": "2020-11-24T08:54:38.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "63b31de8-20bf-4a1f-9120-fc62913fb871", + "createdTime": "2020-11-24T08:41:34.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "83218c86-3751-427f-8241-49bd74e05935", + "createdTime": "2020-11-24T08:41:33.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "84b62624-7fe7-4ed9-81b2-febb98876047", + "createdTime": "2020-11-24T08:41:31.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3346de28-f96d-4490-bc04-91f898b3274e", + "createdTime": "2020-11-24T08:41:30.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "303190d3-4adf-43f1-a0b3-9ba9d2abde91", + "createdTime": "2020-11-24T08:37:51.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f9939b94-0e29-48e2-b7de-3fa64e29761c", + "createdTime": "2020-11-24T08:37:50.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0652d8f5-2064-4517-97d3-1344b2168f04", + "createdTime": "2020-11-24T08:37:49.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "adf41570-b6f1-44d3-acb4-568bc3900aa0", + "createdTime": "2020-11-24T08:37:48.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67a02c7d-cb73-447a-b2b1-9866ed88f36c", + "createdTime": "2020-11-24T08:26:28.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "30470fb6-0e5b-4d44-9b0e-352604d0e235", + "createdTime": "2020-11-24T08:26:27.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c529fe0f-765e-48ab-aeb6-5d4fabcba16e", + "createdTime": "2020-11-24T08:26:27.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7c6814d-5c24-4295-bd3c-3bb1531b2768", + "createdTime": "2020-11-24T08:26:26.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b401352e-bc8a-4788-b22e-789e41308b7d", + "createdTime": "2020-11-24T08:22:25.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ac4ead4a-87d4-4d9b-9ddc-1200011588b4", + "createdTime": "2020-11-24T08:22:24.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e0077d5a-3a2a-46f4-b72c-66e5ac402911", + "createdTime": "2020-11-24T08:22:23.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "344c8c38-3c24-4678-9fd0-f5b77a616d53", + "createdTime": "2020-11-24T08:22:23.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6e0e64f-6779-4691-9d4d-71622ba81cba", + "createdTime": "2020-11-23T09:14:07.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5952491d-cf0b-4d58-a1a7-55c41bbd69d9", + "createdTime": "2020-11-23T09:14:06.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9cb5d274-b3ff-42a5-8ffa-8933df8fdd85", + "createdTime": "2020-11-23T09:14:06.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4be9dcda-c80d-40f5-9910-1adc7f160a88", + "createdTime": "2020-11-23T09:14:05.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a9be781-ea7b-46a8-8de8-7d3c55bdd606", + "createdTime": "2020-11-23T09:10:16.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8c6db5fb-a9cb-414f-8ff1-d7af28b8fe69", + "createdTime": "2020-11-23T09:10:16.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "27656fba-84da-4452-ac01-48809a591b5a", + "createdTime": "2020-11-23T09:10:15.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1bc3f527-7d14-4921-8977-7ac96ffa856c", + "createdTime": "2020-11-23T09:10:14.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2bfef47-94f5-49fe-a507-6b4166241d24", + "createdTime": "2020-11-23T09:02:28.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d270f8c8-05c4-494f-b5ec-1a0a1ab58731", + "createdTime": "2020-11-23T09:02:26.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "198db14f-f02d-40ff-8793-93420b47228b", + "createdTime": "2020-11-23T09:02:26.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0c64737f-9ece-4dc3-af78-371d238d988a", + "createdTime": "2020-11-23T09:02:25.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1cc24d83-b1dc-47aa-b55f-261bd99d8252", + "createdTime": "2020-11-23T08:58:47.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92daccc8-9b65-4f69-a6e9-1abc62b06b16", + "createdTime": "2020-11-23T08:58:46.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5f023f2f-62ae-47d2-a2db-8227b6413bde", + "createdTime": "2020-11-23T08:58:46.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eec425fb-5f72-42ca-a315-95f736386d4c", + "createdTime": "2020-11-23T08:58:45.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "727d97a1-175d-4ea0-a0b7-4f9a1f136d8b", + "createdTime": "2020-11-23T08:49:30.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23a512e4-42e0-41cf-ad38-1c845e00aaa7", + "createdTime": "2020-11-23T08:49:30.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4b11305-c6e9-4655-84cc-e7c439f56e35", + "createdTime": "2020-11-23T08:49:29.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c5aa3057-997a-4d29-a3d7-67fe09c8f3b6", + "createdTime": "2020-11-23T08:49:28.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fc9e9af5-475a-497b-8f0f-65ab8ca71635", + "createdTime": "2020-11-23T08:36:30.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "26dab9b2-2b4d-482d-a763-9aeb0125f4ed", + "createdTime": "2020-11-23T08:36:29.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e81fcea-7769-43ad-b1d2-c349a22c0365", + "createdTime": "2020-11-23T08:36:28.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46f3766a-8bf1-4e0d-bb28-677e290152e1", + "createdTime": "2020-11-23T08:36:27.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d71cc287-14af-48ab-a15d-1efade3f923e", + "createdTime": "2020-11-23T08:32:45.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d0c3dc24-069d-4a34-b58c-5be726a3ca56", + "createdTime": "2020-11-23T08:32:44.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2868543a-fa43-4b1b-bf06-8b7df5e5feac", + "createdTime": "2020-11-23T08:32:43.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c1910d0-5bb1-426a-8a09-08088582f385", + "createdTime": "2020-11-23T08:32:42.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e9dcd9de-9339-45ed-aff9-98788b2c1de1", + "createdTime": "2020-11-23T08:25:21.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a047fd88-bf14-4239-8e29-02fbfc55a218", + "createdTime": "2020-11-23T08:25:21.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "90e7cc3b-b02a-4af6-a012-2c087734e706", + "createdTime": "2020-11-23T08:25:20.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e75b898-1e9a-49e8-b18b-103e0bc2ef75", + "createdTime": "2020-11-23T08:25:20.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d9b7b19-2aa4-4f11-b08e-9596cd8518a4", + "createdTime": "2020-11-23T08:21:39.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1118abbb-5886-4955-b5ce-2e7833dc89dd", + "createdTime": "2020-11-23T08:21:38.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fde6dca9-2a9c-4fe6-b483-99224b87b16d", + "createdTime": "2020-11-23T08:21:38.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a83a8c8c-7ff7-4baa-ba17-e766f3e6e094", + "createdTime": "2020-11-23T08:21:37.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78db2142-11c7-4197-9f04-a5e690d9c1ec", + "createdTime": "2020-11-20T09:14:42.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "101cff39-1a8a-4b29-be46-3a555eb41b91", + "createdTime": "2020-11-20T09:14:40.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ea5da00-de5e-402e-8c97-cb3dc460ff4c", + "createdTime": "2020-11-20T09:14:39.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e864a53f-6a93-4e82-86e3-83572d45195d", + "createdTime": "2020-11-20T09:14:38.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7634a082-ae00-499b-9bc5-a42377db9dd4", + "createdTime": "2020-11-20T09:11:09.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5220eb23-6921-4769-b9a4-fc890f63d1a2", + "createdTime": "2020-11-20T09:11:08.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "91786422-3b01-4c85-944a-2723b38e176e", + "createdTime": "2020-11-20T09:11:07.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d8abd5b-ab90-4bcb-9b8d-090870752152", + "createdTime": "2020-11-20T09:11:07.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "339391b0-68b8-4a3a-b752-1af0357e9572", + "createdTime": "2020-11-20T09:01:31.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "39f2b0b9-3172-4cd8-b7c9-1b08afe6d7ac", + "createdTime": "2020-11-20T09:01:31.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e928754e-015b-4ee9-b077-1a9840ad57de", + "createdTime": "2020-11-20T09:01:30.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63a2fdc8-9ed1-430e-98be-0052bb0f6695", + "createdTime": "2020-11-20T09:01:29.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a5aef45-0c34-48bd-9120-2c47979267c7", + "createdTime": "2020-11-20T08:57:33.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fc758cb1-2506-43fb-8e0b-2420c815606a", + "createdTime": "2020-11-20T08:57:32.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "af83ab0b-cbae-4ac9-8601-70336d373d1c", + "createdTime": "2020-11-20T08:57:32.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cdd23345-31f8-4b21-bebb-65b3fa27ea17", + "createdTime": "2020-11-20T08:57:31.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "380d881e-e96d-42b7-9dbf-ba1c575afaba", + "createdTime": "2020-11-20T08:49:11.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "09df9b95-7937-4b01-babc-6764a4e4c5d6", + "createdTime": "2020-11-20T08:49:11.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f3df151d-b64c-4544-91bb-36e5be7c33ce", + "createdTime": "2020-11-20T08:49:10.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6a131c6-98c9-4bb3-be51-305ff75b3de4", + "createdTime": "2020-11-20T08:49:09.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8deaa5d1-d74a-4570-96e0-b134c320ebe0", + "createdTime": "2020-11-20T08:39:21.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3a12c797-6b3b-4ced-8b52-29712e1c518c", + "createdTime": "2020-11-20T08:39:20.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8beda681-7986-4963-94fb-2b9532f27fc2", + "createdTime": "2020-11-20T08:39:19.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da47d3c5-7b8d-41e8-ba26-3b875868e1f6", + "createdTime": "2020-11-20T08:39:19.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "348584e3-27cd-4e11-b10e-1d8d3f765fe1", + "createdTime": "2020-11-20T08:35:11.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a36012b1-40d2-4b0e-b0c0-6f6db0721594", + "createdTime": "2020-11-20T08:35:10.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f420f1ff-2fae-4d98-8651-713e4bfe524a", + "createdTime": "2020-11-20T08:35:09.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f466c520-1a3f-46cf-81e5-318e6c0487d0", + "createdTime": "2020-11-20T08:35:08.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a6de729-d6d9-469a-ba73-d459742dcf3d", + "createdTime": "2020-11-20T08:24:46.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4d28fb8a-5ec0-4626-a36d-2ca9ad4c0ae3", + "createdTime": "2020-11-20T08:24:45.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "07b12dae-a442-404f-8d9b-6721738f79dd", + "createdTime": "2020-11-20T08:24:44.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4ec6e82a-374c-4fb1-b8dc-8771b6297edc", + "createdTime": "2020-11-20T08:24:43.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e79dae4a-4ff9-40d6-a85f-189ed0a1599e", + "createdTime": "2020-11-20T08:21:17.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86d3c786-d476-4b91-8611-7b7dd181b097", + "createdTime": "2020-11-20T08:21:16.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e0925dc-2031-4586-bc38-88f46f70770c", + "createdTime": "2020-11-20T08:21:15.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "40965dd5-7caf-44ba-b0bf-a87065edc895", + "createdTime": "2020-11-20T08:21:15.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aac2244d-361f-4c3d-a7ae-c854639ce36d", + "createdTime": "2020-11-19T09:20:16.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e5192a29-d994-4e34-a662-e555a450c136", + "createdTime": "2020-11-19T09:20:16.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4721b36a-9dc1-4dfa-942c-c565e4b8cbd6", + "createdTime": "2020-11-19T09:20:15.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "913bb68e-b9ca-4451-90eb-d4c0a9806cda", + "createdTime": "2020-11-19T09:20:14.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d749b859-4c42-41da-b365-170b92dd1d60", + "createdTime": "2020-11-19T09:16:31.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8c6c1f6e-44da-41dc-bb31-5dc0782236e5", + "createdTime": "2020-11-19T09:16:30.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b7f71b6b-380d-4db9-99e7-e1a34d088988", + "createdTime": "2020-11-19T09:16:30.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f59a0962-4f07-46cd-8742-66f5c533b716", + "createdTime": "2020-11-19T09:16:29.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd2b6564-caa6-4742-8f90-95cc903bf428", + "createdTime": "2020-11-19T09:09:13.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8494a131-3dfb-46d6-be45-d0ab957dd97e", + "createdTime": "2020-11-19T09:09:13.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db8ca147-6a27-49f4-878b-34f5f125d399", + "createdTime": "2020-11-19T09:09:12.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0dee2932-ff04-412c-acc5-56e1a1044bea", + "createdTime": "2020-11-19T09:09:12.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "95728c53-2f27-4679-b202-5ddc3bc14d4c", + "createdTime": "2020-11-19T09:05:21.553Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9d98dc41-dc73-4890-b6e7-714875f032fd", + "createdTime": "2020-11-19T09:05:20.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e5187cd9-e507-444a-bca0-e93941aae38a", + "createdTime": "2020-11-19T09:05:20.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9c290cda-aefc-498c-b342-db3574d6a00e", + "createdTime": "2020-11-19T09:05:19.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3279683-e43a-4997-85f6-d9740d41cb2b", + "createdTime": "2020-11-19T08:54:49.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "439f98a5-f33d-4bad-9b59-e53268516f1e", + "createdTime": "2020-11-19T08:54:48.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4ab6ade3-9e35-49ae-ba3b-48404abac30f", + "createdTime": "2020-11-19T08:54:48.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2b2a478a-3447-4233-b38a-2545eacc3969", + "createdTime": "2020-11-19T08:54:47.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22849b09-e91a-4c68-bfd0-81e10b695ca1", + "createdTime": "2020-11-19T08:44:54.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4f26dafa-ba8c-48f1-b564-9dae5cba2eb0", + "createdTime": "2020-11-19T08:44:54.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe899493-cd16-4d8b-b6ac-2d145b46212f", + "createdTime": "2020-11-19T08:44:53.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "75658f5b-822b-491d-882f-a5b61d9b1206", + "createdTime": "2020-11-19T08:44:53.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b323636d-b2bc-4f5c-8dd9-68bd3a98ba18", + "createdTime": "2020-11-19T08:40:39.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c41f8a71-863d-402a-aecf-095c6b6dc672", + "createdTime": "2020-11-19T08:40:38.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ab0b7720-43a6-47fe-9c2e-d603f292f43e", + "createdTime": "2020-11-19T08:40:38.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ba2ff5c-9b25-4f2e-b0a4-43431660bf91", + "createdTime": "2020-11-19T08:40:37.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9c18cc7a-6833-4c5a-92e5-aef867126b2a", + "createdTime": "2020-11-19T08:28:48.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e274a9aa-0303-4e6b-81e9-6c816a4f1650", + "createdTime": "2020-11-19T08:28:47.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "120240c1-6e4c-41fe-8310-614eae15bdb3", + "createdTime": "2020-11-19T08:28:46.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c92dd70-e9b0-4690-b797-c9313c8a5377", + "createdTime": "2020-11-19T08:28:45.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "594d9d59-e071-49ba-8249-8ff11420a830", + "createdTime": "2020-11-19T08:25:18.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "06d39536-01ac-45c6-8f23-30c2b7b6c053", + "createdTime": "2020-11-19T08:25:18.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ecc13edc-206c-477c-97ab-a8aee705d53e", + "createdTime": "2020-11-19T08:25:17.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3ac69a0c-d245-4f6a-8ac8-66ba4cc7d4e7", + "createdTime": "2020-11-19T08:25:17.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea7d34a9-7dc9-4389-9198-2c5b408d803a", + "createdTime": "2020-11-18T09:13:50.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f5fe2f36-a80e-44e6-ae97-453e7a731aa6", + "createdTime": "2020-11-18T09:13:49.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ec4b7bef-8b86-40d7-9c81-f6fcc280a7fc", + "createdTime": "2020-11-18T09:13:48.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ce44d47-a8ba-4c5d-9270-94ab8f424483", + "createdTime": "2020-11-18T09:13:47.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "80fad9db-9948-44a6-bee8-269b7739c668", + "createdTime": "2020-11-18T09:10:01.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9ff76dca-f89b-434d-b613-85126ae7eedf", + "createdTime": "2020-11-18T09:10:00.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0fb0521a-7ef2-4668-a322-9f0baae0409b", + "createdTime": "2020-11-18T09:09:59.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d8cca83d-dc33-45fe-bf4e-6d17a2f62e53", + "createdTime": "2020-11-18T09:09:58.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c0b75b3c-ed24-47fa-bfad-7cd62b7eff96", + "createdTime": "2020-11-18T09:01:24.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6d277683-505f-444b-b610-c475d0fd487b", + "createdTime": "2020-11-18T09:01:23.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fd374342-10d5-4e69-822a-c3d561f245b9", + "createdTime": "2020-11-18T09:01:22.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a459ed48-0455-4aa9-a738-f28e45657eb8", + "createdTime": "2020-11-18T09:01:22.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2a4ec20-aea3-4dc1-9c12-ebfaeb4f8b0b", + "createdTime": "2020-11-18T08:57:34.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7156abd4-6a15-40ca-b3f6-47b009175494", + "createdTime": "2020-11-18T08:57:33.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f35bb3df-e414-490a-81bb-26438e976c3d", + "createdTime": "2020-11-18T08:57:33.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e9d3b36-5683-4119-9787-eabdd95b7151", + "createdTime": "2020-11-18T08:57:32.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9c1071bb-7e0a-46cf-b7b8-2c2d310c7dea", + "createdTime": "2020-11-18T08:48:18.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "569c94f7-1ecd-4bf6-89ca-a1f884aa06db", + "createdTime": "2020-11-18T08:48:17.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "009883b4-6c1e-4d00-97aa-e4f8f8da9284", + "createdTime": "2020-11-18T08:48:16.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bceb69d6-8809-4dbd-a0fc-b7d7be2cde8d", + "createdTime": "2020-11-18T08:48:16.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54f9aa9a-eaf1-4c95-9a3a-08157f1d527f", + "createdTime": "2020-11-18T08:35:41.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8271fcf3-733c-4252-a611-7e980d0f84f1", + "createdTime": "2020-11-18T08:35:39.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "26fbe43e-de96-4f85-bdee-743ef63166b7", + "createdTime": "2020-11-18T08:35:38.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6625129c-1a69-4fd6-8f99-2dc1649f2f6f", + "createdTime": "2020-11-18T08:35:37.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de828bf4-0f3e-45b8-b464-83748c076964", + "createdTime": "2020-11-18T08:31:40.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c466b4b8-650a-451a-ad28-73b9b1290b80", + "createdTime": "2020-11-18T08:31:38.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64b52695-9cfd-4456-90e3-36c1040f19dd", + "createdTime": "2020-11-18T08:31:37.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "11df3039-47bb-4096-880c-b84e74692a95", + "createdTime": "2020-11-18T08:31:36.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c661fb20-ad9c-4025-946c-de9e09dbc703", + "createdTime": "2020-11-18T08:24:35.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6a707db5-9e98-4ad7-bf91-6f596beab51b", + "createdTime": "2020-11-18T08:24:34.934Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "806db8ff-308b-490e-92d6-566214bac110", + "createdTime": "2020-11-18T08:24:34.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a3da97e6-74ab-4a55-9b76-95737dcca7eb", + "createdTime": "2020-11-18T08:24:33.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "95233bf0-6bd0-4ea0-97a2-1d0d53ffb067", + "createdTime": "2020-11-18T08:20:30.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "94d02d1c-f05f-4fc6-bb7d-ecc7c10b9d47", + "createdTime": "2020-11-18T08:20:29.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "848fbc01-800b-430f-b49b-522f72a8023d", + "createdTime": "2020-11-18T08:20:28.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59449b05-1a56-4e4b-a67b-f29a99666010", + "createdTime": "2020-11-18T08:20:28.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ffb298fb-b968-4507-8bcc-941659e714fc", + "createdTime": "2020-11-17T19:52:06.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8065c219-dca5-4d2b-a203-75170fbdcdd1", + "createdTime": "2020-11-17T19:52:06.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3b4bf7f2-6351-4771-b3fe-11ff3a4d6fd5", + "createdTime": "2020-11-17T19:52:05.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "47cdaa87-804e-4d6d-ad60-bd864755e2e1", + "createdTime": "2020-11-17T19:52:05.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "faa19113-108e-43bd-8131-c88c127815b7", + "createdTime": "2020-11-17T19:49:30.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f9feec7e-0022-4f29-b9dc-3259ae589231", + "createdTime": "2020-11-17T19:49:30.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bbc0233e-1ecf-4155-bc3b-ee87b7d8df66", + "createdTime": "2020-11-17T19:49:29.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f526567c-9a54-4d90-9e4f-35e875967a2e", + "createdTime": "2020-11-17T19:49:28.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32d78ff1-09d3-4deb-a833-7c06db284ca5", + "createdTime": "2020-11-17T19:46:58.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e5ae4882-8418-4bdd-8d1f-f8d34a05634d", + "createdTime": "2020-11-17T19:46:57.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "37502ab1-9fc9-4f5b-9ded-38a12f951c96", + "createdTime": "2020-11-17T19:46:57.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "84635841-3816-489f-afc3-53e70d6d470e", + "createdTime": "2020-11-17T19:46:56.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "142054d3-c6bc-4f22-8c78-42283f42b289", + "createdTime": "2020-11-17T19:42:35.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9d3dffca-c473-4ac6-9d6b-1e8120a25b55", + "createdTime": "2020-11-17T19:42:34.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cabbbfe7-32f6-45ad-be46-fa9b2e4f18f8", + "createdTime": "2020-11-17T19:42:34.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "29559ad2-b938-4bc1-8ef0-99cc568e6042", + "createdTime": "2020-11-17T19:42:33.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cfe53f46-faa5-405d-a4ec-50a33a67c5ac", + "createdTime": "2020-11-17T19:42:31.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4fb2eb63-65be-4487-b6cb-89972554850f", + "createdTime": "2020-11-17T19:42:30.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0cc19f43-496a-459b-8082-cb7c686e083f", + "createdTime": "2020-11-17T19:42:30.081Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b443c351-ca7f-48e6-8305-7cad3937e011", + "createdTime": "2020-11-17T19:42:29.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "beb1ff7d-94e2-4fc9-8de1-a9fc79e31199", + "createdTime": "2020-11-17T09:09:28.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f52abe61-c093-427d-b01a-cc9d853ec897", + "createdTime": "2020-11-17T09:09:28.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fb5c0d02-8e89-43fe-bd69-3cda5508bd8e", + "createdTime": "2020-11-17T09:09:27.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1f3b6a38-02dc-465a-b12e-dabe8652754c", + "createdTime": "2020-11-17T09:09:26.922Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "31ada6a9-2af4-494a-8a34-ca2f7468aaa2", + "createdTime": "2020-11-17T09:05:31.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72bd6469-b9d0-406a-a2e3-a8b87cf9e53e", + "createdTime": "2020-11-17T09:05:29.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1f816541-7898-4921-a2ee-eca0bbee6307", + "createdTime": "2020-11-17T09:05:28.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f0a29af1-60e6-4890-ac91-c0acd9d89471", + "createdTime": "2020-11-17T09:05:27.831Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb8b7449-20df-404c-9928-52887a22b95e", + "createdTime": "2020-11-17T08:58:54.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6b90a895-37e1-4a6b-bd4c-5d946720bb6d", + "createdTime": "2020-11-17T08:58:53.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2650db4f-a77f-402a-aaae-0616f665e467", + "createdTime": "2020-11-17T08:58:53.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a6571b2-f0f1-472e-9e7c-597941f3b78e", + "createdTime": "2020-11-17T08:58:52.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25daba56-fe7d-440c-8615-49663f1bdffa", + "createdTime": "2020-11-17T08:56:00.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6a2bd0b1-5254-439d-bb86-3350c132fce0", + "createdTime": "2020-11-17T08:55:59.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9c642d5a-6eb4-488a-8e2c-9d884e56ef2e", + "createdTime": "2020-11-17T08:55:58.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd04169e-e6b5-4651-aad7-bd7da23602aa", + "createdTime": "2020-11-17T08:55:58.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76b01182-e0f5-4b7a-98f3-bfe896439098", + "createdTime": "2020-11-17T08:47:40.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "76a7de12-7773-4921-ae77-5281f41622ca", + "createdTime": "2020-11-17T08:47:39.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99b2cb1d-216b-405d-b398-bf1cbad4ba58", + "createdTime": "2020-11-17T08:47:38.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e62194d5-0a83-4a50-aca6-c4eb9a24ae39", + "createdTime": "2020-11-17T08:47:38.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "24410a48-f35e-4a03-ae27-e5f1132b57de", + "createdTime": "2020-11-17T08:34:58.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "56037674-dd95-4774-9d76-eb0b3b2c608f", + "createdTime": "2020-11-17T08:34:57.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0affa045-ae1d-45ec-b7e5-20983192fbdf", + "createdTime": "2020-11-17T08:34:56.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4a515860-4184-4a53-aa89-a29bb6ec57d0", + "createdTime": "2020-11-17T08:34:56.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "693300d6-4a3c-4bff-99cb-1d9516e8693d", + "createdTime": "2020-11-17T08:30:29.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "787c1af1-1580-479b-b09c-dc1125f8e76f", + "createdTime": "2020-11-17T08:30:28.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "50b9107c-b98f-4bc0-b8e2-05e8d7fa192e", + "createdTime": "2020-11-17T08:30:28.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "086fd538-e5ff-49cf-a63c-d61ed3f05da1", + "createdTime": "2020-11-17T08:30:27.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dec945fb-a8f1-4199-9ace-1fd62712ea1e", + "createdTime": "2020-11-17T08:23:32.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "469ecc34-093c-42f1-809d-40d46993b3f5", + "createdTime": "2020-11-17T08:23:32.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a758307-c65b-495d-b2b3-3bb6adb0ee20", + "createdTime": "2020-11-17T08:23:31.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "348b8106-b91e-4904-a108-24ddcefd9041", + "createdTime": "2020-11-17T08:23:31.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f743585b-c994-4b6f-b64d-13e42ceeafdf", + "createdTime": "2020-11-17T08:20:39.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dbc084c0-0b73-429c-9c4e-ed8cae755fb8", + "createdTime": "2020-11-17T08:20:38.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75718c12-f853-4ba0-b6ad-cdfa2997bd30", + "createdTime": "2020-11-17T08:20:37.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b17574b9-c46b-4b85-b8c1-26f08a329be4", + "createdTime": "2020-11-17T08:20:36.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45cb62de-e855-412c-8dc3-41d68998917a", + "createdTime": "2020-11-16T09:11:21.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ae2ab832-adea-4a9c-bc89-fb63c8e54fad", + "createdTime": "2020-11-16T09:11:20.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "78b26af9-6429-4e42-a5d2-9f65c3e2a66c", + "createdTime": "2020-11-16T09:11:19.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "88aacd68-d5fd-4109-bf18-7e698c590dc0", + "createdTime": "2020-11-16T09:11:19.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "706d0cf0-6a14-4f1a-b9af-4a34c10360f2", + "createdTime": "2020-11-16T09:07:35.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd51aa7e-496b-4348-842b-39a5bd89f9f1", + "createdTime": "2020-11-16T09:07:35.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9292c92a-842d-4bf3-b5ed-9fa259f35690", + "createdTime": "2020-11-16T09:07:34.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4808e76d-c179-4394-9411-ea5d3575eb57", + "createdTime": "2020-11-16T09:07:33.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7456cdbe-4970-42f8-9c02-9a2ff695362b", + "createdTime": "2020-11-16T09:00:26.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "79ffa146-6290-445b-8414-f3893fd30c3a", + "createdTime": "2020-11-16T09:00:26.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7084c3ac-feb6-4cc4-82ef-c84a394f8b28", + "createdTime": "2020-11-16T09:00:25.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ebf28686-12b3-4cd1-9491-ec03f74734ae", + "createdTime": "2020-11-16T09:00:25.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7e01ad1-5e33-4331-8752-eb9c15f720d4", + "createdTime": "2020-11-16T08:56:44.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bbe3deeb-9d00-4d18-85d8-3c06d9066fb5", + "createdTime": "2020-11-16T08:56:43.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63d76220-1c3a-40f5-b7de-75d26fec3ec4", + "createdTime": "2020-11-16T08:56:43.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bd9691e-31d9-44ca-9e07-f2a1ead43fbb", + "createdTime": "2020-11-16T08:56:42.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0ba5b3c-37e5-4e76-95b7-dbc2eebb122b", + "createdTime": "2020-11-16T08:47:14.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03b699be-3fb3-4bf9-a03c-6f6e7de28bde", + "createdTime": "2020-11-16T08:47:13.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64d6682f-d82a-460e-9baf-ebd737b2ada7", + "createdTime": "2020-11-16T08:47:12.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dafe4562-229b-4619-8095-0ff8890ec343", + "createdTime": "2020-11-16T08:47:12.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f708cf7d-f50a-4aa2-ac09-098159c7501a", + "createdTime": "2020-11-16T08:38:56.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7f485bc6-91ed-4d5d-ad04-62a1ad8c3395", + "createdTime": "2020-11-16T08:38:55.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4faf6ccb-0844-48aa-8e13-018d593abc39", + "createdTime": "2020-11-16T08:38:55.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0be30137-ba7b-4588-8da7-37a90d25d987", + "createdTime": "2020-11-16T08:38:54.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d8cdfb62-1188-46db-912b-d33caa35bfda", + "createdTime": "2020-11-16T08:35:03.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "43a58f64-9420-4545-a7b7-6ff8e19dc5e1", + "createdTime": "2020-11-16T08:35:02.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f428eb63-36bf-4528-b4b5-bb9ba1313b58", + "createdTime": "2020-11-16T08:35:01.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e58400b-f049-46ae-a5fc-eca5614302b5", + "createdTime": "2020-11-16T08:35:00.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a303b61-2677-460a-ad3c-3828d9a448d5", + "createdTime": "2020-11-16T08:25:04.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8bd46253-f9e6-4b76-96f4-128dde2a8e09", + "createdTime": "2020-11-16T08:25:03.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9a1a26fb-3f04-47b2-9d6d-32763c296592", + "createdTime": "2020-11-16T08:25:03.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6de91861-1328-44f2-88bd-f66728a78610", + "createdTime": "2020-11-16T08:25:02.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ad0d2ec-2473-4bad-ac16-1125bf89288c", + "createdTime": "2020-11-16T08:21:26.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f48a893f-9e7c-40ac-9517-1c596c83c751", + "createdTime": "2020-11-16T08:21:26.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b98ce192-7bd9-401e-a417-d81dc35a8268", + "createdTime": "2020-11-16T08:21:25.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb0381a2-cee7-4dc3-b370-a05f73f22af2", + "createdTime": "2020-11-16T08:21:24.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc808ff9-799f-44bf-84c8-d2abdc406294", + "createdTime": "2020-11-13T22:04:12.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2ae29d0d-9621-4486-82a5-19750036eef7", + "createdTime": "2020-11-13T22:04:12.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "16a8593d-7910-4ad0-add4-6363f3ad95d7", + "createdTime": "2020-11-13T22:04:11.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "46595de5-1b5e-4896-bd76-306da7b305ce", + "createdTime": "2020-11-13T22:04:11.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df99bbd6-c746-4967-991a-c469ea7d65be", + "createdTime": "2020-11-13T22:02:57.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "05558007-515c-400d-b2a9-ab2568609746", + "createdTime": "2020-11-13T22:02:57.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d762bacf-3eca-4fdb-b028-a1b958a8d52b", + "createdTime": "2020-11-13T22:02:56.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a6888385-475c-4873-a50d-ea190d2e773f", + "createdTime": "2020-11-13T22:02:56.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a5afab15-680d-4e36-ad60-ee26b6780b1a", + "createdTime": "2020-11-13T21:55:51.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7cc577bb-7930-41f0-80d9-d0ca438fc945", + "createdTime": "2020-11-13T21:55:50.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a2c0079d-93f9-46ae-8eb0-623e9b3e84cb", + "createdTime": "2020-11-13T21:55:49.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "baf72725-3674-4743-a481-476b95e89183", + "createdTime": "2020-11-13T21:55:48.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c35d82bd-02e3-4c57-9de0-03c560dbb8b4", + "createdTime": "2020-11-13T21:54:26.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ab4590cc-5f28-4afb-8335-d447c30e6f7d", + "createdTime": "2020-11-13T21:54:26.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5a8181c-7df2-4c1c-ba1c-47d7f47b55e9", + "createdTime": "2020-11-13T21:54:26.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "13e18fe8-ee1c-43c8-87e4-7690c834021b", + "createdTime": "2020-11-13T21:54:25.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50ba77ec-7281-4f8c-a7f6-3f635b0ea381", + "createdTime": "2020-11-13T20:28:13.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ad9d60d0-2b31-4f61-8a58-9fd0149b0aee", + "createdTime": "2020-11-13T20:28:12.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b133c26a-43f8-4abb-8b7b-514b8a12f12c", + "createdTime": "2020-11-13T20:28:12.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6276e227-8eed-4484-993e-c91746ad1c48", + "createdTime": "2020-11-13T20:28:11.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ba02009-45eb-4416-960a-e62b4f587f99", + "createdTime": "2020-11-13T20:26:58.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f69427f6-3d31-4874-8197-0de0496ca392", + "createdTime": "2020-11-13T20:26:57.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "365ca868-192a-4631-9a08-2c46ccce67e7", + "createdTime": "2020-11-13T20:26:57.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2cc781cf-c105-4334-abb9-1a2483cfb7a6", + "createdTime": "2020-11-13T20:26:56.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c545ad2-9056-4d0e-9658-4b7b5a6e39b9", + "createdTime": "2020-11-13T20:07:23.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ceaee0e5-43b4-4591-a0ac-0a4320f80cd1", + "createdTime": "2020-11-13T20:07:22.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d2d42da8-cea7-414c-bba6-7ed409c098d5", + "createdTime": "2020-11-13T20:07:22.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dbbebff0-af7f-498e-b789-8f1714942c1d", + "createdTime": "2020-11-13T20:07:22.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d75736a2-642a-4691-bedd-8917e157daa2", + "createdTime": "2020-11-13T19:47:40.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "557e7eac-729f-427f-8c70-a0616b376b60", + "createdTime": "2020-11-13T19:47:39.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57779b4b-ce28-4889-b24d-bae1b6001d6b", + "createdTime": "2020-11-13T19:47:38.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d183cd71-800c-46a2-bf15-d63cecb630e8", + "createdTime": "2020-11-13T19:47:37.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "589b848e-24aa-4e18-8bfe-c31d5cb6793d", + "createdTime": "2020-11-13T19:46:30.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1379eeea-b2db-4bba-9468-bfafe3e56ed2", + "createdTime": "2020-11-13T19:46:29.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "726af1b5-a214-44f4-8064-bf1feed6fc12", + "createdTime": "2020-11-13T19:46:28.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cbed990a-fb7f-4091-911b-39d4f47dfd35", + "createdTime": "2020-11-13T19:46:28.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34c8aee1-2da4-4ca4-919d-a829a813853d", + "createdTime": "2020-11-13T19:37:02.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "88022ac8-435b-4cfb-9398-24b9d8fbaff6", + "createdTime": "2020-11-13T19:37:01.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6450661e-9560-4d0c-80ec-bd663bb28d76", + "createdTime": "2020-11-13T19:37:01.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a644df71-ea76-48f2-8060-83298c2df41e", + "createdTime": "2020-11-13T19:37:00.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a214cfe-1217-4f98-a266-13466226abe4", + "createdTime": "2020-11-13T19:32:52.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f848f796-12c3-4c87-9fb6-6826b3ec25e8", + "createdTime": "2020-11-13T19:32:52.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "51460551-ba52-4bdd-9972-8fca9563976f", + "createdTime": "2020-11-13T19:32:51.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "59492e09-bfa3-48bb-9b73-68bb506e3010", + "createdTime": "2020-11-13T19:32:51.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1825b190-ce11-4e99-9171-350533f50353", + "createdTime": "2020-11-13T09:11:22.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c92af29-a5d9-41c8-82c5-6abcccd03764", + "createdTime": "2020-11-13T09:11:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c2a1c081-1e2f-4356-9bfd-c99094fc6a61", + "createdTime": "2020-11-13T09:11:21.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6281d7d7-6e37-4bf4-a81a-a8d41fae9db8", + "createdTime": "2020-11-13T09:11:20.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "44cb3d1d-eb38-40b6-8292-8f693af291bc", + "createdTime": "2020-11-13T09:07:21.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd50009a-6e73-4fcf-818c-d532bbd2ec13", + "createdTime": "2020-11-13T09:07:21.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3a1cfe73-90c8-457c-afc6-75af57932902", + "createdTime": "2020-11-13T09:07:20.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bfd7ac7-d891-49a1-8445-9d4536645a1e", + "createdTime": "2020-11-13T09:07:19.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "018f6801-efa3-47ab-af01-c1ee5a239fd6", + "createdTime": "2020-11-13T09:00:16.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "daa9a519-3fbf-4b0c-b1bd-ab497dafc57b", + "createdTime": "2020-11-13T09:00:16.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "22cdc14c-2bde-4653-8489-fef1c3d6d53f", + "createdTime": "2020-11-13T09:00:15.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cceab136-55a5-4a82-9a6f-345f6b46568a", + "createdTime": "2020-11-13T09:00:15.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc724a7c-66ad-49e7-8875-87ade182e4d0", + "createdTime": "2020-11-13T08:56:25.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6e18aa91-1fbe-4fc2-896a-3db37ed400a3", + "createdTime": "2020-11-13T08:56:24.81Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9eff227e-0e15-40fb-ad05-d49195e63e15", + "createdTime": "2020-11-13T08:56:24.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49cfcfa8-3f6c-4a65-a6c4-239a052a8278", + "createdTime": "2020-11-13T08:56:23.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9c79e12f-f0df-41f4-937b-86545b64aeb9", + "createdTime": "2020-11-13T08:47:30.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f6e39216-f85a-4ac4-b8d4-9a190cebbb68", + "createdTime": "2020-11-13T08:47:30Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dde1e79f-76a2-42ac-8055-d03d8bf7f9c7", + "createdTime": "2020-11-13T08:47:29.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4ce326c7-302f-4ab2-9171-26c63f410ff5", + "createdTime": "2020-11-13T08:47:28.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "41153e2b-0186-4967-88dd-14b00cffa68f", + "createdTime": "2020-11-13T08:36:46.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ebb035c2-80ef-4aa0-9337-31978f60dc66", + "createdTime": "2020-11-13T08:36:45.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d4f0c8f8-f038-43a9-a1ba-66f51fe79f57", + "createdTime": "2020-11-13T08:36:44.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e5e11421-2651-492f-83a0-e9d5c20fa5cd", + "createdTime": "2020-11-13T08:36:42.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bb3e00e9-dbc4-4e1e-abc8-17ad282a4e82", + "createdTime": "2020-11-13T08:32:55.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "84d0f31c-b525-4cac-80e1-4b075604fce9", + "createdTime": "2020-11-13T08:32:53.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3fe2781-045d-4e35-bdd5-200a1f5ce0d8", + "createdTime": "2020-11-13T08:32:52.912Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0fbca2c4-2632-4e2b-8c99-bba1c3ec9c6a", + "createdTime": "2020-11-13T08:32:51.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4aa0eba-58e8-4866-abd6-bb6ac364b0e5", + "createdTime": "2020-11-13T08:25:18.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db639f71-1cd6-404b-85ce-79a5ab5e73ca", + "createdTime": "2020-11-13T08:25:18.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ef6ec940-3ba4-449d-8f70-79d7ad52f09d", + "createdTime": "2020-11-13T08:25:17.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "44b577a0-ef4f-418f-a150-bccc939438d8", + "createdTime": "2020-11-13T08:25:16.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d99b2cdf-06ec-490d-9a53-135b053491ed", + "createdTime": "2020-11-13T08:21:12.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e12d49ca-797f-4bef-b10d-d9c3b66c7858", + "createdTime": "2020-11-13T08:21:09.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b823afb1-e77d-4036-8a4c-be5b481270a5", + "createdTime": "2020-11-13T08:21:08.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "13d6fe76-bc87-4d6c-98ce-613815f3b0ac", + "createdTime": "2020-11-13T08:21:05.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86a3e675-f7cb-474b-85d2-7891f404a90d", + "createdTime": "2020-11-13T01:23:42.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "de06c379-4ab7-4eca-8b30-4292118e44bc", + "createdTime": "2020-11-13T01:23:41.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bc016ccf-4703-43e7-a380-a3089753244b", + "createdTime": "2020-11-13T01:23:41.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b7eb24f7-d36a-4adb-91aa-cf13bda6db07", + "createdTime": "2020-11-13T01:23:40.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "498ae3c9-98b5-442e-893a-9261b5d9c8e5", + "createdTime": "2020-11-13T01:14:40.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4b0da07-3b80-41bb-9fe5-706dd21cd7b0", + "createdTime": "2020-11-13T01:14:39.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "033a83a9-722e-4dcb-9912-899edcebc6f0", + "createdTime": "2020-11-13T01:14:39.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a379554c-9b37-4108-8dc6-02a80a7bcaaf", + "createdTime": "2020-11-13T01:14:38.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2cb86ff-7e06-46ea-8399-156541496bcd", + "createdTime": "2020-11-13T01:12:41.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5922ad48-0b39-4ce5-97e9-f35fa1bd9771", + "createdTime": "2020-11-13T01:12:40.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "411cb330-3170-4823-83be-582958b03346", + "createdTime": "2020-11-13T01:12:40.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "564d2052-414b-40bd-a758-ecb6d75fc3eb", + "createdTime": "2020-11-13T01:12:39.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a08644c0-6068-4432-ac6e-517b20ac478b", + "createdTime": "2020-11-13T00:25:10.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0e9b5a3e-aaca-4445-919b-a775bd64071d", + "createdTime": "2020-11-13T00:25:09.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c89d02b7-c416-46f0-85cf-5d8ac315af94", + "createdTime": "2020-11-13T00:25:09.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d1cc8823-63a9-4da7-a93c-fdeb58fb3c47", + "createdTime": "2020-11-13T00:25:08.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1133c3cd-e344-43a0-8b80-14e7e63a9d6e", + "createdTime": "2020-11-12T23:17:17.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d2e7ae47-908f-41dd-867d-4b5dd93625a1", + "createdTime": "2020-11-12T23:17:17.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "78ea6979-2fe7-4b22-8dcf-f2eb82c41cd4", + "createdTime": "2020-11-12T23:17:16.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2322fd4c-260d-4ae5-b80f-a452402d9bf9", + "createdTime": "2020-11-12T23:17:16.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5e675f8-1b17-45c8-87c3-e1c90e875957", + "createdTime": "2020-11-12T23:10:49.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6cc6491d-4f3d-4cd7-90ab-5fdd348d306e", + "createdTime": "2020-11-12T23:10:49.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "248bf97b-5f5e-41cb-8af6-f2596b99ef3c", + "createdTime": "2020-11-12T23:10:48.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7537f620-7201-41eb-9d98-6a111349a609", + "createdTime": "2020-11-12T23:10:48.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9796afaf-f238-4ded-a0e5-fd7e90be8b9b", + "createdTime": "2020-11-12T17:31:42.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "f136c321-ee10-43f5-a8ef-17c28af81db9", + "createdTime": "2020-11-12T17:31:41.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "3667414e-d06f-4bf4-9757-36789248636b", + "createdTime": "2020-11-12T17:31:41.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:31:40.054Z", + "endTime": "2020-11-12T17:31:40.054Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5e676049-4e22-47ba-9c63-359f06d189ea", + "createdTime": "2020-11-12T17:31:40.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:31:40.054Z", + "endTime": "2020-11-12T17:31:40.054Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c8b6f77-55a6-4e22-8813-feb84adfae1f", + "createdTime": "2020-11-12T17:31:39.564Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "f4c529c2-a0e0-4ff5-a618-080101e4e2f1", + "createdTime": "2020-11-12T17:31:39.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "7f8e27fe-de5f-4345-a7e2-814aeadef17d", + "createdTime": "2020-11-12T17:31:38.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:31:37.899Z", + "endTime": "2020-11-12T17:31:37.899Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "13719b79-00d7-4e39-9ed4-03235b727d83", + "createdTime": "2020-11-12T17:31:38.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:31:37.899Z", + "endTime": "2020-11-12T17:31:37.899Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "232e3204-951b-46e3-8a46-7850d92831a0", + "createdTime": "2020-11-12T17:30:00.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0ce7546-a247-459a-97eb-3ddc08944241", + "createdTime": "2020-11-12T17:29:55.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "3b870415-9fdf-49bc-9752-989ab359eaf5", + "createdTime": "2020-11-12T17:29:55.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "02c90ec5-36b5-4fed-8e67-98abefdf3a33", + "createdTime": "2020-11-12T17:29:54.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:29:54.153Z", + "endTime": "2020-11-12T17:29:54.153Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2da960ca-e54e-421b-8ae7-c5af55e504fe", + "createdTime": "2020-11-12T17:29:54.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:29:54.153Z", + "endTime": "2020-11-12T17:29:54.153Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f7b278f-2553-4387-a7ee-1cd879df656e", + "createdTime": "2020-11-12T17:29:53.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "6db007e5-26ea-4ebc-8bac-19785bfddb60", + "createdTime": "2020-11-12T17:29:53.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "e668bf3b-6356-42ef-9d93-b314d362ec44", + "createdTime": "2020-11-12T17:29:52.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:29:52.19Z", + "endTime": "2020-11-12T17:29:52.19Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a46c30eb-64f9-4e28-a294-c18e5510178f", + "createdTime": "2020-11-12T17:29:52.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:29:52.19Z", + "endTime": "2020-11-12T17:29:52.19Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d7417a4-34db-4326-93f1-a236fca6c819", + "createdTime": "2020-11-12T17:28:47.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83ec0343-4133-49ae-82a9-5be1b75db371", + "createdTime": "2020-11-12T09:17:34.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f955ba16-cc56-4a16-bbe7-3603097190f1", + "createdTime": "2020-11-12T09:17:33.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6d84dea5-9360-46c9-8479-6068aa3df262", + "createdTime": "2020-11-12T09:17:33.272Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b69b160b-a6fa-4fc8-a05d-2621161b119f", + "createdTime": "2020-11-12T09:17:32.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbcc013f-277e-4f89-98a7-cd8651713f15", + "createdTime": "2020-11-12T09:13:39.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fe20a441-99ba-4e09-bff1-b167eaa24fd0", + "createdTime": "2020-11-12T09:13:38.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7436b5bb-e423-4e02-8bb5-a3232a732e4d", + "createdTime": "2020-11-12T09:13:37.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2cb4e9e3-a0c3-49c5-9193-1ead852486aa", + "createdTime": "2020-11-12T09:13:37.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "abab87d7-0289-4723-9239-5cec3ab4112a", + "createdTime": "2020-11-12T09:04:05.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17fa7339-01ae-457c-872b-bd953c59bdec", + "createdTime": "2020-11-12T09:04:05.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c09925b7-a9d5-49e7-8b94-a4406202d97b", + "createdTime": "2020-11-12T09:04:04.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb5df8c1-514e-4ddd-b8d5-a529a48e3551", + "createdTime": "2020-11-12T09:04:04.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8aacfb30-fd53-4e78-86ba-7873b2dd2a41", + "createdTime": "2020-11-12T09:00:25.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7dc9c794-9e39-448f-afb2-feb3370804ef", + "createdTime": "2020-11-12T09:00:25.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "47310bab-87f7-46e3-afbf-14fe2a5543ec", + "createdTime": "2020-11-12T09:00:24.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d693f9e-1731-41a5-b875-745ec9fb05d3", + "createdTime": "2020-11-12T09:00:23.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce2a1ba8-4047-413d-905f-b1ee63a3af81", + "createdTime": "2020-11-12T08:49:07.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fe132fed-2db2-4f8b-b339-1a93b21c1cee", + "createdTime": "2020-11-12T08:49:06.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1dfc227-e37f-4fb1-91fa-c52a9518bc59", + "createdTime": "2020-11-12T08:49:06.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e0dccfc-e292-49bb-a152-07904ed325f3", + "createdTime": "2020-11-12T08:49:05.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e6e8fc2-11ca-4052-b9ee-d8a69c2aff17", + "createdTime": "2020-11-12T08:36:15.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0a78bdbc-bba1-4b6c-bd76-1828b2e40190", + "createdTime": "2020-11-12T08:36:15.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "18a6bcf9-971b-44ea-8153-4e4a00274ed3", + "createdTime": "2020-11-12T08:36:14.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b12abb3-034e-4417-bf4b-0ff3815bc429", + "createdTime": "2020-11-12T08:36:13.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c55d980d-cb01-41a6-aa23-2962c25dace9", + "createdTime": "2020-11-12T08:31:53.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d91ecf-8cab-4302-8128-2669acbd7dc1", + "createdTime": "2020-11-12T08:31:52.369Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "44163547-d91b-401c-89af-46b7d87d2338", + "createdTime": "2020-11-12T08:31:51.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f0cbe9ce-3e1e-42d2-baf7-60d225b09336", + "createdTime": "2020-11-12T08:31:50.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e89ba5f-0029-4565-ada3-87658d142de5", + "createdTime": "2020-11-12T08:24:37.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a90547aa-649a-4206-aa47-5cdd5f8ced02", + "createdTime": "2020-11-12T08:24:37.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "411ebe99-61ec-4f04-b00e-5397f86601a5", + "createdTime": "2020-11-12T08:24:36.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fcd37d5b-2779-497f-86e9-dd6e29814f68", + "createdTime": "2020-11-12T08:24:36.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1970eef5-cff7-4be1-92f3-e1ab34dacbd9", + "createdTime": "2020-11-12T08:21:32.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e2dbd95-31fe-4359-bd1f-1e335265030b", + "createdTime": "2020-11-12T08:21:32.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "49b2b88e-196b-4c23-8e8d-8298c6cbdbb6", + "createdTime": "2020-11-12T08:21:31.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db0269cb-3b0a-4192-a7dd-b4c25324dcb5", + "createdTime": "2020-11-12T08:21:31.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bf078a61-edfb-4a3e-a8c0-c32551a508a3", + "createdTime": "2020-11-11T09:12:16.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a5d7ac3b-05ac-4360-8797-90e45ca2b0ad", + "createdTime": "2020-11-11T09:12:16.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "14d0efc0-b3cd-4bfd-81ac-ad71d148f749", + "createdTime": "2020-11-11T09:12:15.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "253c678d-ca5b-46a3-90c3-981b427803bc", + "createdTime": "2020-11-11T09:12:15.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "951a7371-fb3e-4606-93db-d7d0d1934a28", + "createdTime": "2020-11-11T09:08:40.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0d15d0b2-888c-4ee7-9870-bbfd6d1d5da3", + "createdTime": "2020-11-11T09:08:39.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7ce84938-8b1c-4f8d-b3db-90d11d761ad8", + "createdTime": "2020-11-11T09:08:39.188Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c81c4f73-3d43-40e3-a2b5-b49f1c57688f", + "createdTime": "2020-11-11T09:08:38.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0164f277-f8ab-4ef4-a556-56159f8e5663", + "createdTime": "2020-11-11T09:01:37.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51b6d93d-d7d6-45b0-9dec-1d84e749e502", + "createdTime": "2020-11-11T09:01:36.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e0f7c535-4c9e-4103-84ef-78faa9a50ddb", + "createdTime": "2020-11-11T09:01:36.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b152d986-721c-4427-abf4-36805a1d3b0e", + "createdTime": "2020-11-11T09:01:35.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1875373-034c-480b-8c0c-68d005dc2258", + "createdTime": "2020-11-11T08:57:58.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "deab1924-ff83-4d99-aeb2-e21a562cc181", + "createdTime": "2020-11-11T08:57:58.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6028381c-9826-415b-b31b-82a841ebc949", + "createdTime": "2020-11-11T08:57:57.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db9e93ae-b035-49f2-81a8-f2d15d1bd7ef", + "createdTime": "2020-11-11T08:57:57.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e16f168-ce6d-4bc9-86ee-4ab10f4697a9", + "createdTime": "2020-11-11T08:48:06.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "87e7be94-1f2a-4aea-8014-8a38a757fbb2", + "createdTime": "2020-11-11T08:48:05.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "abf3cdfb-ead3-4b64-aa67-dc662c3bff0c", + "createdTime": "2020-11-11T08:48:04.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "87dbe4ea-2b2a-4e24-9986-e34382ba3895", + "createdTime": "2020-11-11T08:48:04.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e62cf637-f29c-466a-a378-08fc68d62bb8", + "createdTime": "2020-11-11T08:35:48.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "16f4e2de-9f15-45e5-b544-2e481a656642", + "createdTime": "2020-11-11T08:35:48.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3e17d608-3234-4ccf-8304-2600a2936e57", + "createdTime": "2020-11-11T08:35:47.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad0f8178-c7d7-4173-9a6d-5365940c7323", + "createdTime": "2020-11-11T08:35:46.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b255be0-b0eb-4ffd-bbfc-54f0a10e1716", + "createdTime": "2020-11-11T08:31:38.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c87dad98-1245-45e4-9559-62c432ad24c9", + "createdTime": "2020-11-11T08:31:37.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2ee0b582-bf31-4af6-8684-d781ae138c86", + "createdTime": "2020-11-11T08:31:36.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b38b239f-6d45-4023-befc-1c9d555f3df2", + "createdTime": "2020-11-11T08:31:36.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc77bc1e-7514-4849-a1b0-d45b7d7791de", + "createdTime": "2020-11-11T08:24:29.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d11ee66e-f576-4a1c-942e-8c2045c7bbd3", + "createdTime": "2020-11-11T08:24:28.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f16dec-f11d-4bfa-b5f5-4e73241f802c", + "createdTime": "2020-11-11T08:24:27.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa4ffaa5-2b54-466e-9a4f-b9c1edc23a44", + "createdTime": "2020-11-11T08:24:26.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dcbde5c4-8a5d-4923-93e3-71d81f84da02", + "createdTime": "2020-11-11T08:21:19.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8767960e-7ba3-43c1-9a79-bdade42dc16f", + "createdTime": "2020-11-11T08:21:19.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eaf0ce90-00d1-4f59-9057-e022db60609a", + "createdTime": "2020-11-11T08:21:18.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "666a18e1-00ef-4553-8bd8-ba96f1d26fe2", + "createdTime": "2020-11-11T08:21:18.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "719d9f1a-176d-439c-8c7b-18b874265d58", + "createdTime": "2020-11-10T21:28:01.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "e1d4633b-047a-448f-9a36-04b50a26423d", + "createdTime": "2020-11-10T21:28:01.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "6b8d94ca-717f-408c-84b9-0a77659c2103", + "createdTime": "2020-11-10T21:28:00.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:27:59.37Z", + "endTime": "2020-11-10T21:27:59.37Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7cd2165-4160-469d-94d1-876dd2cf7d69", + "createdTime": "2020-11-10T21:27:59.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:27:59.37Z", + "endTime": "2020-11-10T21:27:59.37Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "572c91a7-e955-4971-a7e2-48e571b7df97", + "createdTime": "2020-11-10T21:27:58.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "6f090e4d-8a13-430c-9795-e861c5cda67d", + "createdTime": "2020-11-10T21:27:58.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "8d9d4de4-d75c-48dc-bf69-b2b6b66c4148", + "createdTime": "2020-11-10T21:27:58.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:27:57.407Z", + "endTime": "2020-11-10T21:27:57.407Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46b4c9ab-2041-4965-8dca-08edf457e5d1", + "createdTime": "2020-11-10T21:27:57.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:27:57.407Z", + "endTime": "2020-11-10T21:27:57.407Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18c26895-41aa-4a34-a335-54f21719ca8e", + "createdTime": "2020-11-10T21:26:53.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5971573f-a46d-46a8-aa56-309f7aa8614a", + "createdTime": "2020-11-10T21:26:48.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "83c4a4a5-b7fe-4f98-8b81-0e2f42482587", + "createdTime": "2020-11-10T21:26:47.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "1f998703-0a3b-49fe-9e75-c178c0fcae5a", + "createdTime": "2020-11-10T21:26:47.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:26:46.695Z", + "endTime": "2020-11-10T21:26:46.695Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "09150f1f-cf65-44ae-879e-aa9216b36d0d", + "createdTime": "2020-11-10T21:26:46.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:26:46.695Z", + "endTime": "2020-11-10T21:26:46.695Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "afcdfc99-6cd4-4303-8778-88929ccd0d74", + "createdTime": "2020-11-10T21:26:46.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "20464395-a962-4a61-8bd0-6e1cfdd3faf3", + "createdTime": "2020-11-10T21:26:45.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "ba069235-3399-46e3-86a0-2afab07198ed", + "createdTime": "2020-11-10T21:26:45.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:26:44.023Z", + "endTime": "2020-11-10T21:26:44.023Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa8c3cd8-690d-4853-a048-e7872861f507", + "createdTime": "2020-11-10T21:26:44.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:26:44.023Z", + "endTime": "2020-11-10T21:26:44.023Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57a93d63-adf6-426c-8f59-85fb8028e719", + "createdTime": "2020-11-10T21:25:28.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee2388c-0eda-47df-948c-ea27d9752cb5", + "createdTime": "2020-11-10T21:13:19.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "88c5aa65-1863-4bb9-b6e2-57b83de82aa8", + "createdTime": "2020-11-10T21:13:18.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "47a4873a-ca9b-42f4-ae5e-c1b892298092", + "createdTime": "2020-11-10T21:13:18.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:13:17.619Z", + "endTime": "2020-11-10T21:13:17.619Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0bf10246-e98f-424e-abc1-5fb43e2fb28e", + "createdTime": "2020-11-10T21:13:17.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:13:17.619Z", + "endTime": "2020-11-10T21:13:17.619Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3952ae86-58ed-49be-8125-69dc4f79480e", + "createdTime": "2020-11-10T21:13:17.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "d76dd8e0-66f2-48fb-9e30-cbd17b4f8596", + "createdTime": "2020-11-10T21:13:16.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "2a7f8ae9-d594-47b3-9619-bf5593a48646", + "createdTime": "2020-11-10T21:13:16.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:13:15.681Z", + "endTime": "2020-11-10T21:13:15.681Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c7b0c3f-af2f-4c1d-9032-dd8eb05c441e", + "createdTime": "2020-11-10T21:13:15.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:13:15.681Z", + "endTime": "2020-11-10T21:13:15.681Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9d9eb5f-a49f-461c-a31d-38a20b1a26c8", + "createdTime": "2020-11-10T21:11:59.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a21fe860-76de-430f-afc1-3ffd9ae33194", + "createdTime": "2020-11-10T21:11:55.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "c7c08a20-a8df-4b00-a63a-b3e3a13eba07", + "createdTime": "2020-11-10T21:11:54.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "cb791265-1f34-4def-881a-72a56ecbdf5d", + "createdTime": "2020-11-10T21:11:54.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:11:53.796Z", + "endTime": "2020-11-10T21:11:53.796Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3356a22-8575-4809-af51-dbf8c5b2fd21", + "createdTime": "2020-11-10T21:11:54.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:11:53.796Z", + "endTime": "2020-11-10T21:11:53.796Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79b06d52-322d-4805-9d62-412796318735", + "createdTime": "2020-11-10T21:11:53.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "8954e375-8b44-47b7-a2e7-4e738b1d4841", + "createdTime": "2020-11-10T21:11:53.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "54d7c406-748d-4b76-b8cf-226881a4936c", + "createdTime": "2020-11-10T21:11:52.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:11:51.828Z", + "endTime": "2020-11-10T21:11:51.828Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "13975084-267f-48cf-a177-01ad86328786", + "createdTime": "2020-11-10T21:11:52.081Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:11:51.828Z", + "endTime": "2020-11-10T21:11:51.828Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "564e2ec9-5db0-4eab-9cb5-fd259b9a37b7", + "createdTime": "2020-11-10T21:10:37.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "41b39175-b6fa-4c6a-8dfb-51bacdc658be", + "createdTime": "2020-11-10T19:40:19.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23c3554a-89e4-4ac2-92ae-f97c0816f5f0", + "createdTime": "2020-11-10T19:40:09.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ac8d62a-1a5f-4bda-a313-8ba3a8ac954b", + "createdTime": "2020-11-10T19:40:02.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "60ed588a-1416-4aed-af95-5d7f1d5336ca", + "createdTime": "2020-11-10T19:39:59.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7fc3e3a-28ca-46a1-b9a3-f1b986243b59", + "createdTime": "2020-11-10T19:39:50.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7257338c-aff5-4bf1-853f-644950d305df", + "createdTime": "2020-11-10T19:38:46.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b86f1704-33f1-4783-8f9d-363d2c2e5739", + "createdTime": "2020-11-10T19:38:35.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aed129dd-2f2b-4852-9448-3cbd05c6cc79", + "createdTime": "2020-11-10T19:38:25.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d3e33f7-78f2-4a41-bede-bb32c7eefeb7", + "createdTime": "2020-11-10T19:38:23.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86eb43d4-e3db-4128-b6e4-9fe0e96977b5", + "createdTime": "2020-11-10T19:38:13.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "709f78ed-3e71-4efe-a7b1-550bcf2046ba", + "createdTime": "2020-11-10T19:40:23.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "eb8e3787-0f2d-4cbc-8061-3a2f8ae26ebc", + "createdTime": "2020-11-10T19:40:21.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6ace6a54-b386-4f78-acb3-4d1c7e8e0410", + "createdTime": "2020-11-10T19:40:17.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "82da3454-9a62-4e96-81da-4954c6df3964", + "createdTime": "2020-11-10T19:40:14.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "862768c4-e878-4dd2-ad66-32728619f973", + "createdTime": "2020-11-10T19:40:12.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "84767021-7307-4d0d-933f-e28284f54ddc", + "createdTime": "2020-11-10T19:40:07.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b48d1585-32e2-4810-99a7-995f3f1c2297", + "createdTime": "2020-11-10T19:40:05.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0b3edcfd-2608-4f8f-836d-1455fb4f8bd8", + "createdTime": "2020-11-10T19:37:22.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06c7040d-1a13-4698-98f2-a317c5150e91", + "createdTime": "2020-11-10T19:40:03.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8183bea-11bb-4d45-8f05-33ed4862cc44", + "createdTime": "2020-11-10T19:39:58.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6ba55b9d-4ac6-4779-a05c-9ab024db033d", + "createdTime": "2020-11-10T19:39:54.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c1d6dfbb-d707-42e0-9e54-b964aa6db861", + "createdTime": "2020-11-10T19:39:53.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "074a1af8-d75d-4390-9492-7292d6d75577", + "createdTime": "2020-11-10T19:39:47.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "62fd52a4-581c-4369-aba4-89d5ab662588", + "createdTime": "2020-11-10T19:37:11.553Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e20798d1-6c55-4966-b0fd-5a897131ae6a", + "createdTime": "2020-11-10T19:38:50.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "eba88cda-b439-4644-befd-3e33a5650454", + "createdTime": "2020-11-10T19:38:48.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d29ae5db-551b-4046-9c75-1e0e6f671664", + "createdTime": "2020-11-10T19:38:43.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "128c02bd-5b0f-420b-bf3f-280d915fce30", + "createdTime": "2020-11-10T19:37:05.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d36a48bc-40d1-4b0d-9320-3709cc565a0a", + "createdTime": "2020-11-10T19:38:40.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9528cc57-09a7-4812-bbdc-d3c110a35593", + "createdTime": "2020-11-10T19:38:38.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a56c8436-3ad3-48d0-99f6-2654f3dfdfca", + "createdTime": "2020-11-10T19:38:30.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e1aac5e2-c285-4571-819e-948707a26f04", + "createdTime": "2020-11-10T19:38:29.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "16eca5f2-14e8-41e6-86d1-f3c5ca315ca7", + "createdTime": "2020-11-10T19:38:27.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8195ec2c-362c-494a-83ca-4b758b5fcfbb", + "createdTime": "2020-11-10T19:38:20.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf96482b-6cb0-46d1-8719-ef638fd797ba", + "createdTime": "2020-11-10T19:38:17.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "80b5172a-5cc7-4897-980e-a506602191cd", + "createdTime": "2020-11-10T19:38:16.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "42408df7-07ff-4499-a31f-de82ee84b2d5", + "createdTime": "2020-11-10T19:38:09.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7c702e02-fff9-4f0f-8bfd-cda08d97e164", + "createdTime": "2020-11-10T19:37:02.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe179c5e-035c-4be1-8818-3780b40be0d4", + "createdTime": "2020-11-10T19:36:54.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64535297-257e-449f-909e-257002ba09b0", + "createdTime": "2020-11-10T19:37:25.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fd92e8b8-19d1-4bbf-8eff-1e8eea1e07ff", + "createdTime": "2020-11-10T19:37:23.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8f1ecf83-dc3e-49e0-8556-195206be5b19", + "createdTime": "2020-11-10T19:37:19.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "53221801-43b3-41fc-829c-51014eb33ab7", + "createdTime": "2020-11-10T19:37:15.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1e646f23-fc93-49bf-9bdd-fb85d2a78bfe", + "createdTime": "2020-11-10T19:37:14.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bb3d38ec-19a0-44f2-81fa-fdc036462cea", + "createdTime": "2020-11-10T19:37:08.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1802c6a9-4f5f-4358-9f41-6586eb4e884c", + "createdTime": "2020-11-10T19:37:07.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "50d8a34a-9818-4cb3-997c-c143d5dc4809", + "createdTime": "2020-11-10T19:37:06.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2589dc2a-6ce8-457a-9e4c-2cf10a9daf07", + "createdTime": "2020-11-10T19:37:01.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5818065d-6581-4821-a60c-544bb28c71e1", + "createdTime": "2020-11-10T19:36:57.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "43962562-dd27-4c73-8600-ae4bba0e485a", + "createdTime": "2020-11-10T19:36:56.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6ac3649-5604-4b05-924d-2147627760e8", + "createdTime": "2020-11-10T19:36:51.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "42075982-6072-4f3d-9d24-96a62980d6b2", + "createdTime": "2020-11-10T19:30:18.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "daaffaf5-e470-45aa-ac30-c294e1822fb3", + "createdTime": "2020-11-10T19:30:06.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46553a9e-4d2a-4eb3-8a78-ef3b7098d461", + "createdTime": "2020-11-10T19:29:57.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1996f32-0a64-499c-976e-a44a2fa9f21b", + "createdTime": "2020-11-10T19:29:54.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "650e62f8-7b4a-4bd2-a287-20eb652838c8", + "createdTime": "2020-11-10T19:29:42.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c122d4f6-3f71-49d3-9910-f80475b88c8f", + "createdTime": "2020-11-10T19:30:23.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "088bdf85-c1fe-454b-b990-dc2dcc079162", + "createdTime": "2020-11-10T19:30:20.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "199a99e6-9394-43e6-b7fe-fab45470207e", + "createdTime": "2020-11-10T19:30:15.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7cb4b5c7-de4c-4e09-a8b5-238371e578ce", + "createdTime": "2020-11-10T19:27:19.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7f05dc4-1c8a-45cf-a4c9-10e5386ffb4d", + "createdTime": "2020-11-10T19:30:11.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bbec08b2-66ba-4cfd-a8eb-b9d2541ec44e", + "createdTime": "2020-11-10T19:30:10.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "507c5219-4cb3-4c07-a64d-73ab1a998c87", + "createdTime": "2020-11-10T19:30:03.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ed0dd8b1-64f2-4fe8-b370-7dc555a875df", + "createdTime": "2020-11-10T19:30:01.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f0ef4f0a-f6f2-45db-93c6-f17ba558f70b", + "createdTime": "2020-11-10T19:29:59.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5e00262c-de51-471b-b2ca-f290b6b09c7d", + "createdTime": "2020-11-10T19:29:52.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56fbecdc-ec15-486d-904c-f8d6a7985960", + "createdTime": "2020-11-10T19:29:47.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "99e6b02a-7013-403f-9b11-37b88ddfc0fb", + "createdTime": "2020-11-10T19:29:45.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d6a08a96-0255-4331-adae-2dc1d8c2f2bf", + "createdTime": "2020-11-10T19:29:38.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9fd1323d-80dd-4265-bb9f-6057f146b317", + "createdTime": "2020-11-10T19:27:08.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "547a08c6-d117-44b9-9206-68308ddf5660", + "createdTime": "2020-11-10T19:26:55.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "003fce9d-6cb5-4ac5-8391-3631d4ffbd38", + "createdTime": "2020-11-10T19:26:37.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "158cc334-d0e2-4bbc-b189-cb402dfd10af", + "createdTime": "2020-11-10T19:27:23.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a575d9c7-d242-457c-9447-6b069fa2b558", + "createdTime": "2020-11-10T19:26:28.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be86a5bb-d64b-4d4a-94ad-2a5db5ce2d38", + "createdTime": "2020-11-10T19:27:21.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3e9737f5-0583-43b3-bb56-443924fe4024", + "createdTime": "2020-11-10T19:27:17.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "833dbc58-fc04-4e03-aa50-e63f29ede77e", + "createdTime": "2020-11-10T19:27:12.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3d83d494-4088-415e-9aba-7cf369f1f8c8", + "createdTime": "2020-11-10T19:27:11.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d2855b0d-5f51-4361-8fce-eda83ffa618b", + "createdTime": "2020-11-10T19:27:06.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88331a86-2db1-4647-81b3-23c8b849fc23", + "createdTime": "2020-11-10T19:27:04.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7d32a73b-e63c-4384-9a5a-72eed4756f4b", + "createdTime": "2020-11-10T19:27:02.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef4d59d0-13ef-4d1f-a5c5-82c38f9f200d", + "createdTime": "2020-11-10T19:25:47.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fff51d95-5969-4699-aaef-c397cb036c58", + "createdTime": "2020-11-10T19:26:36.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c335f1d7-8b3b-4311-8ebc-e3fbf3d8eb4c", + "createdTime": "2020-11-10T19:26:32.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2c0c4051-e5a0-4869-9fca-ce38ad11da1e", + "createdTime": "2020-11-10T19:26:30.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7ea734e3-d45b-4d8c-8d7f-0269c8ea9f23", + "createdTime": "2020-11-10T19:26:25.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbeb24ec-322b-47ac-8e6f-b8b635fcd419", + "createdTime": "2020-11-10T19:25:39.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c5be98d-19f5-4334-95e1-c788b45929c9", + "createdTime": "2020-11-10T19:25:34.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f887dcf2-0dd3-43a3-bf20-6f52236c59ca", + "createdTime": "2020-11-10T19:25:49.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a76baa45-6f93-4822-b1f7-228cbf34496e", + "createdTime": "2020-11-10T19:25:33.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "09729207-00d9-45f9-ad1c-2e19f6c5ebc3", + "createdTime": "2020-11-10T19:25:48.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6062d2c8-e34d-4835-bb32-69e180a9a037", + "createdTime": "2020-11-10T19:25:44.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bdafb538-23b0-411c-aa4f-b4dacfdc651d", + "createdTime": "2020-11-10T19:25:42.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "82d7c54c-4f47-4041-ad44-2a50072368be", + "createdTime": "2020-11-10T19:25:41.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72b941ce-60ab-4690-8642-e3fe68e4fec1", + "createdTime": "2020-11-10T19:25:37.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d98dd94f-36e6-4286-a1a4-aa30999d721f", + "createdTime": "2020-11-10T19:25:26.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e3ab386-fff1-479a-8ffa-57034dd7d9f6", + "createdTime": "2020-11-10T19:25:36.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0cafdd17-7c7f-477f-bf55-10e76730c312", + "createdTime": "2020-11-10T19:25:35.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9f9933fc-0b11-4072-958a-836dbeee46fa", + "createdTime": "2020-11-10T19:25:32.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "88976ca1-50e2-4843-83b7-891fb565c522", + "createdTime": "2020-11-10T19:25:29.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4dca3017-d484-45b4-b5d6-d6e8778b08a9", + "createdTime": "2020-11-10T19:25:28.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fde7031f-cdc8-488d-84e0-a25f8726f13e", + "createdTime": "2020-11-10T19:25:24.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "af33d15e-6334-45c7-ada1-9b92657d06f6", + "createdTime": "2020-11-10T18:14:20.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dc44c654-9461-4c1d-9c51-4f358e3f3ef7", + "createdTime": "2020-11-10T18:14:19.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f69dc233-5a72-49bc-8fea-29bb1333ee63", + "createdTime": "2020-11-10T18:14:18.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "592e2b52-1a19-4bb2-afcf-8c1804b90d5f", + "createdTime": "2020-11-10T18:14:17.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3ea30fd-ecca-462c-845a-442dde1a1978", + "createdTime": "2020-11-10T18:06:08.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3603535a-5a88-47b9-ad1e-420e1ee3770e", + "createdTime": "2020-11-10T18:06:08.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d3053bd8-09d7-4cfe-b375-808074c44a97", + "createdTime": "2020-11-10T18:06:07.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5f7df9f0-18dd-48e3-8cd9-526d977063fb", + "createdTime": "2020-11-10T18:06:07.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d6b45c1f-ba1d-4c63-8d29-978c1edb3147", + "createdTime": "2020-11-10T18:06:06.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2225b8f2-a421-4028-b60c-49398c8e3b89", + "createdTime": "2020-11-10T18:06:06.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8b67883-4dc0-4f7d-9e49-7a3fe188f87e", + "createdTime": "2020-11-10T18:06:06.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ce75763e-d5f3-4237-9381-b36af9a13dff", + "createdTime": "2020-11-10T18:06:04.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "daacfca4-b91f-4088-ad6b-18d2f14c670e", + "createdTime": "2020-11-10T18:05:05.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3ceebc51-56d7-4ea4-b931-71b6174e1816", + "createdTime": "2020-11-10T18:05:04.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2bd7953c-ee96-4906-b7aa-5b8e451cf5af", + "createdTime": "2020-11-10T18:05:04.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a6301640-411f-4bce-9c53-de23f5101b80", + "createdTime": "2020-11-10T18:05:03.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2043575d-8f3b-4f9f-a563-775ab5ac4d58", + "createdTime": "2020-11-10T17:30:25.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "9458dbef-9b6e-4c59-9ce2-4d1d31643b63", + "createdTime": "2020-11-10T17:30:25.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "bb5270bb-4554-4c93-9456-2c44e14ccf8a", + "createdTime": "2020-11-10T17:30:24.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:30:24.194Z", + "endTime": "2020-11-10T17:30:24.194Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f94a2d77-3c2c-446e-9bdf-ad0cf17ca427", + "createdTime": "2020-11-10T17:30:24.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:30:24.194Z", + "endTime": "2020-11-10T17:30:24.194Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee0c5f5-a9c7-440c-9f35-b71b16a765b4", + "createdTime": "2020-11-10T17:30:23.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "0b879b79-eb64-46b3-9e80-dd74b0a4a433", + "createdTime": "2020-11-10T17:30:23.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "83d7e550-feb7-46e5-ac82-79a2abfcb2ce", + "createdTime": "2020-11-10T17:30:22.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:30:22.105Z", + "endTime": "2020-11-10T17:30:22.105Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c544ac9-5398-42a5-b847-4ef0c99c809d", + "createdTime": "2020-11-10T17:30:22.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:30:22.105Z", + "endTime": "2020-11-10T17:30:22.105Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "623798f7-b1c0-47d0-abaa-a48361ebb7ea", + "createdTime": "2020-11-10T17:28:59.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3c306269-2105-408a-9613-e6d799f42d76", + "createdTime": "2020-11-10T17:28:55.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "c465fda2-1751-4b75-bae6-3bd5b84a7161", + "createdTime": "2020-11-10T17:28:54.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "853c0af5-6a48-454c-8e10-ecdab3ad87a2", + "createdTime": "2020-11-10T17:28:54.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:28:53.785Z", + "endTime": "2020-11-10T17:28:53.785Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "027878d4-8560-4e21-a279-1a3907c94ec3", + "createdTime": "2020-11-10T17:28:54.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:28:53.785Z", + "endTime": "2020-11-10T17:28:53.785Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12d0eefb-3ac4-4189-844c-787b0ba0af70", + "createdTime": "2020-11-10T17:28:53.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "26b3e2dd-19ff-438d-b5b3-630455148157", + "createdTime": "2020-11-10T17:28:53.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "5ce42898-f5d6-4328-9c0c-9cca652d325f", + "createdTime": "2020-11-10T17:28:52.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:28:51.936Z", + "endTime": "2020-11-10T17:28:51.936Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c6f69cf-c9d2-4b36-9405-a924dd926318", + "createdTime": "2020-11-10T17:28:52.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:28:51.936Z", + "endTime": "2020-11-10T17:28:51.936Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "865e223a-1541-4fac-85f4-3dd400ee379d", + "createdTime": "2020-11-10T17:27:36.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d659710d-1046-45b2-bacf-9e06f69b16d4", + "createdTime": "2020-11-10T17:26:09.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33a1ccfb-5bc5-4436-8322-4ef6b12a52ef", + "createdTime": "2020-11-10T17:25:36.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "739c366e-cfab-4b59-bcc5-a1519db8a7ae", + "createdTime": "2020-11-10T16:09:24.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3bbd647a-94d4-4682-8d73-c4a991f58ce7", + "createdTime": "2020-11-10T16:08:54.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "efa5ad97-1b06-468d-b42f-2019a587322e", + "createdTime": "2020-11-10T10:41:02.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "47cd848e-af71-45a2-be99-92df3d4af32c", + "createdTime": "2020-11-10T10:41:02.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2fe137d2-e67a-40c3-aabb-66351f7b2024", + "createdTime": "2020-11-10T10:41:01.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0d0aa563-a4d2-455c-9626-cb81629398fb", + "createdTime": "2020-11-10T10:41:01.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c4e5a0d-c6fe-4c1a-ba3a-90cc45aa2c1c", + "createdTime": "2020-11-10T10:37:38.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dcc7db06-6ea5-412d-aaf9-aa36dd026c77", + "createdTime": "2020-11-10T10:37:37.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "287f5143-16e1-46fe-95de-8fa98d401e23", + "createdTime": "2020-11-10T10:37:37.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "30c3760e-a8b7-42dc-854d-4cef6a649c39", + "createdTime": "2020-11-10T10:37:36.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3b95b8e-2000-4262-903d-362b0a3c702c", + "createdTime": "2020-11-10T10:21:36.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad827d39-a985-4112-bc86-d98f1d296c41", + "createdTime": "2020-11-10T10:21:36.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "013df9a8-8322-477d-8a32-ef7a78ee6ab9", + "createdTime": "2020-11-10T10:21:35.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8133efb2-0f9e-4f4c-bf6c-973520b88727", + "createdTime": "2020-11-10T10:21:34.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "860e2958-44b8-4ee6-8563-ca05184aea87", + "createdTime": "2020-11-10T10:17:42.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0b633bce-9808-4787-a26a-7b0117f6a718", + "createdTime": "2020-11-10T10:17:41.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f531981a-dd95-42df-9aa7-883f03f35966", + "createdTime": "2020-11-10T10:17:40.881Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9a62145-7ff8-4a0e-86d6-e374fc1c36ff", + "createdTime": "2020-11-10T10:17:40.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "acd280bd-71e9-4ae6-9af9-ac4c13c726bc", + "createdTime": "2020-11-10T09:46:42.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e743834a-ddcb-4b05-aa5c-54fe6407981d", + "createdTime": "2020-11-10T09:46:41.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e656740-5c9c-4dbd-992d-efb84d230ae2", + "createdTime": "2020-11-10T09:46:41.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e19a212-e66e-49f0-a279-babe1f1f7877", + "createdTime": "2020-11-10T09:46:40.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1048eeef-be5c-40cb-b0f4-b6c1b5aa73de", + "createdTime": "2020-11-10T09:11:03.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "af06ec52-b9cd-4680-862c-bf0c9c78278c", + "createdTime": "2020-11-10T09:11:02.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7d1cd613-3bb1-47f9-a599-918c8bbf88b4", + "createdTime": "2020-11-10T09:11:02.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "538cae72-5389-45f7-82e0-dbeb5dbca2e9", + "createdTime": "2020-11-10T09:11:01.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02e01cf6-46ce-44cd-93aa-39b414bbee8e", + "createdTime": "2020-11-10T09:06:56.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c1964be6-4d41-483a-956d-3f5e9a593c6c", + "createdTime": "2020-11-10T09:06:55.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bb68ec72-af53-4696-81c6-2b07dd625a7e", + "createdTime": "2020-11-10T09:06:55.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e2b87c82-8c90-498a-b573-24c7327e087d", + "createdTime": "2020-11-10T09:06:54.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9afa0aba-5bda-4d64-bc6e-3eae7e760e20", + "createdTime": "2020-11-10T08:40:03.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6f83550d-d5ed-49ef-b1ca-a1fd573dce2a", + "createdTime": "2020-11-10T08:40:02.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6c428bd2-b8d1-42ad-988c-5cb43a5bf232", + "createdTime": "2020-11-10T08:40:02.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2440e2de-abf9-4cf3-b99a-6dba6fddaf95", + "createdTime": "2020-11-10T08:40:01.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78a75908-6b2a-4a5a-b0fc-b7bb41b4cbfe", + "createdTime": "2020-11-10T08:36:25.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "00f656fd-804e-4c02-aba2-0f4acf1d17a4", + "createdTime": "2020-11-10T08:36:24.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8791fb04-1997-4746-97bd-2da6d1066beb", + "createdTime": "2020-11-10T08:36:23.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7736ce5c-b84a-4951-9882-7e5c4cffc9ac", + "createdTime": "2020-11-10T08:36:23.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7eed86c6-8bdb-43b0-aa09-c6d5e27466ab", + "createdTime": "2020-11-10T07:39:58.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5bbe17e7-d984-4395-8c1c-19be722dd1d1", + "createdTime": "2020-11-10T07:39:47.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9bcafe8f-2610-440b-97b1-6bd1ff7a6c88", + "createdTime": "2020-11-10T07:39:37.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "84481532-798a-4483-bd93-a9597873e6f3", + "createdTime": "2020-11-10T07:39:34.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee615f6-7cdb-4655-a9e3-7b572bfcda73", + "createdTime": "2020-11-10T07:39:24.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f9401931-7c09-4f2a-8728-0da69f07f715", + "createdTime": "2020-11-10T07:37:25.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f4160b9-c094-4890-b1d3-6120873388d9", + "createdTime": "2020-11-10T07:37:14.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d55299a8-d368-4990-b9f6-c51d719cd952", + "createdTime": "2020-11-10T07:37:06.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c3023ef6-39e8-4485-97a2-76d0ffef2d2d", + "createdTime": "2020-11-10T07:37:04.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "37675207-38fd-4599-a2ad-73c95c7bc9e2", + "createdTime": "2020-11-10T07:36:54.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e29f171-5acb-4939-830b-ad757667b976", + "createdTime": "2020-11-10T07:36:36.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e33a1225-94d5-4a88-b760-d0e0c36af8a9", + "createdTime": "2020-11-10T07:36:25.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "90bc94b0-e7e4-4b74-9d7b-83659509c27a", + "createdTime": "2020-11-10T07:36:17.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "74fef4a1-7216-460d-9e33-9854c0a54464", + "createdTime": "2020-11-10T07:36:15.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdb9e729-71b9-4567-acfe-446f5229eeb8", + "createdTime": "2020-11-10T07:36:06.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "97a07322-10d5-4433-ab9f-861cdb070513", + "createdTime": "2020-11-10T07:34:40.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "477ca160-65b3-4a8b-96ed-b9646bbceac4", + "createdTime": "2020-11-10T07:40:02.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "be41cba1-645c-4cf4-8aa8-190b0c22aa2f", + "createdTime": "2020-11-10T07:39:59.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dbd2a87c-00be-4ae6-9b5b-7a78fb186c91", + "createdTime": "2020-11-10T07:34:28.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "31ef930d-be59-4576-98db-37a67e6f8c48", + "createdTime": "2020-11-10T07:39:55.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "73093c0b-0c68-4f4f-a2f8-b2f00986feaa", + "createdTime": "2020-11-10T07:39:51.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "edd7a652-2bf4-45cf-a03e-1b93c8023ed3", + "createdTime": "2020-11-10T07:39:49.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c8bd1970-23d0-4d01-b2d8-5a146c9f4903", + "createdTime": "2020-11-10T07:39:43.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8f88ac50-7c98-46c4-9b01-90bf6c061aaa", + "createdTime": "2020-11-10T07:39:41.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e46f2764-5c2c-4a2e-a9ac-84c6394b2630", + "createdTime": "2020-11-10T07:39:39.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "89238ba1-b23d-441a-aa17-6dc92b71fbe9", + "createdTime": "2020-11-10T07:39:32.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f3af7428-f3ab-4b57-8d8f-99b19ca51f22", + "createdTime": "2020-11-10T07:39:28.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3c210453-ae89-42d4-9b13-e85cbb3cd481", + "createdTime": "2020-11-10T07:39:27.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4b8c0089-f48f-4c9f-b760-2444d3c58f92", + "createdTime": "2020-11-10T07:39:20.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "85a2208e-e44d-4abe-ba3c-24cb9d6efd8c", + "createdTime": "2020-11-10T07:34:18.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66134cb4-2dc0-453d-a436-72e90060bca5", + "createdTime": "2020-11-10T07:34:15.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35bb98b5-0b26-4b96-b749-2ee24c3973c7", + "createdTime": "2020-11-10T07:34:03.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a1030a4-b039-4e44-a431-ee3f64df0ccc", + "createdTime": "2020-11-10T07:37:28.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1e5148b9-9910-4fc5-9b5c-329b9e73dff8", + "createdTime": "2020-11-10T07:37:27.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8e9aa955-b051-4edc-9826-cbbf87934808", + "createdTime": "2020-11-10T07:37:22.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56b1d10c-d935-4066-9447-1796a2a54f18", + "createdTime": "2020-11-10T07:37:18.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2c6fae64-527a-44e5-a7d2-abdb2e725efe", + "createdTime": "2020-11-10T07:37:17.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "40f14455-91a5-4f63-912c-23f7d5de9d18", + "createdTime": "2020-11-10T07:32:15.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59f3f976-cf72-4cdf-845c-73dff2cc3a78", + "createdTime": "2020-11-10T07:37:12.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "917731d8-ebb3-4299-8d00-e82b3b7ca2e3", + "createdTime": "2020-11-10T07:37:10.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d8f3d228-170a-4932-8134-df9732ccbfeb", + "createdTime": "2020-11-10T07:37:08.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8cdb2584-b679-4a41-bd92-69d2b98e7021", + "createdTime": "2020-11-10T07:37:02.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3eb2f160-597f-4254-99af-1e1a9ff3958f", + "createdTime": "2020-11-10T07:36:58.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c0839c0a-7a5b-4f7d-b6a9-5cd5bb044215", + "createdTime": "2020-11-10T07:36:57.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7dcd771e-b2dc-4754-8b57-3b02b7c16c96", + "createdTime": "2020-11-10T07:36:51.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "95450a80-de8c-4edd-8c86-1caa09c7bdb2", + "createdTime": "2020-11-10T07:36:38.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "264b9ead-c10c-4032-b5b7-77a46864fa4c", + "createdTime": "2020-11-10T07:36:37.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a52f5a8c-517e-4195-a59a-7fcf5799b029", + "createdTime": "2020-11-10T07:32:03.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1054a8b3-a0c9-4726-b9d4-612397b7ffe3", + "createdTime": "2020-11-10T07:36:33.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f4549203-fda3-4a28-9ff6-c89c4603592f", + "createdTime": "2020-11-10T07:36:29.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "06e388be-266a-41ac-b659-cdd7ef0958e1", + "createdTime": "2020-11-10T07:36:28.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ae9c4ac-64ed-41e0-b3e1-5ef35d8c7c10", + "createdTime": "2020-11-10T07:36:23.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "68bfedef-80b7-4351-b87f-b93155bb38ff", + "createdTime": "2020-11-10T07:36:21.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "821f821f-1f82-4d6d-8983-7ee5b744ad91", + "createdTime": "2020-11-10T07:36:19.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b0b42828-e8a4-4312-8dcf-8e7952ab7e99", + "createdTime": "2020-11-10T07:36:13.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0f5ba346-a9ec-4e29-98db-857bb64b59d1", + "createdTime": "2020-11-10T07:36:10.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "25b771aa-5acc-45ad-895f-012e64d518d6", + "createdTime": "2020-11-10T07:36:08.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "17c7aa88-9ae7-4f0e-8d2b-ae9a01c180c3", + "createdTime": "2020-11-10T07:36:03.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92592dad-ffbb-4542-ad3d-4554012a3aae", + "createdTime": "2020-11-10T07:32:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2178ea4f-5ede-4e26-ba74-abbf7446b9c9", + "createdTime": "2020-11-10T07:31:59.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6a36d08-c98c-4620-aec7-3983cd9a159e", + "createdTime": "2020-11-10T07:34:44.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c34dd5fc-4bf5-4335-b63f-d1107a0f2178", + "createdTime": "2020-11-10T07:34:42.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "08c20a30-aa1c-4c81-b45a-47f269d35290", + "createdTime": "2020-11-10T07:34:37.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "16f01c6f-064d-4ff2-8fe4-76416684a41b", + "createdTime": "2020-11-10T07:34:33.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad2acfa5-b8cb-4b00-9de9-dc36fafc7743", + "createdTime": "2020-11-10T07:34:32.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "facb9201-f125-4b3d-a27c-ea044ba89da7", + "createdTime": "2020-11-10T07:31:57.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2868c7b8-0087-4416-a2d6-82d80ca64dfa", + "createdTime": "2020-11-10T07:34:25.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "02ccedbd-5143-4974-b724-3ea99a93a1d9", + "createdTime": "2020-11-10T07:34:22.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1783ec2d-8c5c-4f98-9cc5-a4b55f4c72af", + "createdTime": "2020-11-10T07:34:20.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5fcc6ea1-b6be-4d1d-a5e2-b3695232cfb0", + "createdTime": "2020-11-10T07:34:13.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6ce20ab-b186-4555-820d-66a9bff3b6f3", + "createdTime": "2020-11-10T07:34:08.676Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e222dead-c7d4-488b-8404-80d6fe23a948", + "createdTime": "2020-11-10T07:34:07.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f7089f64-57e6-4e4e-8a3f-f9f18d5914c7", + "createdTime": "2020-11-10T07:33:59.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cd4f63af-082f-46ca-b2f9-83b715b1b829", + "createdTime": "2020-11-10T07:31:54.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e737210-cf4c-4cb4-8528-dffaa561ae14", + "createdTime": "2020-11-10T07:31:46.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7ad78fca-6a67-4440-9d13-8cb46a00f55a", + "createdTime": "2020-11-10T07:32:17.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "16807902-7e4f-4afe-8837-37844b0082c0", + "createdTime": "2020-11-10T07:32:16.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9784aa70-5686-46bf-a25e-64110e1432bf", + "createdTime": "2020-11-10T07:32:14.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "107cec19-632a-4986-972f-ec7a23653ecd", + "createdTime": "2020-11-10T07:31:40.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c63e968-8d64-41a9-ae35-01dec6f6eb04", + "createdTime": "2020-11-10T07:32:11.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4ab1e6e7-b661-48c9-81ed-ee91434a23ff", + "createdTime": "2020-11-10T07:32:10.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7abd5e59-eaf0-40ef-ace8-a657c5bfdc09", + "createdTime": "2020-11-10T07:32:02.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ac27c48a-d7e7-41bb-ba39-c525a39ef1ea", + "createdTime": "2020-11-10T07:32:02.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f7c00667-fba9-4a1f-a860-d8be1897bbde", + "createdTime": "2020-11-10T07:32:01.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1a9bd051-cf4a-4970-9aa5-ef7afa18719f", + "createdTime": "2020-11-10T07:31:59.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8a73f893-57c9-47f2-9367-7d33f597bfdb", + "createdTime": "2020-11-10T07:31:58.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c8206497-85f8-4a9e-b95f-50113e8722e9", + "createdTime": "2020-11-10T07:31:39.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea2c5ee8-4a95-4691-975e-59f4229507bb", + "createdTime": "2020-11-10T07:31:58.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d128e9f1-9437-4c1b-8e9d-0a276ef10b15", + "createdTime": "2020-11-10T07:31:56.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ec4fa042-f05e-427c-8d6f-9cfed0963e3d", + "createdTime": "2020-11-10T07:31:55.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "13eb8007-a457-462b-8271-c85d25665016", + "createdTime": "2020-11-10T07:31:55.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87e3bdf8-5497-472e-8aa0-1845d02da94e", + "createdTime": "2020-11-10T07:31:52.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b1b45cef-e679-4132-a890-c84e8b2fc361", + "createdTime": "2020-11-10T07:31:49.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ffe310e5-44c7-4bd8-8e1f-b32e8f2f1ae8", + "createdTime": "2020-11-10T07:31:48.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "07ca0fd2-d151-4831-b32f-877e95cb62a8", + "createdTime": "2020-11-10T07:31:32.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0d11081-2512-4f09-b68c-683e54a9ad3d", + "createdTime": "2020-11-10T07:31:44.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "35100c8a-929d-4d57-bf1d-9784661350d3", + "createdTime": "2020-11-10T07:31:43.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "674f47f4-00c5-4f84-83d1-5a55835b8a35", + "createdTime": "2020-11-10T07:31:42.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c0fa6ba4-a8e8-4ff7-8602-4c3eeb5b8bb5", + "createdTime": "2020-11-10T07:31:37.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "76cb596a-090e-49ba-a716-8d529e597bfb", + "createdTime": "2020-11-10T07:31:35.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56f98e0e-6c69-479b-b680-4e3c5b638c5a", + "createdTime": "2020-11-10T07:31:34.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4faad438-dee1-4979-b156-5edb12898291", + "createdTime": "2020-11-10T07:31:30.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbeabda5-05db-4b7f-ba15-7f24a9366e22", + "createdTime": "2020-11-10T04:13:26.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e5a96bd-4ef4-4033-8a29-fe933b38998c", + "createdTime": "2020-11-10T04:13:15.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d989dc67-481c-477f-86ab-e1c56b31ed11", + "createdTime": "2020-11-10T04:13:06.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46a3c358-22f0-48a5-a991-872d74555d82", + "createdTime": "2020-11-10T04:13:03.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "497b2268-3bcb-4983-a5d2-e8f3bc7eba11", + "createdTime": "2020-11-10T04:12:53.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a839879b-6dab-4b9e-84fe-f30571559d2c", + "createdTime": "2020-11-10T04:12:23.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42dcc3a1-348c-431a-9c0a-8d39f4ac999f", + "createdTime": "2020-11-10T04:12:13.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8a4041e-6553-449c-b078-c35d76298d81", + "createdTime": "2020-11-10T04:12:04.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "554126ce-57cd-419c-b20d-a8a79666b12b", + "createdTime": "2020-11-10T04:12:01.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aae4deef-f88c-448d-a8f6-7a5521c4d782", + "createdTime": "2020-11-10T04:11:52.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a5d1643-1aaf-42db-b44a-b38b23d9d48c", + "createdTime": "2020-11-10T04:07:45.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db57d78b-5f63-4dce-8b39-31063bcfc032", + "createdTime": "2020-11-10T04:07:33.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98d0065e-b321-42ae-a833-fd8033efd3ed", + "createdTime": "2020-11-10T04:07:11.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dcc9d3b2-4d74-4072-9726-18670571fc3f", + "createdTime": "2020-11-10T04:06:51.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93c82dc3-0e1b-4295-bc86-3c470a24aa95", + "createdTime": "2020-11-10T04:13:37.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "96e446c0-9b4f-4d49-840d-a5ede4baf7ca", + "createdTime": "2020-11-10T04:13:28.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6f810f41-29c9-4935-b48e-84b8d7959793", + "createdTime": "2020-11-10T04:13:23.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f31f33cc-487a-48a7-a2f0-29a79330812b", + "createdTime": "2020-11-10T04:13:19.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fefaa2a0-fd98-4356-82be-3029c4cbaf73", + "createdTime": "2020-11-10T04:13:18.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7990369d-80ca-44d2-8cd1-c8bab3546ed1", + "createdTime": "2020-11-10T04:13:12.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "62a3f3c9-0a48-4bf2-b195-cf78fa284789", + "createdTime": "2020-11-10T04:13:10.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "45dfedce-f6c8-4b38-8ea8-8abe4ab98079", + "createdTime": "2020-11-10T04:06:39.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a9659c4-feca-44f3-b564-c357aaf51576", + "createdTime": "2020-11-10T04:13:08.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "15ff3e18-a862-4ac1-b1e0-41ebbd130efc", + "createdTime": "2020-11-10T04:13:01.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "751cd779-ff7f-451b-a96d-fee3e2e80897", + "createdTime": "2020-11-10T04:12:57.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba4c4337-7e4f-4819-9d7f-08e69f0a22dc", + "createdTime": "2020-11-10T04:12:56.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1f533147-d2a8-408b-84e2-e9b0689ab0b9", + "createdTime": "2020-11-10T04:12:49.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "58237da6-7434-4aa7-a54f-31ff285a8e64", + "createdTime": "2020-11-10T04:12:26.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5eb9553e-30eb-46b9-ba83-31f456bcafb2", + "createdTime": "2020-11-10T04:06:30.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "508a6cdf-e84b-4f17-93b3-d73896e89c7a", + "createdTime": "2020-11-10T04:12:24.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c9f5762c-3335-49cc-b400-cb2771fd41a8", + "createdTime": "2020-11-10T04:12:20.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e87e3e4b-4360-44e7-ae78-53ce11ee45c1", + "createdTime": "2020-11-10T04:12:17.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f85bbd9-147f-4422-8d5c-14c38207e1d0", + "createdTime": "2020-11-10T04:12:15.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6b0cdc1-b39a-4a40-a54f-3950de31a66f", + "createdTime": "2020-11-10T04:12:09.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "182049aa-66c5-4a82-9536-042ba5cfc308", + "createdTime": "2020-11-10T04:12:07.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "717934f7-e9e1-4563-bb54-08841e069978", + "createdTime": "2020-11-10T04:12:06.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "24907351-27e6-42ce-844a-513522043248", + "createdTime": "2020-11-10T04:12:00.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b8fe7fd-aaf1-4b18-9cfe-d6b284832ae4", + "createdTime": "2020-11-10T04:11:56.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56e2fd5d-4598-4222-8ab1-462b3f7d60f5", + "createdTime": "2020-11-10T04:11:55.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "69c16a2d-626f-4bc0-a31a-84345fcc5796", + "createdTime": "2020-11-10T04:11:49.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6d98191e-f4cb-4689-a15b-b1ebe10d4341", + "createdTime": "2020-11-10T04:06:20.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78998dfc-8908-4c47-a568-b104b66545ed", + "createdTime": "2020-11-10T04:06:12.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f4c6a40-c417-4a76-908a-6081f8a32c61", + "createdTime": "2020-11-10T04:06:09.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d084535-68e5-45bd-8c20-a717f287b928", + "createdTime": "2020-11-10T04:06:01.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07d362d2-cc1a-4dd5-852c-517ac1873cd1", + "createdTime": "2020-11-10T04:04:46.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d47125b-dee3-4c30-9b43-478a6e6c40f0", + "createdTime": "2020-11-10T04:04:33.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9e9316b-f609-4ba4-a852-123321c31ec0", + "createdTime": "2020-11-10T04:07:49.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ea510f7a-bcc9-4108-b9c8-68c4a41f1985", + "createdTime": "2020-11-10T04:07:47.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e37b6d8d-86be-456d-a3b4-c39bdee899b8", + "createdTime": "2020-11-10T04:07:41.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "57880d7c-963a-4962-a122-70eab1f9d97e", + "createdTime": "2020-11-10T04:07:37.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "96ed4136-26f8-4d61-899d-1a54102b3a01", + "createdTime": "2020-11-10T04:07:36.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a803bb71-fd7e-4b33-b3c0-2a24f2f44624", + "createdTime": "2020-11-10T04:07:28.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7bc4cf4-2b80-43af-a036-0c0155fd9b47", + "createdTime": "2020-11-10T04:07:26.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "98e18691-aa0f-407b-921d-e76d3705fca8", + "createdTime": "2020-11-10T04:04:25.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3693b22e-d0b8-4dd5-a927-d16d9ca497b1", + "createdTime": "2020-11-10T04:07:13.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b57c49c-1177-43fe-a3a7-9c11407209db", + "createdTime": "2020-11-10T04:06:48.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4b0ab5b4-e0df-4bcd-b18a-77c4d30cef35", + "createdTime": "2020-11-10T04:06:44.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b9342b5-7ff6-4f5f-aff3-70ec006cecff", + "createdTime": "2020-11-10T04:06:43.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a59fef80-2f27-41eb-b17a-66970f5cbd4c", + "createdTime": "2020-11-10T04:04:22.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0024e72c-7f42-4276-8a31-b596d36150d1", + "createdTime": "2020-11-10T04:06:35.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9434c109-7943-41f2-9745-629f4c949158", + "createdTime": "2020-11-10T04:06:34.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fb42a77a-7dd2-4d82-be65-8f562fbcbb7d", + "createdTime": "2020-11-10T04:06:32.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ad8178c-3a67-469f-b37e-f6057b5a5809", + "createdTime": "2020-11-10T04:06:28.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c97915cf-da50-4372-ad4b-087d37cc376a", + "createdTime": "2020-11-10T04:06:25.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3b5b1dd2-0a17-45a4-994c-7d3f3add3f62", + "createdTime": "2020-11-10T04:06:23.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "51406dec-45d3-4e28-aa6f-becd50d57402", + "createdTime": "2020-11-10T04:06:17.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0e4312a-42e5-4e3d-9acb-2119ec344461", + "createdTime": "2020-11-10T04:06:16.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0c712a58-464e-4d21-b883-40873a8590a6", + "createdTime": "2020-11-10T04:06:14.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "50e9ad93-f778-4431-88d9-5bd826671843", + "createdTime": "2020-11-10T04:06:08.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ddeb83c9-00b3-44ed-b422-d30620668a5a", + "createdTime": "2020-11-10T04:06:05.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8a7dc739-e787-4880-8df8-5bddf790f6a5", + "createdTime": "2020-11-10T04:06:04.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c73da653-ab7f-42db-a60e-fa7aaa1d8787", + "createdTime": "2020-11-10T04:04:11.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5ccbf3e-8401-4abd-b605-c7b1a1c5407b", + "createdTime": "2020-11-10T04:05:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5bd3115b-73bb-44be-b3f8-044244cfc6f0", + "createdTime": "2020-11-10T04:02:34.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbc191a3-4a32-4ff8-9e14-df08a1b43315", + "createdTime": "2020-11-10T04:04:50.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "82be63c5-776e-4fe4-852c-a698e70cf0d0", + "createdTime": "2020-11-10T04:04:48.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "07b90779-8ed3-4167-9b0b-b21aebf30fe0", + "createdTime": "2020-11-10T04:02:25.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa17d10e-33c6-4f93-b9f4-9000c51473f9", + "createdTime": "2020-11-10T04:04:42.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f50938ef-b5dc-4dd3-8fd4-292f63210d04", + "createdTime": "2020-11-10T04:04:38.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "afa623e6-07de-48cf-b35b-daa18d13b6ca", + "createdTime": "2020-11-10T04:04:36.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b067248-00dc-40d1-9374-e5271fef8123", + "createdTime": "2020-11-10T04:04:30.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6cbc05f0-b024-42c5-b2dd-4a395125712d", + "createdTime": "2020-11-10T04:04:28.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "dcaeb9f7-78b5-4c19-bc3a-2c5af887bb9c", + "createdTime": "2020-11-10T04:04:26.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "29ae06d9-b7b2-4b15-885b-90217dd79394", + "createdTime": "2020-11-10T04:04:20.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "732a85cb-648c-43a7-8ae3-f1f6654079da", + "createdTime": "2020-11-10T04:04:16.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e9a04789-fc24-496c-88d0-7b70c5915c85", + "createdTime": "2020-11-10T04:04:15.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf00aacf-0060-417f-954e-3e0dd4f55c94", + "createdTime": "2020-11-10T04:04:08.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "48e666dd-16fe-482b-bf53-c62a02b8100e", + "createdTime": "2020-11-10T04:02:17.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bee7898b-4783-420a-b4e6-c8aaf3a216d5", + "createdTime": "2020-11-10T04:02:16.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "672c36ee-e077-4bf9-afb4-0045cc0b32ec", + "createdTime": "2020-11-10T04:02:08.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "789f493d-ce75-4a20-9779-34320f257451", + "createdTime": "2020-11-10T04:02:38.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a61f2d35-03b9-4823-b012-5501bb80002c", + "createdTime": "2020-11-10T04:02:36.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "974f3f68-248e-47b3-bdb3-40162e72257d", + "createdTime": "2020-11-10T04:02:31.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "760dd77d-c9c2-4952-bea3-9224f2f3cf3e", + "createdTime": "2020-11-10T04:02:28.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7eb317a9-9e29-4c03-be10-0dd99e4b1322", + "createdTime": "2020-11-10T04:02:27.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "674cdedf-3f50-4633-a2e8-3cb32a9deccb", + "createdTime": "2020-11-10T04:02:22.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1c612714-3b24-4beb-9c25-a0c2f4634c77", + "createdTime": "2020-11-10T04:02:21.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c2b4f388-7225-4e68-b288-07e33f2b9614", + "createdTime": "2020-11-10T04:02:19.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28540f5c-c4d3-4540-87ea-ca269826b088", + "createdTime": "2020-11-10T04:02:14.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9dad551f-ff4f-4bf9-8b2e-cd17bbe3160c", + "createdTime": "2020-11-10T04:02:11.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad27bd56-e166-44b6-b44b-164af4e0ecdb", + "createdTime": "2020-11-10T04:02:10.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "de760bf5-1595-4944-a6cf-c302095bf2a6", + "createdTime": "2020-11-10T04:02:05.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "085e3548-ca04-4222-8ac6-a4978840c403", + "createdTime": "2020-11-10T02:57:02.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a8e2cd5c-a2e4-4733-a9a2-e6e69f4fb0ae", + "createdTime": "2020-11-10T02:56:55.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "56eed3d7-1cd7-442f-84a8-5ca38e4ed09a", + "createdTime": "2020-11-10T02:57:04.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6ff68f58-ed58-4e5a-a3d5-304f8e01ee72", + "createdTime": "2020-11-10T02:57:03.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "79f32683-96ad-41ba-98aa-29aca24884c8", + "createdTime": "2020-11-10T02:56:48.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c0126d59-3b00-459f-9627-fd193a4eac54", + "createdTime": "2020-11-10T02:56:54.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1c19300c-dbd0-4919-bdda-dc594ad9d447", + "createdTime": "2020-11-10T02:56:51.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0bc2d8d6-f710-4d0b-8589-e6d82be6f0eb", + "createdTime": "2020-11-10T02:56:50.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "66477380-aef9-49b7-ac42-8a85780bac07", + "createdTime": "2020-11-10T02:56:46.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74799031-74dd-488f-a1be-91fce5ee0c75", + "createdTime": "2020-11-10T02:55:13.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "987b82b3-0e3d-4c29-9e6b-e961893b9b22", + "createdTime": "2020-11-10T02:55:14.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "71af31a9-8647-4c65-a6b9-82197162879b", + "createdTime": "2020-11-10T02:55:14.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1857ab1c-cce6-4525-b4a2-bef4acb8f162", + "createdTime": "2020-11-10T02:55:12.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "869d4fcc-40f4-452b-8ecf-848b9ce80801", + "createdTime": "2020-11-10T02:55:02.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7b9d650-6e6d-49a7-bea3-bfd8bd9a20c0", + "createdTime": "2020-11-10T02:55:06.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a7df00a0-692c-4d77-add8-f93961996e79", + "createdTime": "2020-11-10T02:55:05.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d21f0af3-162d-4487-b1f7-d302c2a94143", + "createdTime": "2020-11-10T02:55:01.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ebf2eac4-4532-4aee-a9f7-4d8035d1d7b7", + "createdTime": "2020-11-10T00:43:05.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "12b1823b-1c44-40f5-adc7-02f0b9748a23", + "createdTime": "2020-11-10T00:43:05.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9954ba4e-4fee-4e81-a98a-94595012be9e", + "createdTime": "2020-11-10T00:43:04.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "71c5df60-2233-4e41-8f04-dfcc67a4fd90", + "createdTime": "2020-11-10T00:43:04.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48dbeba4-f033-421c-84a2-08c358cda654", + "createdTime": "2020-11-10T00:08:43.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0129d9d3-0766-4945-bbca-f74f3d392b0f", + "createdTime": "2020-11-10T00:08:43.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "40842d83-de7e-4fbc-835a-bd095c776680", + "createdTime": "2020-11-10T00:08:42.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e351e0b7-ceb6-4ee1-93ed-179d7c4ccee2", + "createdTime": "2020-11-10T00:08:42.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94be39e2-6188-40fe-bf87-a85d7825f26b", + "createdTime": "2020-11-09T23:55:58.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "300c0ec1-463c-48bd-a72f-0775f7bb10d7", + "createdTime": "2020-11-09T23:55:57.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a68b2ec7-7131-48e3-9422-8ca37c5f948b", + "createdTime": "2020-11-09T23:55:56.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5cee8523-0fe3-4764-9f91-87d666ae9a51", + "createdTime": "2020-11-09T23:55:56.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5eeea90c-b77d-4205-83d9-0a75edc579e6", + "createdTime": "2020-11-09T23:36:05.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b9b0b3a4-95a1-4f40-8377-a0486d8caf6b", + "createdTime": "2020-11-09T23:36:04.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64d1288a-5da6-46e2-8fe6-d94206b693e9", + "createdTime": "2020-11-09T23:36:04.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "69b07110-88a5-43fa-9ad5-558dd3487cf4", + "createdTime": "2020-11-09T23:36:03.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0634523-1b4f-4566-918c-053d618ca3d0", + "createdTime": "2020-11-09T23:15:22.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5cca7ff5-be51-45cb-a52b-8c3d9752d6df", + "createdTime": "2020-11-09T23:15:21.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7be09036-81b7-491c-9f3b-60be6cb75325", + "createdTime": "2020-11-09T23:15:21.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6236c6e4-88de-4897-8a33-c94cc2207fa4", + "createdTime": "2020-11-09T23:15:20.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06af0cb4-3c03-4a5b-b260-ddae3c3a1fa4", + "createdTime": "2020-11-09T09:16:20.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6b52f0bc-8449-4b6c-b4d1-2f39dd4c646c", + "createdTime": "2020-11-09T09:16:19.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3e7b804-67bc-472a-8feb-e4da569cdcdd", + "createdTime": "2020-11-09T09:16:19.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f7691527-ae9d-4f54-a9b4-c85b084102c2", + "createdTime": "2020-11-09T09:16:18.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5566cac3-fe26-4ead-b99f-b150ef7b67d3", + "createdTime": "2020-11-09T09:12:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "009749ba-551c-406c-91cb-ac8f143b8ebf", + "createdTime": "2020-11-09T09:12:41.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c8b94161-f21b-4497-b12d-a3d535947c30", + "createdTime": "2020-11-09T09:12:40.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d958477e-15a2-47df-9c75-9ff2c28a46fe", + "createdTime": "2020-11-09T09:12:40.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c61a349-f7ed-4666-b7c5-f681845daba0", + "createdTime": "2020-11-09T09:01:21.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72eb64dc-aa71-46d7-936e-05c9528fca38", + "createdTime": "2020-11-09T09:01:20.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "22672e16-b9c5-4aef-b970-ff9a3e5c374a", + "createdTime": "2020-11-09T09:01:19.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f60f73f6-dd1a-4508-af0b-bb5b57aa85e9", + "createdTime": "2020-11-09T09:01:19.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb4e7c2a-f521-411b-83c4-1f4eed2e245f", + "createdTime": "2020-11-09T08:57:44.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a6699ef0-3a74-4e4f-ac22-8225804254af", + "createdTime": "2020-11-09T08:57:43.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9bed5812-36dd-41d4-b131-ce9401d105e5", + "createdTime": "2020-11-09T08:57:43.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "84556377-8faa-4485-9077-460f76567049", + "createdTime": "2020-11-09T08:57:42.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "952698a2-3eaf-4fb9-941d-94b76a01dedc", + "createdTime": "2020-11-09T08:48:32.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c1194549-79f4-4101-bfee-c237fef7e359", + "createdTime": "2020-11-09T08:48:32.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6f8ed9c8-1c3d-427f-b531-3017cbc24e97", + "createdTime": "2020-11-09T08:48:31.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6e1151d-6bff-473f-a2a4-48a29d37b856", + "createdTime": "2020-11-09T08:48:30.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86d9f154-c9fb-4349-8a21-5418ac6ab723", + "createdTime": "2020-11-09T08:37:28.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "531c5b21-b5db-402a-ab47-1822ff548cc0", + "createdTime": "2020-11-09T08:37:27.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e526b66-8a41-4ec6-a435-c5d1e8edada6", + "createdTime": "2020-11-09T08:37:26.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e0ff2e54-7429-4b7f-8635-b61535112d25", + "createdTime": "2020-11-09T08:37:26.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39ec055f-54a0-4273-9c7d-906ef960e96f", + "createdTime": "2020-11-09T08:33:54.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "746d9046-dbad-4c28-9b08-e578f5dc1e2d", + "createdTime": "2020-11-09T08:33:54.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2b2e8c82-d766-4f9c-9bd9-87d5c0990ccc", + "createdTime": "2020-11-09T08:33:53.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3aea6a4-efc0-4f02-8062-447d728eac0d", + "createdTime": "2020-11-09T08:33:52.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f7f39c6-0067-418e-93b0-244a5ae8b34e", + "createdTime": "2020-11-09T08:26:33.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa849ca5-4947-41ff-8fd3-8947b269d538", + "createdTime": "2020-11-09T08:26:32.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e36b75d5-e822-46a7-a94e-0d31ed114790", + "createdTime": "2020-11-09T08:26:32.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b8bfb3f-6c80-4c55-8076-f4f0c5bef1ff", + "createdTime": "2020-11-09T08:26:31.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f47c9a4-e4c5-442f-8c97-6888e88462f4", + "createdTime": "2020-11-09T08:20:59.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "941ff326-ce98-468d-b048-a9097c46a76f", + "createdTime": "2020-11-09T08:20:58.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f5c13cb0-d986-46f4-b4f3-4d8558d12cf9", + "createdTime": "2020-11-09T08:20:57.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "10a935ec-0ceb-4ea1-98e0-2d28edd91213", + "createdTime": "2020-11-09T08:20:57.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b3f438b-c723-4413-bb91-1be47865ffef", + "createdTime": "2020-11-06T21:49:44.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e5959f0-2524-4c7b-afe3-84734f9693b6", + "createdTime": "2020-11-06T19:11:11.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba8f8aff-606b-4fd6-82b7-b286857bdc6c", + "createdTime": "2020-11-06T19:10:19.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c824f729-41f6-4221-8b62-c9cf7878f0a6", + "createdTime": "2020-11-06T19:06:59.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21c66fc7-96fd-4f15-8a12-640b2117f1c3", + "createdTime": "2020-11-06T12:29:23.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c2d46d0-82ac-4ec9-8e19-85f2b83115cb", + "createdTime": "2020-11-06T09:18:16.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e106f2b1-0632-4172-adb7-5e49118c4f99", + "createdTime": "2020-11-06T09:18:15.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8edbdb4d-b5a0-4776-9d99-4859c4d2e825", + "createdTime": "2020-11-06T09:18:15.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "882ac7fe-2081-4937-924a-bd1d20ace1c2", + "createdTime": "2020-11-06T09:18:14.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29673365-25ec-48bf-976b-adc8df7c2453", + "createdTime": "2020-11-06T09:14:07.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "add96275-baad-4ca7-905b-a39941131e6e", + "createdTime": "2020-11-06T09:14:07.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2d34d07f-a87f-45d5-9be4-6211504da90f", + "createdTime": "2020-11-06T09:14:06.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "80e67d8f-9986-497b-8c9d-78f58d1056f0", + "createdTime": "2020-11-06T09:14:06.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8929fa10-0942-4f5e-9c23-8275e3b53b22", + "createdTime": "2020-11-06T09:05:12.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0225d2e7-16a5-4c32-a971-ecf0e9e0280c", + "createdTime": "2020-11-06T09:05:12.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "076ba814-3c3e-4d0a-9ddd-f9697d6e4d0d", + "createdTime": "2020-11-06T09:05:11.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf3d3877-45e6-4b6d-8b3b-70d375c43f09", + "createdTime": "2020-11-06T09:05:11.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "161ba4e7-b21f-418a-bb3f-02a286aedae9", + "createdTime": "2020-11-06T09:00:45.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d6c7fd4-bc2d-41e2-9901-ad6643979721", + "createdTime": "2020-11-06T09:00:45.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "41050f71-439d-491f-930f-6606747d8a4e", + "createdTime": "2020-11-06T09:00:44.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ffe82c33-a614-482d-8ac0-7dabd2ec1107", + "createdTime": "2020-11-06T09:00:44.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4dd32dc2-ca58-41ee-a15d-43d2a4a4d3f7", + "createdTime": "2020-11-06T08:50:02.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9d85e0fc-121a-4491-bb3d-d3c5214dd27d", + "createdTime": "2020-11-06T08:50:01.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4bf65be4-8a93-425f-8df2-02f0671843bf", + "createdTime": "2020-11-06T08:50:01.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b7084d1-1ddc-45f8-8b84-2a56089b420c", + "createdTime": "2020-11-06T08:50:00.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a8028ff4-5b2b-41ad-8358-35a7a765acfa", + "createdTime": "2020-11-06T08:37:48.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "613d268e-6a85-44af-8852-6aaad5ea0623", + "createdTime": "2020-11-06T08:37:47.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "799682e6-792d-40ea-8abb-83cefdc56f5b", + "createdTime": "2020-11-06T08:37:46.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ed871cc6-5fa5-48d9-80ca-a016399e3dfe", + "createdTime": "2020-11-06T08:37:46.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baf6c686-1e2b-42e5-994b-3c6f50545d07", + "createdTime": "2020-11-06T08:33:57.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8fc448f-90b3-45ec-935d-0bafdb1b1545", + "createdTime": "2020-11-06T08:33:57.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8adf3615-02b3-4e9d-afcc-2a0859ceb427", + "createdTime": "2020-11-06T08:33:56.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "aacb3484-4db7-4c9c-8019-868191dd80c8", + "createdTime": "2020-11-06T08:33:56.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b131120-265b-4944-aa0e-b0bf613861b6", + "createdTime": "2020-11-06T08:25:08.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "21d62533-5274-4e0f-8008-79ad4ec63f67", + "createdTime": "2020-11-06T08:25:08.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "90aa0366-b43b-4ba5-ae69-188470e1bcf4", + "createdTime": "2020-11-06T08:25:07.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59304e75-c8f6-4a71-8663-d680ebcd5c63", + "createdTime": "2020-11-06T08:25:07.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76c54142-2b6a-4bb1-903e-d038340586e5", + "createdTime": "2020-11-06T08:21:30.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "491bdd96-58fe-4b9d-ad94-eab212c017da", + "createdTime": "2020-11-06T08:21:29.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f139ed2a-6ef0-4d22-a558-2e3a94cafe1b", + "createdTime": "2020-11-06T08:21:29.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "58400d21-544a-4ba2-92a8-d74917b24d2a", + "createdTime": "2020-11-06T08:21:28.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "765b2e41-65c2-4eae-ace9-7e170338d821", + "createdTime": "2020-11-05T18:41:45.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98755494-07d8-404c-b195-8e33ba065dd9", + "createdTime": "2020-11-05T18:41:36.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e02a348-1d75-448a-9767-da45ffd0489b", + "createdTime": "2020-11-05T18:41:28.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5710b0a0-ec4f-4e64-ae0e-bcf50fafa0d4", + "createdTime": "2020-11-05T18:41:26.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3ba70cd-70a1-4b2f-b056-4ddc38f8f5ad", + "createdTime": "2020-11-05T18:41:18.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "928b8694-f677-4c1a-9602-46875600c077", + "createdTime": "2020-11-05T18:39:30.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05ae85ab-a8c2-4866-8f45-4a8ed6f0609a", + "createdTime": "2020-11-05T18:39:20.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48b442ca-7057-4641-9dc5-eec44bc48d5f", + "createdTime": "2020-11-05T18:39:12.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7758c71-f1d2-4b5e-8288-2fce1b273070", + "createdTime": "2020-11-05T18:39:09.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2796b9c-6d78-4335-ad64-ebf47d2750bb", + "createdTime": "2020-11-05T18:38:59.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f75fce83-6cf3-4b42-8939-8499c2c413fa", + "createdTime": "2020-11-05T18:37:55.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6fee08ea-82ec-4b04-83b8-c629da10134e", + "createdTime": "2020-11-05T18:37:42.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1b41e77-e6b6-4a4a-a4f8-87fa23531d15", + "createdTime": "2020-11-05T18:37:33.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8d4cae6-225f-4ea6-83cb-6f43cc49bbb4", + "createdTime": "2020-11-05T18:37:32.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "080a9943-9de4-4524-af96-0cb371e30c26", + "createdTime": "2020-11-05T18:37:31.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b9d9c25-58d5-4e6f-ac4c-7059067d5c94", + "createdTime": "2020-11-05T18:37:21.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bf4d367b-f79e-477a-a601-02c43c466656", + "createdTime": "2020-11-05T18:41:49.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0a0f9c7a-7cbb-4da1-8569-a666b1b125dd", + "createdTime": "2020-11-05T18:41:47.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b31f0eef-3893-4540-b1c5-236eb033c93e", + "createdTime": "2020-11-05T18:41:43.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0cbd1653-53a4-4ac8-a2d9-59adfb98cc9f", + "createdTime": "2020-11-05T18:41:40.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72608450-8e7b-4c37-8b62-aa8552ffff0f", + "createdTime": "2020-11-05T18:37:19.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28cda11c-d5f2-4c1a-8d1d-8f79d7863c86", + "createdTime": "2020-11-05T18:41:38.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "652b85e8-4d08-4b8f-b6eb-afece1afbbba", + "createdTime": "2020-11-05T18:41:34.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "51a31322-3820-44a4-9f98-d7fad06fe817", + "createdTime": "2020-11-05T18:41:31.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "959545e7-d8a1-418b-9b8a-815efaaff1d5", + "createdTime": "2020-11-05T18:41:29.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2447ec84-d3e7-4be0-8698-b89692ef833b", + "createdTime": "2020-11-05T18:41:25.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5df20aa5-c0c1-4126-ae69-2a046605d499", + "createdTime": "2020-11-05T18:41:21.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aef6dd68-cd40-43a2-89b7-a104a15808ba", + "createdTime": "2020-11-05T18:41:20.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28d0fb7d-0758-47aa-afba-31a6f603d408", + "createdTime": "2020-11-05T18:41:16.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b281c657-06f1-4696-ab4b-2f48f8a2c7b6", + "createdTime": "2020-11-05T18:37:08.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ac6a1b1c-befc-478b-9599-c51ecf1ea116", + "createdTime": "2020-11-05T18:37:06.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3eb5b6b7-9466-47f2-a1a6-2cd009df32c8", + "createdTime": "2020-11-05T18:37:04.135Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0686e167-776b-4b7d-a981-6ac7e9542f66", + "createdTime": "2020-11-05T18:39:34.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "9cc07e3f-e9bf-4741-aaf6-836a3b7992b7", + "createdTime": "2020-11-05T18:36:56.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2156ad0e-f0a4-469c-a7b0-d2e7e5228f97", + "createdTime": "2020-11-05T18:39:32.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "db26d877-7ad0-4a5a-884c-5a0f5739921b", + "createdTime": "2020-11-05T18:39:27.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "93a45963-9b71-4650-8d3d-dbeb7c6c7f0b", + "createdTime": "2020-11-05T18:39:24.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bc2d0259-8189-477a-b55d-aa5106c9d606", + "createdTime": "2020-11-05T18:39:23.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8750222-c513-4845-98a3-02eff88cd1c1", + "createdTime": "2020-11-05T18:39:17.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e16734d7-1c2e-453c-a001-f80472a60660", + "createdTime": "2020-11-05T18:39:16.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2a48aba3-3430-46d2-9f59-86470272135d", + "createdTime": "2020-11-05T18:39:14.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c5200eae-c771-4211-86e2-dbdd3ff66fa0", + "createdTime": "2020-11-05T18:39:07.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "542e53db-68cb-4552-9e1a-6de46685af0a", + "createdTime": "2020-11-05T18:39:04.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "66703d2d-3069-4310-818a-84591fffe9d2", + "createdTime": "2020-11-05T18:39:02.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "14ddf199-c310-4881-9fde-1b80b4d81afd", + "createdTime": "2020-11-05T18:36:54.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f53c06f-09d7-4c25-8288-86004deb90a3", + "createdTime": "2020-11-05T18:38:55.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "100f3a40-2223-4a2d-9ca1-21401b0ce4c0", + "createdTime": "2020-11-05T18:36:53.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82d33c79-ddeb-462f-ac3f-eb390c949c88", + "createdTime": "2020-11-05T18:37:59.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "da510259-bd1a-4908-adfe-19895b74e5db", + "createdTime": "2020-11-05T18:37:57.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d1d176b4-50ea-44d2-93f9-8d9d6b4db960", + "createdTime": "2020-11-05T18:37:52.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d6bca95e-7883-4d2b-bb67-a34a2321fc80", + "createdTime": "2020-11-05T18:37:47.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "73879a33-5f88-435f-8d0f-e9b31b2a930d", + "createdTime": "2020-11-05T18:37:46.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d4983df6-9066-4da4-b202-65f4343e5de2", + "createdTime": "2020-11-05T18:37:39.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e439564-e151-42b5-b979-d237dabc375c", + "createdTime": "2020-11-05T18:37:37.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e0464761-a59d-45a1-9c23-a97aea879984", + "createdTime": "2020-11-05T18:37:37.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "33eb253a-b2fb-489a-9048-3eb478b0b65f", + "createdTime": "2020-11-05T18:37:35.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f4db4366-0b55-4e95-8e4a-ca853d647224", + "createdTime": "2020-11-05T18:37:34.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f42bcbe3-a532-4b61-a207-89d019f8efca", + "createdTime": "2020-11-05T18:37:29.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6763a77f-b2f3-48cc-ad4d-220ddf60e813", + "createdTime": "2020-11-05T18:37:29.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "74c6f86c-76cd-4d47-a96e-3fcd81ed46b0", + "createdTime": "2020-11-05T18:37:26.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b148cdb5-fc2a-4a7d-aac4-d5f62ebe510a", + "createdTime": "2020-11-05T18:37:25.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87adb3ee-fb03-4810-b41b-72fcdd9c7d24", + "createdTime": "2020-11-05T18:34:39.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "739e08e5-0212-4a1f-a935-643108b44dfc", + "createdTime": "2020-11-05T18:37:25.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "92615749-5014-4e25-98cf-35d8c84c98a3", + "createdTime": "2020-11-05T18:37:23.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "814aca7d-6ab2-41a5-b2b1-b57ff1a14545", + "createdTime": "2020-11-05T18:37:18.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d4a3f0ad-339a-4fc5-bfb3-2e923a2780db", + "createdTime": "2020-11-05T18:37:15.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4a99cd00-2eb5-4e52-9eb1-db3fa722d1e0", + "createdTime": "2020-11-05T18:37:13.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "430b664c-2cff-4062-a4f1-28c7861b5f25", + "createdTime": "2020-11-05T18:37:10.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "565c4b3e-8ed6-416c-acb1-21ca0905e359", + "createdTime": "2020-11-05T18:37:07.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4183941d-f221-4b8b-b759-6562dba75fa4", + "createdTime": "2020-11-05T18:37:05.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b2f6590-65ac-43a8-b7db-ed4020c88b41", + "createdTime": "2020-11-05T18:37:04.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2ced7f49-9b37-4dd3-8323-aeba26cb06c7", + "createdTime": "2020-11-05T18:37:00.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d79883ec-f2bf-4b1a-aa3e-447159235dc8", + "createdTime": "2020-11-05T18:37:00.341Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87e48f1c-6f90-4386-9c4f-ffd8ae933b39", + "createdTime": "2020-11-05T18:36:58.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9546b065-a79d-4125-8053-5f79312def02", + "createdTime": "2020-11-05T18:36:57.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "310b0ad9-c1c0-419a-b37d-8295c3a1cb05", + "createdTime": "2020-11-05T18:36:56.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d5ba0956-ace0-47b2-b24b-7df3df123af0", + "createdTime": "2020-11-05T18:36:54.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "41d3c0a9-2871-4d63-80ab-daae6e5421ad", + "createdTime": "2020-11-05T18:36:54.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b7a47610-87b3-4882-a035-e01e69b72946", + "createdTime": "2020-11-05T18:36:52.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8a4d1842-2b62-4042-ad60-29ea895f1a95", + "createdTime": "2020-11-05T18:34:36.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "608f3ff3-ea4f-4481-91c2-abe373c82569", + "createdTime": "2020-11-05T18:34:11.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f81f8566-3650-4632-9975-5063018864a4", + "createdTime": "2020-11-05T18:35:48.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0176694-0271-4132-861e-4c69437a7130", + "createdTime": "2020-11-05T18:32:39.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "31183106-4229-4ace-a473-c4c5c3d2bb97", + "createdTime": "2020-11-05T18:32:28.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df0da438-6255-413b-be69-03c70ad06fcd", + "createdTime": "2020-11-05T18:34:46.135Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b2292c2b-fefe-4a1d-8c29-aee88e50a1d6", + "createdTime": "2020-11-05T18:34:34.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0680a26c-4243-49c4-b825-09c03f7edd5e", + "createdTime": "2020-11-05T18:34:25.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1225f61b-710c-47f0-bf0c-d5178f0567fa", + "createdTime": "2020-11-05T18:34:23.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "190fd8e4-d223-43f9-8489-9beadf72f985", + "createdTime": "2020-11-05T18:32:19.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3885645a-c95a-40ea-8947-566a7a24e689", + "createdTime": "2020-11-05T18:34:08.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "425681a9-4ee9-4c12-996c-0439aac43edb", + "createdTime": "2020-11-05T18:32:16.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65c66a88-5672-46f5-8b96-a1d7ebefc5cc", + "createdTime": "2020-11-05T18:32:44.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4d7b25eb-48a9-4f7a-93df-02c8224f662f", + "createdTime": "2020-11-05T18:31:59.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34de7911-fd62-4572-a5d0-6a7f9a737a6c", + "createdTime": "2020-11-05T18:32:41.84Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "137c1024-427e-42ae-9f56-7cdcde5b0474", + "createdTime": "2020-11-05T18:32:37.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e650e956-ab98-4b8d-89ab-a09f3483bb60", + "createdTime": "2020-11-05T18:32:32.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ca6272d8-66ad-4bff-b97e-19b7e1dcd8ee", + "createdTime": "2020-11-05T18:32:31.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "46319554-130f-4b50-a5ee-4900f54fa3d7", + "createdTime": "2020-11-05T18:32:25.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fad29962-1903-4657-8e4f-87fd4a901490", + "createdTime": "2020-11-05T18:32:23.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "48f5e3c9-6661-418f-bd73-056ed140a57e", + "createdTime": "2020-11-05T18:32:21.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a65459cb-447e-4a22-ba96-9ebd2db5b646", + "createdTime": "2020-11-05T18:32:13.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d57c8360-e296-49df-8bba-bcd2b26ec39a", + "createdTime": "2020-11-05T18:32:03.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fcfc3ebc-a34b-471c-8d40-dbd1e7098dee", + "createdTime": "2020-11-05T18:32:01.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1a05a169-c547-4ef0-9596-4252377d835e", + "createdTime": "2020-11-05T18:31:56.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0b49fbad-84e0-4099-8a03-58af76138d19", + "createdTime": "2020-11-05T17:41:13.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "2eb19ce8-d5dd-4ef6-8b90-078a4fb92919", + "createdTime": "2020-11-05T17:41:13.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "ed48a223-32c9-4fe9-8b4e-eb11ffaba9c5", + "createdTime": "2020-11-05T17:41:13.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-05T17:41:12.437Z", + "endTime": "2020-11-05T17:41:12.437Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "194f2993-24b2-4f1c-82ac-85bbe52eb4b6", + "createdTime": "2020-11-05T17:41:12.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-05T17:41:12.437Z", + "endTime": "2020-11-05T17:41:12.437Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdd9937a-8341-442a-8d5e-ab3bff373e00", + "createdTime": "2020-11-05T17:41:12.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "b6d4a319-db2e-4b3d-bfa8-ee64c2a79b19", + "createdTime": "2020-11-05T17:41:11.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "2552a626-0746-48e6-bbcc-e79e7fee99f3", + "createdTime": "2020-11-05T17:41:11.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-05T17:41:09.653Z", + "endTime": "2020-11-05T17:41:09.653Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "38898d0c-5140-4b30-979c-84cd4fdcf0c7", + "createdTime": "2020-11-05T17:41:10.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-05T17:41:09.653Z", + "endTime": "2020-11-05T17:41:09.653Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8f322589-9d0b-4dba-9017-bb918cbfc927", + "createdTime": "2020-11-05T09:35:13.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6e06af66-c7c4-4a27-bde7-5899e240f12f", + "createdTime": "2020-11-05T09:35:13.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1446642a-0afa-4b43-8a82-f266e622c7a6", + "createdTime": "2020-11-05T09:35:12.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fe98c9dc-df9c-48a1-b987-cbfe8163a33c", + "createdTime": "2020-11-05T09:35:11.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd748430-91ec-4869-88e4-b85ae5b1189a", + "createdTime": "2020-11-05T09:31:15.761Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e45c7c18-a562-4869-89d8-ddf6a2f6cf29", + "createdTime": "2020-11-05T09:31:15.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e9366de-98e9-4cde-a5af-3fddd40fc080", + "createdTime": "2020-11-05T09:31:14.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a96b10bb-b91e-48f0-a5e7-da0853c4acf1", + "createdTime": "2020-11-05T09:31:13.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "756f35b9-0b36-4130-9bdc-7f0767f507c7", + "createdTime": "2020-11-05T09:09:55.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d65b8cfb-f62f-4b1c-bba1-643a6afb8356", + "createdTime": "2020-11-05T09:09:55.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c25f5d4-ff7f-41e0-8600-761db635f72a", + "createdTime": "2020-11-05T09:09:54.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54bff7a4-cf38-4ab2-a264-fc06285f6846", + "createdTime": "2020-11-05T09:09:54.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a220691-b764-44d7-b52b-7d77064ab445", + "createdTime": "2020-11-05T09:06:27.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9c89ca8a-9b5f-43fa-984d-0d36aa4de627", + "createdTime": "2020-11-05T09:06:26.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f885c8-49c4-44f2-8bcb-6a6bebcb10e1", + "createdTime": "2020-11-05T09:06:26.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e572577-a72a-4586-aab6-e99d1e9ac7ac", + "createdTime": "2020-11-05T09:06:25.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4736aad-dc7c-4261-b24a-531b55cad030", + "createdTime": "2020-11-05T08:50:48.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb4f9f0c-af07-4670-b24b-888ed334dd82", + "createdTime": "2020-11-05T08:50:47.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "30d35cd3-faf6-46be-b119-09a1232bde7b", + "createdTime": "2020-11-05T08:50:47.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e237805-80a4-4a8b-9a61-c0163cbe28a6", + "createdTime": "2020-11-05T08:50:46.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9b0a03e-1f8d-40f9-a44e-9b000661f7b4", + "createdTime": "2020-11-05T08:39:02.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6532f7b2-5c8f-4075-a997-91da3cc22be3", + "createdTime": "2020-11-05T08:39:02.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e49ce86e-703f-4d2a-8a8a-797d3f76b9de", + "createdTime": "2020-11-05T08:39:01.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "99f05005-29ce-41ae-80ca-057f8e20fa2c", + "createdTime": "2020-11-05T08:39:00.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db890746-bfe5-4d01-9752-fa431fb2df1a", + "createdTime": "2020-11-05T08:35:17.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b32ffa3b-9acf-4e40-98fe-fd427c9557a9", + "createdTime": "2020-11-05T08:35:16.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "481c0c6d-fff1-41a3-9cfd-5bef31f75101", + "createdTime": "2020-11-05T08:35:16.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ee21c5c2-9bdb-43ba-ac84-3b3bf228b888", + "createdTime": "2020-11-05T08:35:15.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e391717a-adb6-4b83-89d2-504d20cc2a1d", + "createdTime": "2020-11-05T08:26:21.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3bed1ae4-ceb9-41d2-9b9f-e35e54d9bab1", + "createdTime": "2020-11-05T08:26:20.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b6b89cfb-8061-45f7-a28a-a93315da4b3d", + "createdTime": "2020-11-05T08:26:20.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "460390fc-8434-4a10-953d-197c1108af8b", + "createdTime": "2020-11-05T08:26:19.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c16e380-39f1-4132-b06d-389dd0c14a4b", + "createdTime": "2020-11-05T08:22:32.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03332abb-5009-49a9-9484-0ae4ee4371b8", + "createdTime": "2020-11-05T08:22:31.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "241b4d00-fa91-4448-b811-f38779ee4eba", + "createdTime": "2020-11-05T08:22:31.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "845b004c-8a4a-4344-91ad-0704e130fe1a", + "createdTime": "2020-11-05T08:22:30.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0eb3a91b-81d5-40a2-9497-68a06e08780e", + "createdTime": "2020-11-04T22:42:14.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "293807e2-12c7-4503-b31c-3367db9011c1", + "createdTime": "2020-11-04T22:41:59.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7a548d9-f904-4fa6-b3ba-fb1eccf01513", + "createdTime": "2020-11-04T22:41:50.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1b7b83d-8df7-4c43-9436-bdb480f4abd9", + "createdTime": "2020-11-04T22:41:48.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6bf74e4-b833-47c0-92a3-9601d5951b75", + "createdTime": "2020-11-04T22:41:41.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea382ad1-53c1-41b5-8db5-2974af1caebe", + "createdTime": "2020-11-04T22:41:37.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73c825f8-5b2a-45cb-af8d-8d4d094da7a2", + "createdTime": "2020-11-04T22:41:31.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8931a485-49f3-4a21-89b9-65f93efc0521", + "createdTime": "2020-11-04T22:41:24.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1b76ea1-2716-48b2-b040-ccda49f9d2de", + "createdTime": "2020-11-04T22:41:22.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93277c43-7fc5-4192-bfb5-96a6ef8241b7", + "createdTime": "2020-11-04T22:41:14.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05420d20-57ff-4ef8-bc6f-1a173be1c80e", + "createdTime": "2020-11-04T22:42:18.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "03925816-70da-4af7-8856-d12e04e6ceaa", + "createdTime": "2020-11-04T22:42:16.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1436b46b-1a15-44ac-9ec5-24c451a3ac19", + "createdTime": "2020-11-04T22:42:06.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ee6c273-cbc6-4e4a-82aa-bedaee90d837", + "createdTime": "2020-11-04T22:42:03.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5bd7fb26-2519-45cf-bf58-76f1a38ced60", + "createdTime": "2020-11-04T22:42:02.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d92d28a8-b1b7-459a-9d01-c05616dc8478", + "createdTime": "2020-11-04T22:41:56.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "743f35c2-46da-4b0b-98d4-8d4b2ff7ec8d", + "createdTime": "2020-11-04T22:41:54.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "23275cf6-c8a0-4d0b-aecf-997710f11bb9", + "createdTime": "2020-11-04T22:41:52.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "11c0e6a3-ce4b-4aef-b46b-e29495c66e33", + "createdTime": "2020-11-04T22:37:29.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "936ca0c2-519f-4d50-a387-9903eb3b7c58", + "createdTime": "2020-11-04T22:41:46.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6422985e-8dd6-4531-90bc-2a1a8f4d15f4", + "createdTime": "2020-11-04T22:41:45.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2005d849-d598-4c3c-b83b-2be12cc774be", + "createdTime": "2020-11-04T22:41:43.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d86ebccb-cc26-4dbb-bbf1-edf5439a1d42", + "createdTime": "2020-11-04T22:41:42.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2104bcc6-8890-44a4-b9f4-f9dbd1563fdd", + "createdTime": "2020-11-04T22:41:41.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ea539117-65b1-4501-870e-2d1f6571d7b1", + "createdTime": "2020-11-04T22:41:39.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "59f01137-f018-46a9-8810-c77ba98db2ea", + "createdTime": "2020-11-04T22:41:36.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5f1cd835-e20e-4e32-85e8-de175a4fc82e", + "createdTime": "2020-11-04T22:41:34.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "24f3160b-66c2-4a5b-b13e-ece934d20b4b", + "createdTime": "2020-11-04T22:41:34.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6c2e56af-7b41-4ea7-a372-0d9f4372c993", + "createdTime": "2020-11-04T22:41:29.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee9e8adb-38c3-48b3-9372-0ea149725b94", + "createdTime": "2020-11-04T22:41:27.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "861ba46b-1069-4bae-acc6-8dfbb978ce65", + "createdTime": "2020-11-04T22:41:26.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f3c708a8-9a55-48af-b9b7-e2a085b81036", + "createdTime": "2020-11-04T22:41:21.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a5ab44c-6e28-40d8-912a-fb6bda486a25", + "createdTime": "2020-11-04T22:41:18.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cabc4d32-0179-40c3-8790-3974464b9c2b", + "createdTime": "2020-11-04T22:41:17.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "57c2c1d0-4685-45aa-aa8d-b81d5ac53605", + "createdTime": "2020-11-04T22:41:11.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d9c88b96-6c84-4407-9ad2-c00f534799ec", + "createdTime": "2020-11-04T22:37:19.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f7f8eec-98d1-492e-b35b-87437ceb69a9", + "createdTime": "2020-11-04T22:37:11.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43058c61-1cd9-4a9a-bf3a-3f1620673487", + "createdTime": "2020-11-04T22:37:08.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be575b67-65dd-48e0-b2d1-25b056c7f8f4", + "createdTime": "2020-11-04T22:36:48.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cd44a98-2fe4-4e6d-95c1-a9354a3d0c17", + "createdTime": "2020-11-04T22:34:17.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17e39849-1c95-462b-9230-033c97a0e8cc", + "createdTime": "2020-11-04T22:34:05.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa56af32-69b8-40db-8cb9-c73fd8c51a32", + "createdTime": "2020-11-04T22:33:51.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b2f147e-ffcc-43cc-9072-c54de996c114", + "createdTime": "2020-11-04T22:37:33.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "84281c3f-d32e-48e0-8bdd-7eb4da6bef63", + "createdTime": "2020-11-04T22:37:31.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2423c3d0-6580-4624-bb5f-b47eb908e13d", + "createdTime": "2020-11-04T22:37:27.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "01792579-3472-4898-b594-55521d10264a", + "createdTime": "2020-11-04T22:37:24.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fa15ae9a-d729-492a-8177-a8a9324f4005", + "createdTime": "2020-11-04T22:37:22.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6caa7277-40ca-48a5-b28b-0ba3f26bc2db", + "createdTime": "2020-11-04T22:37:16.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "186d326c-5a27-4c3b-9641-6c41e4493aa4", + "createdTime": "2020-11-04T22:37:15.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "86ee0c9c-6321-404a-aa0e-fd9fd4c5c1eb", + "createdTime": "2020-11-04T22:37:13.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3cebfaf5-2d77-497d-b320-724e83ee3fae", + "createdTime": "2020-11-04T22:37:06.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "94648176-f4c9-485b-8832-c704a210edc2", + "createdTime": "2020-11-04T22:33:48.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96320450-f9e1-4538-9ad6-d19d4490d904", + "createdTime": "2020-11-04T22:36:52.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f3bb6e2a-fe86-40fa-a40f-3d21a72d36a5", + "createdTime": "2020-11-04T22:36:51.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "767229e4-e1cf-4fa8-bc9a-df89e7275ee2", + "createdTime": "2020-11-04T22:36:46.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a402062f-1f41-462b-8882-a04553034336", + "createdTime": "2020-11-04T22:33:38.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02353ba7-71ca-47b0-929f-8b193eb8f52f", + "createdTime": "2020-11-04T22:32:31.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fda261b-e7a3-49c9-a872-05de41377813", + "createdTime": "2020-11-04T22:30:00.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8cd5e955-fabf-43ee-b306-edf83394a1c1", + "createdTime": "2020-11-04T22:34:22.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "893c0058-00de-4e3b-82c0-a15f68ed5671", + "createdTime": "2020-11-04T22:34:19.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ab8cf874-67ec-43ac-8107-bcebff6f3b94", + "createdTime": "2020-11-04T22:34:14.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2151d55a-7b9f-494d-b287-30f59c879d47", + "createdTime": "2020-11-04T22:34:10.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8fd442aa-2c24-4f08-a447-0d0406cbc712", + "createdTime": "2020-11-04T22:34:08.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "10d52b35-ca7c-48db-b4ef-9b75fb9c1c7b", + "createdTime": "2020-11-04T22:34:07.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a09fe175-2815-46fd-b759-e4f890189fa2", + "createdTime": "2020-11-04T22:34:02.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5884778c-0f61-4bf9-bfc6-65a091222b74", + "createdTime": "2020-11-04T22:34:00.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5a953dbf-c1fe-4833-beae-5c8ae9248fe5", + "createdTime": "2020-11-04T22:33:57.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0dd4227e-363a-4160-9649-f496cd044678", + "createdTime": "2020-11-04T22:29:46.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7037eb48-72df-46e4-a1c2-31d31e94aece", + "createdTime": "2020-11-04T22:33:46.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "67a93196-f3ae-439f-80be-c2244a39c4a4", + "createdTime": "2020-11-04T22:33:42.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ae87ac8d-25d3-45c6-971f-de9aa167ec0e", + "createdTime": "2020-11-04T22:33:41.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f4b9db4b-43fd-43cb-b1fd-cdc2b4374421", + "createdTime": "2020-11-04T22:33:36.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "88e56e44-baf9-466d-a624-3cd8ad9d1350", + "createdTime": "2020-11-04T22:33:34.776Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9635fd71-e16a-4d29-b8ef-12dd8b114c1a", + "createdTime": "2020-11-04T22:29:38.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "138a6dd7-7141-4639-98f6-25d39ce7bb54", + "createdTime": "2020-11-04T22:29:27.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "133a4255-aaa6-474d-8847-ee3a9acef48b", + "createdTime": "2020-11-04T22:32:33.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6fcd6cd-e0c0-4238-8d06-fe81955b7b1a", + "createdTime": "2020-11-04T22:29:05.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96c7f1ca-c60c-4854-902b-20e8747b22f1", + "createdTime": "2020-11-04T22:31:26.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f9a1831f-02f2-48cc-9baa-916e411e951f", + "createdTime": "2020-11-04T22:31:22.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a9e957f1-41a0-4ad9-be4f-c0d57b556521", + "createdTime": "2020-11-04T22:31:20.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "00769790-2b5a-4df9-b4c8-025aefd75d1e", + "createdTime": "2020-11-04T22:28:56.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45e3cce3-ac97-434f-898d-b07b9399b36b", + "createdTime": "2020-11-04T22:28:49.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f58f26d-4760-42da-8240-6ba4b60db44b", + "createdTime": "2020-11-04T22:29:56.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e6db4a8-02a8-4192-be2a-64750ec25d28", + "createdTime": "2020-11-04T22:29:54.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5a16f306-2771-46a2-be39-ab972121f48a", + "createdTime": "2020-11-04T22:29:51.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "47cb963b-38b9-4330-b9a5-f080f5210a92", + "createdTime": "2020-11-04T22:28:47.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a31f91c-b41e-4bf7-8670-de8806ae493e", + "createdTime": "2020-11-04T22:29:36.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "820118e2-204c-478b-9e40-d28f459984c3", + "createdTime": "2020-11-04T22:29:32.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "156d89bc-0921-42a4-9714-d1bfba6ef838", + "createdTime": "2020-11-04T22:29:30.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "307936a7-c2e0-47fc-91b6-14257850f55d", + "createdTime": "2020-11-04T22:29:23.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a36f752b-7cd8-42e6-902d-5f2b721ac594", + "createdTime": "2020-11-04T22:29:07.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cbd7bd3f-d7d5-47dd-8879-8ae623d83416", + "createdTime": "2020-11-04T22:29:06.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "31322fdc-e673-4a69-8932-f3bd6635559a", + "createdTime": "2020-11-04T22:28:33.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9e9e0d8c-4c39-456e-a44d-aaddfcf7c872", + "createdTime": "2020-11-04T22:29:03.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "377f832f-b0c2-4814-b8b2-0818c0ff1e77", + "createdTime": "2020-11-04T22:29:00.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cfd26905-73af-49da-9eec-8ca189f4b086", + "createdTime": "2020-11-04T22:28:58.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b7646d09-833a-4207-b80a-bd2dd1583528", + "createdTime": "2020-11-04T22:28:54.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fe1c54cb-1de4-42f1-86b3-13d071480245", + "createdTime": "2020-11-04T22:28:52.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "236930c9-9d45-4192-97a4-2ea9558f036b", + "createdTime": "2020-11-04T22:28:50.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b09b5e9-83ed-457b-80c5-5670012b959b", + "createdTime": "2020-11-04T22:28:46.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "af85470e-18c5-4d52-923e-56b79d735846", + "createdTime": "2020-11-04T22:28:38.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8209a41f-5269-4d7d-9e93-58b3985fa11a", + "createdTime": "2020-11-04T22:28:36.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d65eec1a-4856-451e-a10e-2e376088a547", + "createdTime": "2020-11-04T22:28:30.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4d7e747f-8a48-442e-a388-66f6a5869815", + "createdTime": "2020-11-04T18:36:58.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f389919-be8d-4bff-abce-f3c66e8661df", + "createdTime": "2020-11-04T18:36:40.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "afe419e3-dd0b-4a50-bfdc-bdc3980c3bad", + "createdTime": "2020-11-04T18:36:30.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "046c5a36-b49e-4a34-a5e9-c063c8035f8c", + "createdTime": "2020-11-04T18:36:27.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2524ec5-17c5-4742-8b0d-7b1ad7f18692", + "createdTime": "2020-11-04T18:37:02.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e44f3e33-899e-4339-913c-ceafa0a3803e", + "createdTime": "2020-11-04T18:37:00.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0e5883cc-47d8-4914-9553-5d801f40b070", + "createdTime": "2020-11-04T18:36:55.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2526db10-dafd-4575-b5db-240f77c710b0", + "createdTime": "2020-11-04T18:36:17.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "324e2a23-0c4a-4c53-bee0-46bfb2649aaa", + "createdTime": "2020-11-04T18:36:46.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "295b7020-6105-432d-8de4-99774bddb2d0", + "createdTime": "2020-11-04T18:36:44.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6bb28ee3-7d79-4375-9f99-70484675c943", + "createdTime": "2020-11-04T18:36:36.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c2aa551f-e173-4207-8ee9-0041ffd2014e", + "createdTime": "2020-11-04T18:36:34.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "863324ff-5991-4618-aef0-924fad980cc5", + "createdTime": "2020-11-04T18:36:31.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2f1cdac8-62bf-4517-b36e-a9f2da547f56", + "createdTime": "2020-11-04T18:36:25.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9abaf2a4-7361-4634-8cc3-e87ec6b07513", + "createdTime": "2020-11-04T18:36:22.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6c227e5e-0799-4dfc-b7a6-25edd3ea8dcb", + "createdTime": "2020-11-04T18:36:20.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2df5586f-af79-45cf-b8ea-c727166e097f", + "createdTime": "2020-11-04T18:36:13.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "169886e3-8c79-4b32-9939-36649a9e3e2e", + "createdTime": "2020-11-04T18:26:14.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6d97854-7d08-4281-97bb-19472dd101bf", + "createdTime": "2020-11-04T18:26:08.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dd76eeca-f23d-4417-8e4e-9e558e5db69e", + "createdTime": "2020-11-04T18:26:03.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9a7ce2b1-f84b-4d2d-9e82-0f31b33e7317", + "createdTime": "2020-11-04T18:25:59.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "776ba192-212c-422e-8132-e258523b4964", + "createdTime": "2020-11-04T18:25:54.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "841a11b8-9b5d-4eee-ad15-e71758357afd", + "createdTime": "2020-11-04T18:25:51.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79cc15b3-b2d6-4b9e-9f2f-2da361b7b1a5", + "createdTime": "2020-11-04T18:25:50.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e1fc2af-2e7a-4c1b-9e43-ce77846dab36", + "createdTime": "2020-11-04T18:25:42.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "741f26eb-de78-4daa-837b-a0c142baa861", + "createdTime": "2020-11-04T18:25:40.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e24f9588-b63c-4e0d-8447-ae251a1c6df8", + "createdTime": "2020-11-04T18:25:35.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1573fc73-5fbe-492e-8d7e-67415ba549b2", + "createdTime": "2020-11-04T18:25:20.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "36527d3e-b507-42bb-8115-7632f290b21e", + "createdTime": "2020-11-04T18:25:19.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d196da53-fc0c-4153-93e1-a81fe6e463fb", + "createdTime": "2020-11-04T18:25:13.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "286927ed-2a41-4482-91da-3ba8e1c7deb9", + "createdTime": "2020-11-04T18:25:10.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2fdcfcf-2180-4ad0-9693-a31d18108a8e", + "createdTime": "2020-11-04T18:26:19.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "984a1bef-ca5a-4efb-950d-3799c1dc876a", + "createdTime": "2020-11-04T18:26:16.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5095cfe2-334b-4a0d-9ff0-9f9f7573b1f4", + "createdTime": "2020-11-04T18:26:13.346Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "767a8e20-1164-45b3-8595-3da5c5f593d9", + "createdTime": "2020-11-04T18:26:11.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e59c47da-7f8d-4cee-9372-6a761e109cb4", + "createdTime": "2020-11-04T18:26:10.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ab6390b-b0d6-495b-969b-d86bc06de9be", + "createdTime": "2020-11-04T18:26:07.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ed9cdf43-964e-4fba-843e-51af6c3e3de9", + "createdTime": "2020-11-04T18:26:06.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "088ae3f7-0926-45d8-b8bd-d30d887861a3", + "createdTime": "2020-11-04T18:26:06.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "04d8add8-3ebb-4331-bf73-ec18b7ecb7f0", + "createdTime": "2020-11-04T18:26:03.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7aeacc09-cfd4-4212-b31a-0ad14bba09b4", + "createdTime": "2020-11-04T18:26:01.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad70474c-f711-43d0-a2c1-7669a7cd0ac0", + "createdTime": "2020-11-04T18:25:59.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9c119b53-c236-4f9d-92a0-59b5f171d673", + "createdTime": "2020-11-04T18:25:58.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "99f69922-8f5d-4e30-8dbe-57e6bbc07ed6", + "createdTime": "2020-11-04T18:25:56.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d1683ff6-fe16-4d7e-a661-c32adc1d9ca7", + "createdTime": "2020-11-04T18:25:56.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "eb71835c-4ee4-4a37-a60b-dbf982da7a8c", + "createdTime": "2020-11-04T18:25:54.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "55104fd8-b367-467b-9226-70ba2d2e6b98", + "createdTime": "2020-11-04T18:25:51.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f9926c9-4b82-4296-9665-aa2ac5c2dd9b", + "createdTime": "2020-11-04T18:25:49.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "60f81412-cb4b-49d1-ae5a-f854dfc22de1", + "createdTime": "2020-11-04T18:25:44.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4117ae92-d992-4333-8aa6-af6a14ab2269", + "createdTime": "2020-11-04T18:25:41.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0cd8c1b0-a499-4f09-9be8-719702b1aa08", + "createdTime": "2020-11-04T18:25:41.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9925137b-011f-4c76-a51c-80cd56f9c5e7", + "createdTime": "2020-11-04T18:25:40.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ffb1203b-2774-47b5-92ab-b9b83b1e5e38", + "createdTime": "2020-11-04T18:25:39.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e81bebc3-3844-492d-9502-988285012d71", + "createdTime": "2020-11-04T18:25:37.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "747a88b7-17cf-4b9d-8a7c-cc80c1b084a1", + "createdTime": "2020-11-04T18:25:03.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1eabcc7e-781e-4813-afcd-652f4f1f360f", + "createdTime": "2020-11-04T18:25:36.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72fdd973-052a-49de-8fa5-8f96c1bc1219", + "createdTime": "2020-11-04T18:25:34.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "51116c8c-cf5f-4b61-bb99-96458e87f64f", + "createdTime": "2020-11-04T18:25:34.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1fa89871-7d8c-4165-9c9e-6068fd38ad8e", + "createdTime": "2020-11-04T18:25:33.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "37108cec-beb7-4812-a545-b18af93af9dc", + "createdTime": "2020-11-04T18:25:20.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "23b55e52-955f-4146-8b09-338e19e88830", + "createdTime": "2020-11-04T18:25:17.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a62ffdb9-e98a-487d-acfb-dfed356b267d", + "createdTime": "2020-11-04T18:25:17.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98961094-58c5-4bb6-ab37-9a4e13bf794f", + "createdTime": "2020-11-04T18:25:16.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "264cfb2c-ecbe-4b21-ab56-e5d90057bfe0", + "createdTime": "2020-11-04T18:25:14.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d02c0ee-e9f2-4950-b0b2-4fbbd5ff496a", + "createdTime": "2020-11-04T18:25:08.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "94a9fde7-97d9-42bd-a4e8-3979aa57720c", + "createdTime": "2020-11-04T18:25:06.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "00f72914-d635-496a-8b9c-6677905bcdcf", + "createdTime": "2020-11-04T18:25:05.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6cd1c077-218f-4bd8-b853-1ca342a47845", + "createdTime": "2020-11-04T18:25:00.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7f3d3b27-262d-48e3-ba3f-9f7293836c7f", + "createdTime": "2020-11-04T18:21:04.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ad26f21-84c5-41e3-918f-288378035671", + "createdTime": "2020-11-04T18:20:47.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61acbbd0-c944-4647-b4bd-1265534507ce", + "createdTime": "2020-11-04T18:20:38.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6c951161-39e5-44fa-9580-faa219477ff2", + "createdTime": "2020-11-04T18:20:36.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a799f50b-7f12-4394-9d7a-1ae14a4935e5", + "createdTime": "2020-11-04T18:20:26.449Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "135a20e1-5631-44ae-9413-a00561587886", + "createdTime": "2020-11-04T18:21:14.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "86213827-5b07-4400-9671-20d4b63d91a3", + "createdTime": "2020-11-04T18:21:06.84Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "898c96bc-5097-4997-898a-26658613de8c", + "createdTime": "2020-11-04T18:18:20.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "007f9073-0eef-430e-bac9-159997da55c9", + "createdTime": "2020-11-04T18:21:00.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a6abcff2-9b28-4df5-8888-848368a44b40", + "createdTime": "2020-11-04T18:20:56.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "df038f0e-08dc-492b-a407-6491f735626e", + "createdTime": "2020-11-04T18:20:50.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4bc45eb1-1d46-4585-95a9-1df94c7c3987", + "createdTime": "2020-11-04T18:20:44.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a80b7571-2e2e-427d-8ac0-891d9b94e337", + "createdTime": "2020-11-04T18:20:41.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "54921f47-7573-4f41-a150-26dd204376c7", + "createdTime": "2020-11-04T18:20:39.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad9c4612-84c8-4d41-bcc8-017bae1c5395", + "createdTime": "2020-11-04T18:20:34.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "131de8b0-ec4b-47c8-a9f3-4b83ad456d17", + "createdTime": "2020-11-04T18:20:30.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "007b95b5-4fd4-47e3-bcdd-64fe65d92045", + "createdTime": "2020-11-04T18:20:29.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7319aa9b-d258-43f1-ac83-8ce466bb6d0a", + "createdTime": "2020-11-04T18:20:22.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "59336c28-47e1-4011-9441-9f4870bf6b74", + "createdTime": "2020-11-04T18:18:15.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35956aed-552d-4069-bdc4-c629c0f0d4bf", + "createdTime": "2020-11-04T18:18:10.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50338aef-20f0-4253-86e9-5df2b2790184", + "createdTime": "2020-11-04T18:18:08.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "97e41198-e14a-48b6-8faa-5d41476cd4b4", + "createdTime": "2020-11-04T18:18:23.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a3d074f6-6de8-4e4f-bf30-79ae5830d1c3", + "createdTime": "2020-11-04T18:18:04.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fba82cc8-ecca-4d76-be12-b0fb24f647fe", + "createdTime": "2020-11-04T18:18:21.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "862121f7-9453-49be-ad53-ce78792b6d55", + "createdTime": "2020-11-04T18:18:19.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f31dcc8a-2eec-463d-bfc2-1d2752544cbc", + "createdTime": "2020-11-04T18:18:17.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ca26fb04-095c-4095-89b4-0acbedf79c37", + "createdTime": "2020-11-04T18:18:16.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fcec151a-b0df-4529-8e34-e46a1b5628f6", + "createdTime": "2020-11-04T18:18:13.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d4eef1b5-58f2-4308-854d-994323e8f22d", + "createdTime": "2020-11-04T18:18:12.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e3dacedb-9811-4da7-a9e9-d33650c7b485", + "createdTime": "2020-11-04T18:18:11.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b7eac1c0-883c-45d5-8c70-5f2269a3bdf0", + "createdTime": "2020-11-04T18:18:08.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bdeea23a-a31b-43cb-899c-5ccac54ca3d1", + "createdTime": "2020-11-04T18:18:06.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87048d3c-8c50-4bda-80ac-80659f3edf1a", + "createdTime": "2020-11-04T18:18:05.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aab8ce92-9465-4eb9-b9ec-a63f46263a6f", + "createdTime": "2020-11-04T18:18:03.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7a80340-0e19-4c3b-9d7b-8ed585438084", + "createdTime": "2020-11-04T18:16:00.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "deda8700-0f22-427b-92ac-8763f86a93d3", + "createdTime": "2020-11-04T18:15:59.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9e2fa9c5-227e-4d5e-aa37-88c95379ab7e", + "createdTime": "2020-11-04T18:15:59.332Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "446b6087-4d1b-4cbb-a29c-5df1db3bec26", + "createdTime": "2020-11-04T18:15:58.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7fb0c422-6324-4022-87fb-3a32e1154c17", + "createdTime": "2020-11-04T18:13:12.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e7c4b9a-d55d-495e-8fd1-b85d58303099", + "createdTime": "2020-11-04T18:13:11.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "600b1287-c2f3-432b-96d3-271eb2691a21", + "createdTime": "2020-11-04T18:13:11.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "beeccfd7-e81c-47c3-a1b5-212740db9cff", + "createdTime": "2020-11-04T18:13:11.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0604bc2c-90a0-40e5-95b9-a6a0a3f964f2", + "createdTime": "2020-11-04T18:07:11.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad268a20-3ca9-4dfd-a55a-955c1b917d3b", + "createdTime": "2020-11-04T18:07:10.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8bf49716-ec70-456b-bc41-1103aee89e38", + "createdTime": "2020-11-04T18:07:10.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "40e27a67-e2df-4f34-a37a-6c72e0d6b42c", + "createdTime": "2020-11-04T18:07:09.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "60e8f087-1320-416b-9559-cc67cfc9d15a", + "createdTime": "2020-11-04T18:03:35.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43ddd7de-ad29-48a4-958c-a817787ef944", + "createdTime": "2020-11-04T18:03:22.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "039d4d0a-b2b7-4895-9fc4-d256c96f1786", + "createdTime": "2020-11-04T18:03:22.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "489843a0-d5a0-4cd1-8f6d-f8eeb8b49494", + "createdTime": "2020-11-04T18:03:21.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc82028a-672b-47ac-b80a-43598efdb330", + "createdTime": "2020-11-04T18:03:21.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66f3f57f-3257-4383-b958-33fbdaa348fe", + "createdTime": "2020-11-04T17:54:42.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "814d3813-cd47-4aab-a3b6-210dfdc5f35e", + "createdTime": "2020-11-04T17:54:42.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "da415e1e-7105-434f-a615-1a322a0c2698", + "createdTime": "2020-11-04T17:54:41.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dce5d908-80b6-4959-9beb-5ed1f95afab4", + "createdTime": "2020-11-04T17:54:41.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "604a4385-1ce8-4341-98e7-b3b77b17af09", + "createdTime": "2020-11-04T17:40:26.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ff988e1a-15f7-470e-b08b-8c1b666262eb", + "createdTime": "2020-11-04T17:40:26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db99ebe7-8057-42b4-96e8-a510c21b1d6a", + "createdTime": "2020-11-04T17:40:25.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "22e19409-3ed3-47fa-83f9-b486c8241295", + "createdTime": "2020-11-04T17:40:24.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b3b8e24-27fa-4080-931d-c19fcf2587bc", + "createdTime": "2020-11-04T17:36:37.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7eb15b42-06e2-4d5a-8b1f-5d42aa4d8277", + "createdTime": "2020-11-04T17:36:36.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aad1c72d-b11e-48cd-9924-cf2e324ba945", + "createdTime": "2020-11-04T17:36:36.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8ba0e8dd-cf62-4f8a-b339-3f5ddd18285d", + "createdTime": "2020-11-04T17:36:35.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e755f6c8-4e58-45bc-95f5-f1c53dae39ca", + "createdTime": "2020-11-04T17:22:20.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0138c371-e691-4785-8763-cd14334fcc06", + "createdTime": "2020-11-04T17:22:19.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "24e42544-5598-453f-af75-cca2668d4912", + "createdTime": "2020-11-04T17:22:19.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fbc30d55-e434-4ed9-95b0-4e2d7da22c94", + "createdTime": "2020-11-04T17:22:18.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0016aab-a869-4042-86c8-49df3f859642", + "createdTime": "2020-11-04T17:18:42.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3f307b4-5875-4ed4-b730-c5c8a110d266", + "createdTime": "2020-11-04T17:18:42.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b53625a-254b-463a-b79b-7f7937345f59", + "createdTime": "2020-11-04T17:18:41.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f4272a8-4ffd-454a-80ec-c66f54c75f05", + "createdTime": "2020-11-04T17:18:40.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd506b60-cd1d-4776-a426-91b981e4275c", + "createdTime": "2020-11-04T11:02:40.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "44845233-3897-4e36-a90c-d3a4557e3c8b", + "createdTime": "2020-11-04T11:02:39.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "132a7603-7a2b-46dc-b4a7-2344c13ba45a", + "createdTime": "2020-11-04T11:02:39.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "87789afa-579c-451e-b1ad-0e4f6c5349a8", + "createdTime": "2020-11-04T11:02:38.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f996c1f9-3308-4e5b-bcdb-887f397f22b7", + "createdTime": "2020-11-04T10:59:16.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0b60a8a0-2151-43f9-b377-5c589ec0ec3a", + "createdTime": "2020-11-04T10:59:16.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "80b334a0-d43e-4967-8228-86ced561c9ac", + "createdTime": "2020-11-04T10:59:15.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "699d9785-a80f-475c-bb19-225c969b5206", + "createdTime": "2020-11-04T10:59:15.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bde901c6-1d0c-41b0-8635-cecea4f6ca7d", + "createdTime": "2020-11-04T10:34:07.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a4d6cf12-ef20-48da-ac12-72381e1bb0d2", + "createdTime": "2020-11-04T10:34:07.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8c865b33-ff84-431d-b2b1-2f36c8f64174", + "createdTime": "2020-11-04T10:34:06.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "aef5ba4e-6501-4963-902d-dd152529c9c8", + "createdTime": "2020-11-04T10:34:06.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b699ea68-8715-4aef-b931-f146db3ffe6a", + "createdTime": "2020-11-04T10:31:10.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92cb468d-6a03-4cc2-bd89-a247a0086972", + "createdTime": "2020-11-04T10:31:10.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c3aa47c-a433-41c5-b7c4-0452a5e8772b", + "createdTime": "2020-11-04T10:31:09.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f65626f0-790c-4340-9359-0bfcd8cfce68", + "createdTime": "2020-11-04T10:31:09.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "923ea007-6685-444a-8aa2-097bc435a1a4", + "createdTime": "2020-11-04T09:59:04.591Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "afc85362-161b-4030-812d-a7599cb96f54", + "createdTime": "2020-11-04T09:59:04.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a6e2ebc-9940-4bad-8194-0129ade9a992", + "createdTime": "2020-11-04T09:59:03.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "95d93271-6ca1-481f-b223-3d5539d6fe92", + "createdTime": "2020-11-04T09:59:02.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "840b4d57-ef9e-4225-b3d3-7866abea467c", + "createdTime": "2020-11-04T09:17:33.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "30be2f12-0ac7-4719-8f5d-258d852bc2b0", + "createdTime": "2020-11-04T09:17:33.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e86ee0db-557b-430d-b185-e547a22e9218", + "createdTime": "2020-11-04T09:17:32.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4091e4b0-4856-49ae-991a-30f6924f8786", + "createdTime": "2020-11-04T09:17:32.101Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8493c25c-a848-4a41-a128-ff3dccfe42c4", + "createdTime": "2020-11-04T09:13:59.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "778d6a91-9c09-461e-bce8-b964698c62d4", + "createdTime": "2020-11-04T09:13:58.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9216e780-bffd-4241-a825-a0056ffad92d", + "createdTime": "2020-11-04T09:13:57.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "759db291-1c7b-4a4b-9350-3dc89a7e22ac", + "createdTime": "2020-11-04T09:13:57.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "927bfcbf-6b21-4c1e-8964-67a257c5775b", + "createdTime": "2020-11-04T08:30:31.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03f6b08c-7b88-4bc3-b003-3c01dcb4c54f", + "createdTime": "2020-11-04T08:30:30.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3951f0d-6d3b-4d67-8e12-d19ce90f5c69", + "createdTime": "2020-11-04T08:30:30.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "aa0376b7-8709-4ec2-8af2-3c91f6d2e9fc", + "createdTime": "2020-11-04T08:30:29.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9086c250-89c2-4ae5-9bfa-0be8a11db81b", + "createdTime": "2020-11-04T08:27:37.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "42124d4f-2d94-4d12-9447-ce8911e5afb4", + "createdTime": "2020-11-04T08:27:37.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0d3eb182-d0b4-48da-b23a-7acdfe724331", + "createdTime": "2020-11-04T08:27:36.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e83ed0dd-5599-4ed4-a102-1e46afa6311a", + "createdTime": "2020-11-04T08:27:36.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aa1fe121-45ed-4a64-84bc-f9862256e4de", + "createdTime": "2020-11-04T01:53:16.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fc1bc9c3-3f32-49f7-9c43-e5fa5e6d086a", + "createdTime": "2020-11-03T23:44:08.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f6c1b2a-271b-4069-a408-899ec15321d8", + "createdTime": "2020-11-03T13:22:59.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7fe7466c-d961-4339-b45e-a6cc3a4cbefd", + "createdTime": "2020-11-03T09:13:13.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "570b83c7-db03-4626-b9a3-a3f4124b8d7e", + "createdTime": "2020-11-03T09:13:12.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7870ad8d-b908-4efb-9be5-7875c979800c", + "createdTime": "2020-11-03T09:13:12.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5cdc2a81-0cea-42ba-8998-3cde7f45bda2", + "createdTime": "2020-11-03T09:13:11.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d3ff2ad-296d-4592-a0f4-b9235d07a6eb", + "createdTime": "2020-11-03T09:10:28.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f92c8ed7-2874-450f-b40a-135866b066db", + "createdTime": "2020-11-03T09:10:27.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "446c16ff-05ee-4c9e-8b8b-b64f3397d9f4", + "createdTime": "2020-11-03T09:10:27.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "546afb8d-4db2-4878-8e0f-ab33fadd60dc", + "createdTime": "2020-11-03T09:10:26.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5ed8306-6f17-40e3-981f-a924bb85ac0d", + "createdTime": "2020-11-03T09:01:55.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "630d2a95-4e0b-4358-bc27-c89dfdc0e345", + "createdTime": "2020-11-03T09:01:55.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1747b102-88c2-435b-b772-bf7a81e6446e", + "createdTime": "2020-11-03T09:01:54.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c95f666d-6ee6-4946-95dd-8ee999936038", + "createdTime": "2020-11-03T09:01:53.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c51cfaf-f1ef-482d-ad11-6c0c6f83510b", + "createdTime": "2020-11-03T08:59:08.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c0379e3-1ae3-4bec-b054-c7f08805f78d", + "createdTime": "2020-11-03T08:59:07.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8fc47bb9-7fcc-4358-8afd-d5fc6cc80699", + "createdTime": "2020-11-03T08:59:07.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "080db816-a322-4511-99cd-d4293536831e", + "createdTime": "2020-11-03T08:59:04.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "197644f6-1fc7-4de3-adef-ba860bec5cfd", + "createdTime": "2020-11-03T08:46:26.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "64613d71-64c8-4c15-8645-18dca757fa9c", + "createdTime": "2020-11-03T08:46:26.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7ee857d-f0e5-4d60-af6c-d897d2e7b349", + "createdTime": "2020-11-03T08:46:25.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "782f0d72-9504-4304-920d-eae7b8b6232a", + "createdTime": "2020-11-03T08:46:24.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a02c88d8-2cbd-4cbb-b5af-348da99bd18d", + "createdTime": "2020-11-03T08:37:38.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6e3430de-2ec2-4add-b18b-42a7a70509f7", + "createdTime": "2020-11-03T08:37:37.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1a6ca2e-13f3-44b1-a08f-81bf8838b587", + "createdTime": "2020-11-03T08:37:37.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9853de71-2c85-40e2-b55f-5bcd5e65bbf3", + "createdTime": "2020-11-03T08:37:36.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "90f16812-4de6-49d3-854a-79e6e1873879", + "createdTime": "2020-11-03T08:34:59.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e566d1a3-f238-4d3d-a09d-47e1b7074956", + "createdTime": "2020-11-03T08:34:58.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9dedb0c1-b12c-476f-b062-ec4eae199363", + "createdTime": "2020-11-03T08:34:58.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "65d6c670-b67a-4fa7-a849-e1b8250b8e95", + "createdTime": "2020-11-03T08:34:57.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "49fae9ef-2bbb-4175-b5ff-a52a8f2cb5fb", + "createdTime": "2020-11-03T08:23:13.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e3bc251-de15-4f8d-9e13-75a86b5a518d", + "createdTime": "2020-11-03T08:23:13.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1fb1fbf8-a6a9-4a35-b8ec-c7b631b41254", + "createdTime": "2020-11-03T08:23:12.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "73a35cc2-612c-48d9-9edb-874417a0ee3a", + "createdTime": "2020-11-03T08:23:12.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "988794ec-58c2-4808-8536-44ab88556e3c", + "createdTime": "2020-11-03T08:20:32.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "77247f16-dd5b-4cb0-96f8-9d1fcb0f8ab6", + "createdTime": "2020-11-03T08:20:31.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4d619e57-7851-488e-aa63-68624a8d7dad", + "createdTime": "2020-11-03T08:20:31.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8f797b39-786a-4d90-887a-c7e8023f5c41", + "createdTime": "2020-11-03T08:20:30.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e4d1870-661c-4bea-9582-3f4438387c19", + "createdTime": "2020-11-02T21:45:14.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aaa901ad-6532-4402-b4a4-c08a435e2bcb", + "createdTime": "2020-11-02T18:09:48.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cb534a1-7008-499e-a027-b4137f74cf0f", + "createdTime": "2020-11-02T14:26:04.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1978f1fc-583f-4cdc-97bc-fbb45ac209f3", + "createdTime": "2020-11-02T09:21:07.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69154437-2e5b-46d6-8dab-8e548722df0b", + "createdTime": "2020-11-02T09:21:06.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e76da869-3e64-4cb7-afd3-241ef4ac509f", + "createdTime": "2020-11-02T09:21:06.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7f34dbfc-71aa-4b25-9107-75ca38730ecd", + "createdTime": "2020-11-02T09:21:05.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fbed2925-14c9-41f1-ae12-288fc008fa64", + "createdTime": "2020-11-02T09:18:18.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "37460ce3-0507-4dab-a2a9-9d3feb7da5b2", + "createdTime": "2020-11-02T09:18:17.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4fcee42-0536-4093-a797-ca15e06e0fad", + "createdTime": "2020-11-02T09:18:17.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4bf8cec4-efb7-4c38-b270-9ddbada95d7c", + "createdTime": "2020-11-02T09:18:16.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16da2e98-26be-41bc-83c0-ed1779b44dc3", + "createdTime": "2020-11-02T09:00:49.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fedccc5c-a9d3-403a-bd87-7e7b0debf070", + "createdTime": "2020-11-02T09:00:49.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "577b76d4-48eb-40dd-b99e-d5daf1f318c8", + "createdTime": "2020-11-02T09:00:48.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0360f3b9-a24f-48d0-8d84-34c701ad0026", + "createdTime": "2020-11-02T09:00:48.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cdc9aae-a6cf-45bf-bd5c-92be23938977", + "createdTime": "2020-11-02T08:58:21.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9ea43476-ebad-46eb-80e8-a60d99b7f4f7", + "createdTime": "2020-11-02T08:58:20.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e350b501-cad5-4004-b04e-4b51c153908a", + "createdTime": "2020-11-02T08:58:20.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "701b1ad5-aa22-4463-ab80-538b170ab24e", + "createdTime": "2020-11-02T08:58:20.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b84fddb-5677-4169-9904-c510dbce8f78", + "createdTime": "2020-11-02T08:45:44.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8a1f493c-d182-464a-9d50-127ddc490e72", + "createdTime": "2020-11-02T08:45:43.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "398bb3d9-0f61-4682-94ea-7ed3e8354465", + "createdTime": "2020-11-02T08:45:43.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c1bf63c-3709-4f06-bdfd-1e3cbd8255df", + "createdTime": "2020-11-02T08:45:42.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4aca317e-a217-4478-82c2-fbdd23d95a2a", + "createdTime": "2020-11-02T08:36:43.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45ffe890-2d0c-4c15-857c-e8e84fd19571", + "createdTime": "2020-11-02T08:36:42.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "741e4faf-44a0-4faf-9db6-d8f812efcc68", + "createdTime": "2020-11-02T08:36:42.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "35788d6e-db63-4af7-8c35-e18d2a83ad8d", + "createdTime": "2020-11-02T08:36:41.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c83115d1-e822-49b3-a05e-a42a785b1d86", + "createdTime": "2020-11-02T08:34:14.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92c847c2-56f2-4759-bc9d-1a6d32346ead", + "createdTime": "2020-11-02T08:34:14.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6560ab8-99a3-4d09-898b-b5a23975913a", + "createdTime": "2020-11-02T08:34:13.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f3c33a7d-212f-45d0-bb29-8a70d14212ac", + "createdTime": "2020-11-02T08:34:12.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "087166d5-97d2-468f-94de-3415af445f57", + "createdTime": "2020-11-02T08:22:15.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e507933f-4610-43ba-a4e6-ba88cbd954a5", + "createdTime": "2020-11-02T08:22:15.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e7367f3-3d5f-45b9-9df9-acbfe272adb9", + "createdTime": "2020-11-02T08:22:14.616Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bd64b728-9b45-4007-ac61-c8557c622598", + "createdTime": "2020-11-02T08:22:14.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0992df3c-3c85-48f3-bee0-6856d27b604c", + "createdTime": "2020-11-02T08:20:09.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "beef9186-debc-472a-9004-b8fe9be3c475", + "createdTime": "2020-11-02T08:20:08.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0ec00763-7361-45be-8c43-fb84f4bc7461", + "createdTime": "2020-11-02T08:20:08.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "85b1a26d-bc11-44db-a851-40e13c51db85", + "createdTime": "2020-11-02T08:20:07.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66c69050-5392-4865-98f6-8b18416d9e2e", + "createdTime": "2020-11-01T23:44:31.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b1e7779-d3a5-48cb-afaf-d21bb4b726a8", + "createdTime": "2020-11-01T23:44:16.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cebc9d68-b72c-4ada-88b2-30cc4cd26999", + "createdTime": "2020-11-01T23:44:07.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd52415b-7018-4f15-a06e-5db024b1ed07", + "createdTime": "2020-11-01T23:44:05.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7d8f36ce-1db7-4747-8ff1-ceb87244dead", + "createdTime": "2020-11-01T23:44:35.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6848463b-c04a-4f10-baf0-f87bf56c3ce9", + "createdTime": "2020-11-01T23:44:33.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5dc8a7b8-6240-492c-b254-4014f859bcfd", + "createdTime": "2020-11-01T23:43:59.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "281508b5-5855-4e65-a96e-b08292bf8902", + "createdTime": "2020-11-01T23:44:26.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "278f601a-4bcf-4fba-b716-9417aeadac50", + "createdTime": "2020-11-01T23:44:21.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2b80f680-d2d0-4906-a1b0-26b8ad280772", + "createdTime": "2020-11-01T23:44:20.369Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2dd6b39b-643f-42fa-b3df-b0e018e05698", + "createdTime": "2020-11-01T23:44:12.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6bfcfd24-b12e-484b-866f-f453056485df", + "createdTime": "2020-11-01T23:44:10.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3e84d9e2-4a46-4e53-ad4d-fc7497d2c3c6", + "createdTime": "2020-11-01T23:44:08.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f4f384d-768e-47db-9fdb-347a587625a1", + "createdTime": "2020-11-01T23:44:04.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "000ebe19-58dd-4665-a6d9-5d30531b571f", + "createdTime": "2020-11-01T23:44:02.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a9ea4e0f-151c-4508-b389-d8b6c3bd4b32", + "createdTime": "2020-11-01T23:44:01.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "acee37c8-a1e6-4d70-a8a4-5d4ebb916437", + "createdTime": "2020-11-01T23:43:57.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d6bdcc4f-3709-4570-a208-4f7e2e5ba5a7", + "createdTime": "2020-11-01T23:16:00.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0bd0d86d-44e4-4c85-af99-ba20c7137fc8", + "createdTime": "2020-11-01T23:15:52.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7844f989-e3be-4b67-956b-0e7c6fa74d3d", + "createdTime": "2020-11-01T23:15:46.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a87541e7-e808-4bf1-b689-31722664357f", + "createdTime": "2020-11-01T23:15:45.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c003812d-f4bb-49ea-aaf5-9eb602c402ad", + "createdTime": "2020-11-01T23:15:38.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c2a245d-6f7a-4278-a4f8-24016403d963", + "createdTime": "2020-11-01T23:12:58.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eedb5198-e837-4180-b525-24f402a9b4c1", + "createdTime": "2020-11-01T23:12:51.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d5210f1-6ad7-4e3d-a645-755469332738", + "createdTime": "2020-11-01T23:12:39.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f39e2077-bf0c-443d-bcea-b90413fa5ca7", + "createdTime": "2020-11-01T23:12:38.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbc4df6a-d1de-448a-987d-c58294def199", + "createdTime": "2020-11-01T23:12:31.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83aba0ca-5628-4a53-ab1d-41edd39a2281", + "createdTime": "2020-11-01T23:12:12.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a17b7f84-0ea6-41ff-a6f6-20c2ba3e3f44", + "createdTime": "2020-11-01T23:12:04.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "70c2a345-aff7-46a9-9aaf-007ed2aeac72", + "createdTime": "2020-11-01T23:11:55.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6fc1eaa4-4731-4ed9-b874-975fec656959", + "createdTime": "2020-11-01T23:11:53.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ec74048a-9d69-4db2-8dc9-f2f9b957c34c", + "createdTime": "2020-11-01T23:11:46.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1d96f6e-63d3-4c42-a052-4b66f7b909da", + "createdTime": "2020-11-01T23:11:22.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54744f32-b868-4ac4-8af4-d05181c47a93", + "createdTime": "2020-11-01T23:16:02.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "481bad4f-0438-455a-b254-cbde4892aed2", + "createdTime": "2020-11-01T23:16:01.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6cc87bec-ab4e-43da-8fa5-624deca2eb5d", + "createdTime": "2020-11-01T23:15:58.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "14062025-f204-4921-8ac7-d632c14bbb8c", + "createdTime": "2020-11-01T23:15:56.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f067252-7f50-4bb1-b195-6b13e46ccd0d", + "createdTime": "2020-11-01T23:15:55.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6f71aaf-9f88-42f3-8912-c5a11b897ffa", + "createdTime": "2020-11-01T23:15:50.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cef1081a-9f73-4401-9285-69e5fe6f953a", + "createdTime": "2020-11-01T23:15:48.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cc3e937f-f196-4c32-85d3-8d2dcf2fb394", + "createdTime": "2020-11-01T23:15:47.674Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ab39072b-814a-47a4-a644-a3ed012ca67d", + "createdTime": "2020-11-01T23:15:43.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "534f27a0-a4ce-4742-ac69-15e6abdf2b2d", + "createdTime": "2020-11-01T23:15:41.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4baac6ae-f458-469a-bcd2-dc690daee990", + "createdTime": "2020-11-01T23:15:41.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "49305ef7-306b-461e-8b81-21259fbf4ade", + "createdTime": "2020-11-01T23:11:15.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "97d65a4c-0fa8-43eb-aec6-00892449c507", + "createdTime": "2020-11-01T23:15:36.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba29da35-d7aa-466f-8fdb-f81681f41008", + "createdTime": "2020-11-01T23:11:09.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a902b51-836a-4391-936e-9f00e8fc83a2", + "createdTime": "2020-11-01T23:11:09.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0dcb3b87-7164-4713-a26e-aaea9389f93e", + "createdTime": "2020-11-01T23:11:07.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30f38475-d514-438b-9486-dbf888a82c30", + "createdTime": "2020-11-01T23:11:03.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed4c93e0-e802-454a-a4c1-c5b2bcc77bf3", + "createdTime": "2020-11-01T23:11:00.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7acc525-f3e5-4fc6-9f40-811c9effbf22", + "createdTime": "2020-11-01T23:13:01.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "67f8b56e-9d89-43ba-b74f-ac27898e66d2", + "createdTime": "2020-11-01T23:12:59.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cf966d18-cdcf-49f0-a863-f83698698a4f", + "createdTime": "2020-11-01T23:10:58.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b57ff413-fa97-4771-bc85-9a9457bf74c7", + "createdTime": "2020-11-01T23:12:57.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1e49e0ca-7c13-43b5-8c0a-4658985887a4", + "createdTime": "2020-11-01T23:12:54.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "47f8577a-d8d8-4a76-8a43-dbaf2c006c59", + "createdTime": "2020-11-01T23:12:53.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "038e6902-ec30-4272-af4e-419db9cbbbcf", + "createdTime": "2020-11-01T23:12:43.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "680786e3-30c7-4fe7-ac08-75a04cecbe51", + "createdTime": "2020-11-01T23:12:42.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b485300a-6d7f-4c1c-8599-4de991e639ab", + "createdTime": "2020-11-01T23:12:41.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a0d7e7b3-cfc5-4fa5-97fc-a226f0f886c9", + "createdTime": "2020-11-01T23:12:37.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5dcd6aeb-043f-4943-bbde-7ac9af221a46", + "createdTime": "2020-11-01T23:12:34.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7ad62d70-0a1e-40ee-8f39-f1336a4f5919", + "createdTime": "2020-11-01T23:12:33.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "099c434a-3903-4f6e-a46f-1147b80f7652", + "createdTime": "2020-11-01T23:10:56.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d036861-9af9-4cc5-a114-98918052a5a3", + "createdTime": "2020-11-01T23:12:28.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a0045923-350e-44fc-ba91-8dd13b08cb52", + "createdTime": "2020-11-01T23:12:15.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3d75a94d-d025-49c7-bfed-d4971f5006d7", + "createdTime": "2020-11-01T23:12:13.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a7122cc9-2634-47b6-bf4b-8c6b13674ee6", + "createdTime": "2020-11-01T23:12:09.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e5c9c941-ebfe-44ab-9f5a-8f39f2d737d6", + "createdTime": "2020-11-01T23:12:07.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0409ac81-670f-42be-b42f-3f08b04032ec", + "createdTime": "2020-11-01T23:12:06.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "abf13269-707e-4a43-8a47-18d9a3b3f42e", + "createdTime": "2020-11-01T23:10:41.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f3d2886-2fbc-4901-94d7-3ec08cadc37e", + "createdTime": "2020-11-01T23:12:01.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5ecf90b5-32df-4a2d-9b52-bd66f328e03f", + "createdTime": "2020-11-01T23:11:58.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3e4a2e23-197e-4e84-9379-76b2fed633b3", + "createdTime": "2020-11-01T23:11:56.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "570699e5-d174-49c0-a62d-21126f40ac0a", + "createdTime": "2020-11-01T23:11:52.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "68138ef0-1542-45b1-9448-4afabbdbfdb4", + "createdTime": "2020-11-01T23:11:49.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28d4e22f-d19e-46b5-8a37-05161410d91b", + "createdTime": "2020-11-01T23:11:48.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "245faeed-fb75-4548-b99a-bb32071cec3e", + "createdTime": "2020-11-01T23:11:44.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "535e9022-5ee9-44e8-87af-4b628adfb23e", + "createdTime": "2020-11-01T23:09:48.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfbf930e-6761-47f5-b0c7-bfda5785fb77", + "createdTime": "2020-11-01T23:11:25.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7d75c883-8765-4538-ab69-5d14b6ba61f4", + "createdTime": "2020-11-01T23:11:23.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b44b487b-7cc5-4166-a952-c71267d26c98", + "createdTime": "2020-11-01T23:11:20.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cd7cd844-360a-4c37-b210-bf951939acee", + "createdTime": "2020-11-01T23:11:18.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "71de49da-b06a-4b60-a044-34887afb6613", + "createdTime": "2020-11-01T23:11:17.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7bd447ac-a0db-4d02-959a-29771ec8c6da", + "createdTime": "2020-11-01T23:11:13.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5c7aeb65-7d67-4921-a890-a6f84022a7e6", + "createdTime": "2020-11-01T23:11:11.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "75766529-4ee6-44c5-9d0a-bc990fa0cb94", + "createdTime": "2020-11-01T23:11:11.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f2e79453-0b2f-410e-9e1e-74e597b3cde7", + "createdTime": "2020-11-01T23:11:10.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "921d3d0e-81d1-4838-93d8-75c30ad61f62", + "createdTime": "2020-11-01T23:11:10.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1b3c844d-a516-4967-ba91-6eb6ec2d1b38", + "createdTime": "2020-11-01T23:11:07.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5529d9a9-c26d-4159-bd00-b9fcc835bf50", + "createdTime": "2020-11-01T23:09:40.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a393ea14-cc95-4f5c-868b-bd7c1de9b4a3", + "createdTime": "2020-11-01T23:11:06.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b76487dd-0254-4546-ad35-9c9b9f5c72eb", + "createdTime": "2020-11-01T23:11:06.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fcbe671e-e9bf-4df4-83e8-395aef951540", + "createdTime": "2020-11-01T23:11:05.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fbc6eab8-54fb-4ef4-9a2d-2928645b33d4", + "createdTime": "2020-11-01T23:11:03.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ddca924-a31d-464e-a49d-1c9b9391c8d9", + "createdTime": "2020-11-01T23:11:02.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "beb10a0f-8ee2-44cb-8d34-4e4779c836fa", + "createdTime": "2020-11-01T23:11:01.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0b5c7432-9cb0-4b92-93de-12c163cf9b28", + "createdTime": "2020-11-01T23:11:00.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "42f2b2d1-cd91-441c-971e-3fcbe4c7f0dd", + "createdTime": "2020-11-01T23:10:59.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c30c1ed4-487d-4750-afca-6353486eece5", + "createdTime": "2020-11-01T23:10:58.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5fe07639-518f-4e0c-b4b8-921e35411105", + "createdTime": "2020-11-01T23:10:55.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d8405211-ef3f-453d-bf21-7000efec7114", + "createdTime": "2020-11-01T23:10:44.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e0151dcb-0962-41eb-b561-a77f41b15119", + "createdTime": "2020-11-01T23:09:36.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "671571ad-865e-413c-94db-a53a1ce4c870", + "createdTime": "2020-11-01T23:10:43.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3fa8f067-9de6-48c2-ab36-948ce0d8c73f", + "createdTime": "2020-11-01T23:10:39.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9013b617-291e-4c45-9ff6-17454f364dcd", + "createdTime": "2020-11-01T23:09:34.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9ddd3b8-f61b-4d1b-bcce-692db70672b2", + "createdTime": "2020-11-01T23:09:26.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4340947-c573-4a81-8380-853cd21adcd8", + "createdTime": "2020-11-01T23:09:50.094Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1b5f0137-3a45-40f8-a79e-416adef5193d", + "createdTime": "2020-11-01T23:09:48.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4eabd2ce-53fe-4b1f-9c11-6a4f8341e34b", + "createdTime": "2020-11-01T23:09:46.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2af10e98-71f8-420e-865a-90e91143ea96", + "createdTime": "2020-11-01T23:09:44.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fe7ed774-51eb-49f8-bb0d-53b02addd3a9", + "createdTime": "2020-11-01T23:09:42.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7418e2bd-a4fd-480d-840f-e41ccfb64ad0", + "createdTime": "2020-11-01T23:09:39.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0e2bc890-db6c-4f47-8a06-2207feea4820", + "createdTime": "2020-11-01T23:09:38.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8e3bd00b-9562-4429-b724-09bd6dbb1b8b", + "createdTime": "2020-11-01T23:09:37.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aa59fba8-0526-49a1-a548-af8c70bb3b25", + "createdTime": "2020-11-01T23:09:33.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9515153e-0cc1-4de3-a48b-fb887092a684", + "createdTime": "2020-11-01T23:09:30.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2306b910-cd2f-4d9a-a54a-7b1904ce7da8", + "createdTime": "2020-11-01T23:09:29.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "04977dba-f5b1-49b2-9a1f-ff2dbc3c3193", + "createdTime": "2020-11-01T23:09:24.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "72c9b414-f4b2-4d06-a8ce-3559dabcc028", + "createdTime": "2020-11-01T23:02:14.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2c43cb5-2f92-4c12-9918-10a84d0fc74c", + "createdTime": "2020-11-01T23:02:05.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f3e7388-f6e0-43d0-ae93-4649bc3dd582", + "createdTime": "2020-11-01T23:01:58.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d92c980b-868a-4a55-bfff-0f8649c98197", + "createdTime": "2020-11-01T23:01:55.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c6143f5-ba5b-4831-a370-4beead0a64ae", + "createdTime": "2020-11-01T23:01:48.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc7ac2a5-0c02-4d52-8910-2a369a746ac2", + "createdTime": "2020-11-01T23:00:16.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b26f7f6-fee3-4874-9231-3304abd4e534", + "createdTime": "2020-11-01T23:00:09.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d44c709-7ef0-4f4d-9a6c-6872a7107bb4", + "createdTime": "2020-11-01T23:00:05.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1fcb9dd-3dea-48ad-bf26-a50ea5bbd115", + "createdTime": "2020-11-01T23:00:03.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eab3da0a-2ac6-4852-ad7c-6d3f0a6659a0", + "createdTime": "2020-11-01T22:59:57.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53a3463e-60be-46f5-99d2-d3cc41a811f3", + "createdTime": "2020-11-01T22:57:56.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ce159a8-3190-4b16-a11d-4ce1933d7d2f", + "createdTime": "2020-11-01T22:57:51.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65796a48-1f49-40cc-abbb-4ee252d89062", + "createdTime": "2020-11-01T22:57:47.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "efa94367-fad7-4873-a181-55b853a5c654", + "createdTime": "2020-11-01T22:57:46.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "902fba6a-ac24-460c-bbed-d04b251d0d08", + "createdTime": "2020-11-01T23:02:17.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "070cd4a5-c8d7-4c47-b947-29b3982f846e", + "createdTime": "2020-11-01T23:02:15.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "57268e29-c4cc-41cc-8606-ee30681903e1", + "createdTime": "2020-11-01T23:02:11.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "24f9d02e-132d-4dd3-b2d0-dea887bd88c1", + "createdTime": "2020-11-01T23:02:08.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c2f09939-87c8-49ec-ae24-e943d149ee25", + "createdTime": "2020-11-01T22:57:41.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b26e2f2-9bb7-49c1-89a3-ef9bcfba4d9b", + "createdTime": "2020-11-01T23:02:07.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6246b583-5099-44bb-908b-e1ace53c2afa", + "createdTime": "2020-11-01T23:02:02.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "60abadee-da56-40f0-a389-6da23fddce4b", + "createdTime": "2020-11-01T23:02:01.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cd5b9369-6742-44fa-9c8c-c3e52b1c0c64", + "createdTime": "2020-11-01T23:01:59.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "075965c9-a805-4e13-9455-9d73cf51f526", + "createdTime": "2020-11-01T23:01:54.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "30e9e01b-e71d-46d9-a2d6-36260d468d5c", + "createdTime": "2020-11-01T23:01:51.776Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d5022db5-db88-42c9-a781-07706216af1c", + "createdTime": "2020-11-01T23:01:50.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f319f783-9acd-4a74-b2f5-650292bddd4f", + "createdTime": "2020-11-01T23:01:45.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8d760eb2-6f13-4d5b-a850-c7c8665e16a5", + "createdTime": "2020-11-01T22:57:35.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "278b0f39-3371-4223-b8cb-8d25b27b76fd", + "createdTime": "2020-11-01T22:57:34.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "959597a0-4aad-4dad-a9de-2a6c513f369b", + "createdTime": "2020-11-01T22:57:28.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd4f8882-47f2-4506-a80a-fe9df1c2ca51", + "createdTime": "2020-11-01T22:57:27.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65d39347-9f35-412a-b850-cbf04049bbfa", + "createdTime": "2020-11-01T23:00:18.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "aa305d81-a08b-4ac8-a702-4d395f6d30a5", + "createdTime": "2020-11-01T23:00:17.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1df8bc6-23a6-4eef-8c9b-951825e80c8b", + "createdTime": "2020-11-01T23:00:14.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2aff7a7f-9a91-4d65-9338-fa9b4dc79f05", + "createdTime": "2020-11-01T23:00:12.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9cd2dc98-7030-4f99-b19e-7170b14eec3c", + "createdTime": "2020-11-01T23:00:11.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5df1efcd-1cba-4a45-8030-64b3c07de069", + "createdTime": "2020-11-01T23:00:08.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e6771a61-1eb9-4d03-a855-2aa33183228a", + "createdTime": "2020-11-01T23:00:07.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f4e484bd-d262-4477-bac6-197b58fcc99a", + "createdTime": "2020-11-01T23:00:06.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "84012aac-d007-4297-a34d-bde7ae8e018a", + "createdTime": "2020-11-01T23:00:02.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "66555e29-74b7-4486-a196-66e86c532cfa", + "createdTime": "2020-11-01T22:59:59.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8268c55a-f44e-4353-b0a9-8df6b27f3062", + "createdTime": "2020-11-01T22:59:59.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0d6513b3-dd0e-4902-9d1a-8261ef1034ec", + "createdTime": "2020-11-01T22:57:21.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "27b941f3-7ae5-48be-9b19-402c5fca6dcb", + "createdTime": "2020-11-01T22:59:55.312Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "af883bce-e418-4f00-a4b6-c9701eccbb43", + "createdTime": "2020-11-01T22:57:20.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94093801-d9fb-4606-b12f-aa25792b07a1", + "createdTime": "2020-11-01T22:57:20.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "741fb06a-32a9-46f4-9af2-c3d84eeb8c6e", + "createdTime": "2020-11-01T22:57:19.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54362578-2e00-42d0-8102-9b9d1cf73b40", + "createdTime": "2020-11-01T22:57:58.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b3cb4a05-dbcc-4825-9579-1d78965c1369", + "createdTime": "2020-11-01T22:57:57.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bfbb3f0f-ace9-456c-b29d-f585290ee83a", + "createdTime": "2020-11-01T22:57:12.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b2af519-cab7-490f-9ae8-2f2db68e7723", + "createdTime": "2020-11-01T22:57:55.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2282ded0-8b62-4c6f-bf3a-06367c157b4b", + "createdTime": "2020-11-01T22:57:53.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f2be6d0f-68a1-4ab2-aeee-57349866afd2", + "createdTime": "2020-11-01T22:57:52.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5d4029fd-8fbd-4860-a309-f9b6c86d10a9", + "createdTime": "2020-11-01T22:57:50.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0d4e7036-33d0-4860-8024-d8af1811489a", + "createdTime": "2020-11-01T22:57:49.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cde9b416-af8a-45f7-a382-264a9dd9a729", + "createdTime": "2020-11-01T22:57:48.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b983df67-c0d3-47ba-9aae-e4ea150278f1", + "createdTime": "2020-11-01T22:57:45.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "390f4e83-7d8f-4784-aa9d-773c0d849187", + "createdTime": "2020-11-01T22:57:43.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef84d53b-ed74-4c9b-b0a2-5789e40c7399", + "createdTime": "2020-11-01T22:57:42.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e1e421c4-c92d-42f5-9e48-818ff7ef9683", + "createdTime": "2020-11-01T22:57:39.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0ba31e6b-cc62-4b81-b816-ea4e3a8d84ef", + "createdTime": "2020-11-01T22:57:38.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e25c780d-3b86-48b1-976a-5821646912db", + "createdTime": "2020-11-01T22:57:37.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "af806f40-5c35-4bea-a35f-12e789da04da", + "createdTime": "2020-11-01T22:57:36.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "47ada503-7c92-4e4e-8d17-a7fdb24ac956", + "createdTime": "2020-11-01T22:57:35.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28fb122a-b8c8-4511-831b-c69395800e44", + "createdTime": "2020-11-01T22:57:33.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a91ee95b-ea57-4871-87ef-b01363d3b075", + "createdTime": "2020-11-01T22:57:32.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7f196b96-9a9d-42ef-90ac-2e375229bff8", + "createdTime": "2020-11-01T22:57:07.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22324094-f684-4ab2-bfd6-a1af680c635b", + "createdTime": "2020-11-01T22:57:31.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7b152569-a0d4-44ce-a424-0f0981f87146", + "createdTime": "2020-11-01T22:57:30.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c10eb46c-5e54-40c9-9d2b-0bacf1f81c2d", + "createdTime": "2020-11-01T22:57:30.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "057959e5-92ed-47db-909b-9755624e3dfc", + "createdTime": "2020-11-01T22:57:29.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ccb425d1-abe0-4335-bfc8-f5066106ad6c", + "createdTime": "2020-11-01T22:57:25.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c08a3b56-01f0-4d3f-bb72-0f29e7d60d4c", + "createdTime": "2020-11-01T22:57:24.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "54ff2d63-9af3-4ebd-8c0c-3fe422b000e2", + "createdTime": "2020-11-01T22:57:24.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a9e0a737-a96e-4302-af88-1a055bed0ef7", + "createdTime": "2020-11-01T22:57:23.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6668d6cc-0bfc-43e0-9fda-5692937413be", + "createdTime": "2020-11-01T22:57:23.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9db9eefd-43c1-439a-bde3-5ac0a2a2521a", + "createdTime": "2020-11-01T22:57:22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "85bc49af-9157-4ee6-b014-c6c37c8cea96", + "createdTime": "2020-11-01T22:57:18.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6f015259-750b-4dc4-b5e5-dcec6dd2bcfb", + "createdTime": "2020-11-01T22:57:17.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "49db43a8-3fe8-4562-985b-e3c291287c7f", + "createdTime": "2020-11-01T22:57:16.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12bf30a1-c2c2-4f74-8513-dc4e68a974c4", + "createdTime": "2020-11-01T22:57:15.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "be7b1b62-007e-46c8-8d8e-a280c39eaff6", + "createdTime": "2020-11-01T22:57:10.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8522069f-5c68-4954-b1fe-cdd6d2a390fe", + "createdTime": "2020-11-01T22:57:09.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd73f521-bcba-43c1-aedc-37dae7aa6742", + "createdTime": "2020-11-01T22:57:09.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8e5baa00-6561-4df1-a437-4ef93953ffa9", + "createdTime": "2020-11-01T22:57:04.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eebd249a-45f5-4596-88dd-906fe01513d2", + "createdTime": "2020-11-01T22:55:11.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b34e078-be8f-49da-ae08-7df5eda6f67d", + "createdTime": "2020-11-01T22:54:53.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46df3c2b-1fd0-4a87-abce-51fd5aeb829a", + "createdTime": "2020-11-01T22:55:34.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8ee81c99-a22a-45ec-a6dd-3797ec09042f", + "createdTime": "2020-11-01T22:54:50.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9193f1d2-d186-4d08-9201-37805e0a8a78", + "createdTime": "2020-11-01T22:55:17.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ab998b2a-280a-4b42-a160-e2c1b571cd3b", + "createdTime": "2020-11-01T22:54:49.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8243fc8-dcf8-4502-8716-6d0440ccb20f", + "createdTime": "2020-11-01T22:54:56.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d2ce0413-0393-4f46-b223-94dd2f7a3607", + "createdTime": "2020-11-01T22:54:46.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79abcfd6-bc24-456e-9f00-0a543d97b8b0", + "createdTime": "2020-11-01T22:54:55.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "03c7e926-34ae-49c4-a67d-574df1502b75", + "createdTime": "2020-11-01T22:54:54.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5653fec3-0835-4145-9753-377655fe4a65", + "createdTime": "2020-11-01T22:54:52.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "659c84b0-75b2-4ce9-980b-03ec105fbffc", + "createdTime": "2020-11-01T22:54:51.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f37847cd-2a5f-4fbe-8e75-59c432b3a66b", + "createdTime": "2020-11-01T22:54:51.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1ffc8570-3679-43b2-8925-77bfdf241c18", + "createdTime": "2020-11-01T22:54:49.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ad1d1fe-9fc3-47c4-af02-fe14a7d3f670", + "createdTime": "2020-11-01T22:54:48.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "11de391c-9027-4cbc-958f-71afc85c2c73", + "createdTime": "2020-11-01T22:54:47.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e18c1530-9000-4438-bcab-46985b585efb", + "createdTime": "2020-11-01T22:54:45.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "134e495f-921c-4fc5-b5e2-5f98824008e6", + "createdTime": "2020-11-01T21:48:17.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cf57359-f9bb-4718-9869-072bd088ac98", + "createdTime": "2020-11-01T21:48:10.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3649b3a-2abb-4a80-9dae-e19e1f650d5b", + "createdTime": "2020-11-01T21:48:05.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d78da5f-7e1d-4932-a25b-8f82024aa3ec", + "createdTime": "2020-11-01T21:48:03.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ac1db540-2571-4eb5-94d7-faa30c58ba3f", + "createdTime": "2020-11-01T21:47:58.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "04ac5d3e-dcde-4b77-a0e5-5002a29a42e2", + "createdTime": "2020-11-01T21:46:16.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2facd463-7034-41a5-9335-8335163d38a1", + "createdTime": "2020-11-01T21:46:10.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66186452-831c-4e36-acbe-d0c41a2ea776", + "createdTime": "2020-11-01T21:46:05.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4a65930-5a81-4863-92ab-24c7f1f88448", + "createdTime": "2020-11-01T21:46:05.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b133e0d8-408f-409f-b789-2fb61d6ca940", + "createdTime": "2020-11-01T21:46:03.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "def8f419-c74d-46cd-801e-cb7bbc158d2f", + "createdTime": "2020-11-01T21:45:58.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ebc740d5-673d-46f6-919f-0e6d7b14398e", + "createdTime": "2020-11-01T21:45:57.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d133cc34-66d4-44dc-a121-6677d408316c", + "createdTime": "2020-11-01T21:45:51.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2de7f05b-e6a6-47bc-90f3-55eb6f7adb83", + "createdTime": "2020-11-01T21:45:49.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0c8d859-0e1e-4b27-ab0d-ec55d7d5a6dd", + "createdTime": "2020-11-01T21:45:40.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "858f394a-f015-4f2b-9f4e-3ea7b79c3556", + "createdTime": "2020-11-01T21:44:50.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "410cf92a-3eab-4cd7-aa65-2a5884ff9ce0", + "createdTime": "2020-11-01T21:44:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85790a5e-a7c4-4352-b5ba-5adb1740db53", + "createdTime": "2020-11-01T21:44:40.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea9a451e-b536-49a5-b698-bb88e880a77b", + "createdTime": "2020-11-01T21:44:34.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ddfb095e-b26f-42a3-9fae-f51519a433d6", + "createdTime": "2020-11-01T21:44:31.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "241f3275-7046-4dc8-ab5d-8d3f254b5599", + "createdTime": "2020-11-01T21:44:30.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c39160c5-49c4-474c-aca8-ffa89c1f9b36", + "createdTime": "2020-11-01T21:48:19.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e8177524-5e03-494c-bdc1-6e9939bfff3c", + "createdTime": "2020-11-01T21:48:18.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "efd1cd74-e588-44df-956f-acc4ba9d1a17", + "createdTime": "2020-11-01T21:48:15.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cd81cb9b-9474-4830-a5a1-06600c5826cb", + "createdTime": "2020-11-01T21:48:13.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "91ef6dbd-deb3-452d-b63f-9307566cb405", + "createdTime": "2020-11-01T21:48:12.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2564a06e-171a-4e51-802c-440e9d6aed92", + "createdTime": "2020-11-01T21:44:23.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb161c8b-59e1-4de6-8456-837c7486ef85", + "createdTime": "2020-11-01T21:48:08.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cdbf9e20-868f-4705-b19d-4fd0fdf6be4e", + "createdTime": "2020-11-01T21:48:07.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f9108a5b-2136-47cc-94ea-aed09e000e0a", + "createdTime": "2020-11-01T21:48:06.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f89867f6-44f9-4400-a3be-592e97d44e1e", + "createdTime": "2020-11-01T21:44:23.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "26a1fe1d-8581-4ca6-9c53-f9b39d7fb2e0", + "createdTime": "2020-11-01T21:44:22.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "09d45fb7-5dfb-4fc8-bd47-da146b634057", + "createdTime": "2020-11-01T21:48:02.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fe551434-9031-43ba-b4a9-1eebe1c498ab", + "createdTime": "2020-11-01T21:48:00.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a181703-f540-4bce-b43d-60c113021233", + "createdTime": "2020-11-01T21:47:59.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "65e00250-1ee0-4538-9a20-930d155fd938", + "createdTime": "2020-11-01T21:47:56.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "25881f2f-019b-4396-b7e8-625d39eb2c42", + "createdTime": "2020-11-01T21:44:21.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d57974a-d6cb-4c64-81a0-296317124af0", + "createdTime": "2020-11-01T21:44:16.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "940bd7ff-6ce3-4dfd-88dc-1133620fb5fa", + "createdTime": "2020-11-01T21:46:18.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "9d782a52-15e9-4646-ad79-7630dbe33573", + "createdTime": "2020-11-01T21:46:17.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8f9a53a-339e-4c5c-a24a-c213d1b4e817", + "createdTime": "2020-11-01T21:44:14.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0fd053ed-f01c-435d-ae5d-d2668e0d2ddd", + "createdTime": "2020-11-01T21:46:15.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "20cfa087-33fe-4c99-adb2-84416f118d8f", + "createdTime": "2020-11-01T21:46:13.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1e63634c-0bec-41ca-a959-56942117c097", + "createdTime": "2020-11-01T21:46:12.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12673a06-f7a0-4c29-a686-4d6c7c4d8dc5", + "createdTime": "2020-11-01T21:44:10.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "147f2d14-620a-413b-8f0c-e9813e352262", + "createdTime": "2020-11-01T21:46:08.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74012c33-c4e7-48c4-b932-b4b48a494e10", + "createdTime": "2020-11-01T21:46:08.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b4d08e12-8a99-4d6d-b758-39f5da777b9d", + "createdTime": "2020-11-01T21:46:08.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8fd9cf18-764a-4283-8a3d-3bd5e9070e0d", + "createdTime": "2020-11-01T21:46:07.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6edd6fe6-8e70-451d-8c08-049cbb0876db", + "createdTime": "2020-11-01T21:46:06.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7462e986-13e7-41d7-b1d9-9f4bf269e923", + "createdTime": "2020-11-01T21:46:03.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "75473976-0e62-4283-a1a7-fb30fc3c352e", + "createdTime": "2020-11-01T21:46:02.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "be203e07-6bcb-48cb-abd9-a929dee2b708", + "createdTime": "2020-11-01T21:46:01.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8bacf32a-6c10-4c48-bc59-c19b406647e5", + "createdTime": "2020-11-01T21:46:00.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cbb44aa2-dd27-4b03-8ec6-e177adb89cfc", + "createdTime": "2020-11-01T21:46:00.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "70dc3dc8-6376-49bc-bac0-4748fd6981f5", + "createdTime": "2020-11-01T21:45:59.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "541690a2-3a63-4984-bd50-dce8700a80fc", + "createdTime": "2020-11-01T21:44:08.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7c265c9-eb3e-40b3-bcde-d3f231efd6dc", + "createdTime": "2020-11-01T21:45:56.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9d1df958-e56e-406c-b236-cfbfacbc7b65", + "createdTime": "2020-11-01T21:45:55.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a3daff7e-e9ee-40b4-8de8-0b41eb4c802f", + "createdTime": "2020-11-01T21:45:54.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "798588e3-425c-4489-bbb2-cffc47ff84e2", + "createdTime": "2020-11-01T21:45:52.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6bec528-4c49-40d1-a6cb-6a3ce0b23403", + "createdTime": "2020-11-01T21:45:47.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9e383ade-9b06-4257-af03-ab50989c4833", + "createdTime": "2020-11-01T21:45:44.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a9c34dae-e693-49d9-84b7-846d4236578c", + "createdTime": "2020-11-01T21:45:43.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a2f127af-1b1a-4af5-8469-4fff29fb1e9d", + "createdTime": "2020-11-01T21:45:38.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5d6f99b6-8590-4fbb-b5d5-1bca77a10385", + "createdTime": "2020-11-01T21:44:02.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "661e0e1e-984c-404f-984c-fbbd5abfcfea", + "createdTime": "2020-11-01T21:45:03.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "86ca4b8f-2d15-4107-810b-fceb2aba4d09", + "createdTime": "2020-11-01T21:43:10.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "08ab2f0c-4bfb-4f1a-af15-3981aecc51c3", + "createdTime": "2020-11-01T21:44:51.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "301e6496-617d-4b80-a0b3-79598d30769b", + "createdTime": "2020-11-01T21:44:47.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b6116ae-b99d-47a0-b6af-0957d6962e53", + "createdTime": "2020-11-01T21:44:45.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "18427184-db9d-448e-ad2b-639f0b68e914", + "createdTime": "2020-11-01T21:44:44.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "43e2d330-d73e-4f17-823c-08b6bac594c8", + "createdTime": "2020-11-01T21:44:44.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "30756859-0072-4863-802e-64c35693cb3a", + "createdTime": "2020-11-01T21:44:42.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c52fb1e2-c177-43ba-a914-a1afb93a1cc9", + "createdTime": "2020-11-01T21:44:38.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "103e75b1-3029-4046-af77-51861b56b022", + "createdTime": "2020-11-01T21:44:38.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2a872176-6d1e-47fd-8d1b-2b92c5c8f8da", + "createdTime": "2020-11-01T21:44:37.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ea0e1e3d-fa3d-464d-afda-9ee37422c6ca", + "createdTime": "2020-11-01T21:43:03.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18751398-2f7c-4563-8cbb-0d0921acee96", + "createdTime": "2020-11-01T21:44:35.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "094fdaa7-672f-4f2c-9b6c-4ddceee4032b", + "createdTime": "2020-11-01T21:44:35.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a760150-1071-4e2e-839f-759059438794", + "createdTime": "2020-11-01T21:44:34.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3fb00cfd-3b44-4575-b0dc-401adbd4703a", + "createdTime": "2020-11-01T21:44:29.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "281da9cd-3078-4ddb-b6fd-c4eebc730377", + "createdTime": "2020-11-01T21:44:27.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4fd7f053-1fbe-4c6e-b010-adb7bfef21a9", + "createdTime": "2020-11-01T21:44:27.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ef8340d-00b5-4076-9c52-a1da8b41eabd", + "createdTime": "2020-11-01T21:44:26.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "90d2e93a-8757-4868-bc87-3495ecfc4048", + "createdTime": "2020-11-01T21:44:26.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4a8bc7cc-15be-4b13-ad01-53b20ededcc1", + "createdTime": "2020-11-01T21:44:25.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "34903583-b8c9-4db6-a625-4602918a0daa", + "createdTime": "2020-11-01T21:44:24.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "94114bdb-f646-426f-8b95-65e7a4d31794", + "createdTime": "2020-11-01T21:44:23.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b090c7e4-f199-4cad-9fa5-9ce8fd24a8fe", + "createdTime": "2020-11-01T21:44:21.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "690e7ff2-5731-4dc7-8d6d-ba5183ef788c", + "createdTime": "2020-11-01T21:44:21.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5c3de47b-1bf1-48a9-bf25-4ceb78edb953", + "createdTime": "2020-11-01T21:44:20.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "55da33d0-f836-4bee-856c-0c0dc0f88c0f", + "createdTime": "2020-11-01T21:44:19.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "30256ae0-a193-455b-8e39-4b46a6f30442", + "createdTime": "2020-11-01T21:44:18.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6410d911-9a8c-4d84-bb40-d6b0a5103541", + "createdTime": "2020-11-01T21:44:17.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7f400001-6cbe-4ccb-ab0f-4cddf42f066b", + "createdTime": "2020-11-01T21:44:17.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "adea190b-6371-4aa2-bcbb-f796c44ce979", + "createdTime": "2020-11-01T21:44:14.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2d76262d-1215-4a3f-b8dd-290aa8fda9a9", + "createdTime": "2020-11-01T21:44:13.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "bad1ee8b-c4b6-4340-8281-9ffb078922cc", + "createdTime": "2020-11-01T21:44:11.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "75479d7d-7d0f-4cd3-8d41-87e7058900ca", + "createdTime": "2020-11-01T21:44:11.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b289c12c-02de-4d73-96db-59dc7c6ca8a6", + "createdTime": "2020-11-01T21:44:07.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "093d8472-ad3e-41a0-aa33-1a15819998d3", + "createdTime": "2020-11-01T21:42:52.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f55e8999-1bc0-4342-be49-4eb4e216a2f6", + "createdTime": "2020-11-01T21:44:05.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3d7cc6ca-d702-4110-bf15-ad2990ce1541", + "createdTime": "2020-11-01T21:44:04.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e5774869-3842-40aa-8a55-f5c201aed1d7", + "createdTime": "2020-11-01T21:43:59.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f91106a4-e162-4846-ac2e-9532de00638c", + "createdTime": "2020-11-01T21:42:48.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3505830a-cd3f-4740-a21d-9489037c6256", + "createdTime": "2020-11-01T21:43:13.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e9d19fe8-2974-4f38-907d-cb190a9692d0", + "createdTime": "2020-11-01T21:43:11.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9a89df99-4010-4934-b603-c711f023a5e2", + "createdTime": "2020-11-01T21:43:08.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1dc36d04-bf49-4538-a962-737e02f6fb69", + "createdTime": "2020-11-01T21:43:06.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f67b4cf-5c6b-4104-ad64-a69d02900e87", + "createdTime": "2020-11-01T21:43:05.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0c8173bf-769b-45b2-93ea-6698eaccd935", + "createdTime": "2020-11-01T21:42:35.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f1637944-5055-43f3-a72b-553f445cbc8b", + "createdTime": "2020-11-01T21:43:01.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7b4ce42a-377a-4677-a4c8-6fb02c426ac0", + "createdTime": "2020-11-01T21:43:00.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b153450f-b771-46b1-99d9-79d3b162fe1e", + "createdTime": "2020-11-01T21:42:58.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1ff51acd-ac1d-41ad-a628-cf9ddab02dd0", + "createdTime": "2020-11-01T21:42:43.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e3cf04fc-fa6c-4a0b-8f97-7b5846f3e8a4", + "createdTime": "2020-11-01T21:42:39.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ff239ab-1f32-4931-958e-c4b2d57074a9", + "createdTime": "2020-11-01T21:42:38.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c1546de5-68f3-442e-8a57-360a8024dea0", + "createdTime": "2020-11-01T21:42:31.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88a453d6-724d-4410-9de1-31745b1f675e", + "createdTime": "2020-11-01T21:30:59.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43165539-089a-4a73-b665-c4b4a5c6ad7e", + "createdTime": "2020-11-01T21:30:52.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0431bb97-1092-41c6-8681-3c7bd20a2a62", + "createdTime": "2020-11-01T21:30:46.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "850b6363-5388-4f69-a034-2d98cbf1b738", + "createdTime": "2020-11-01T21:30:43.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e9018d8-0c2d-47d6-8ffd-3cd601d2c05e", + "createdTime": "2020-11-01T21:30:30.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "04550e3f-033d-4b88-a563-957c6cb435c2", + "createdTime": "2020-11-01T21:28:25.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a3c5046-0a9a-4351-9b16-fa656bc0c984", + "createdTime": "2020-11-01T21:28:19.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "01944d0b-1d89-4f44-9026-7ad3b1d48ab3", + "createdTime": "2020-11-01T21:28:14.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57aa2375-b52c-4fcc-86d3-07c8c9902fa2", + "createdTime": "2020-11-01T21:31:02.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "24cd6550-a3ae-4cdc-b4cf-70012aef4288", + "createdTime": "2020-11-01T21:31:01.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e16e135b-b019-43c2-b58d-e44c6ab1ae5f", + "createdTime": "2020-11-01T21:30:57.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bec8557b-6795-4672-bf46-8431b7b4c49e", + "createdTime": "2020-11-01T21:30:55.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1d561cd-97d5-490d-b5cb-7cabadf72ab4", + "createdTime": "2020-11-01T21:30:54.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4d10981e-bbf3-4324-9231-2a103c1647a4", + "createdTime": "2020-11-01T21:28:13.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6172e94-c91c-4645-bf9b-f19f763c0da8", + "createdTime": "2020-11-01T21:30:50.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d670fda1-37aa-41d8-87e2-76fe5a342bff", + "createdTime": "2020-11-01T21:30:48.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "47f08b37-1024-497e-ab9c-64a23c830835", + "createdTime": "2020-11-01T21:30:47.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "78430d6d-a3ec-418a-b109-768b1ac35812", + "createdTime": "2020-11-01T21:30:42.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4b92e48d-10cc-4697-a645-c44693609ed0", + "createdTime": "2020-11-01T21:30:39.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "197358eb-38d7-49e8-bf7d-d8e155bdfc26", + "createdTime": "2020-11-01T21:30:38.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "90aeeb00-3f9f-4736-9e85-5b91edaae06b", + "createdTime": "2020-11-01T21:30:28.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "433741c5-0b44-4607-9ad6-d8b02776f19c", + "createdTime": "2020-11-01T21:28:06.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71b2d277-b30c-44a3-ad7e-28da30a14952", + "createdTime": "2020-11-01T21:27:17.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a6a8de-1d4a-4fee-afb1-5da4c3e707e9", + "createdTime": "2020-11-01T21:26:53.927Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6e2e8e9-d80e-4c57-a641-f3a3e661ed41", + "createdTime": "2020-11-01T21:26:47.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e4384ac-1de0-492d-bc03-92aa83ae482f", + "createdTime": "2020-11-01T21:26:45.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f34b629-8091-4c5a-9a15-7be5bd2b4457", + "createdTime": "2020-11-01T21:28:27.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fd3a42ce-9a5f-44e1-965b-e1d4f3e6b7b0", + "createdTime": "2020-11-01T21:28:26.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d6f579e-1374-41d2-b38d-9d9967367edf", + "createdTime": "2020-11-01T21:28:24.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "54a01ba0-83ca-43b7-bd2e-3d03c0977999", + "createdTime": "2020-11-01T21:28:22.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2ae288ee-58c4-4d72-b340-1a8ed486f50b", + "createdTime": "2020-11-01T21:28:21.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "03a2be4f-9840-4260-9bc5-971b8aac2c31", + "createdTime": "2020-11-01T21:28:18.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ce45c2aa-37ee-4099-ad39-b47116cee45d", + "createdTime": "2020-11-01T21:28:17.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "116581a9-f352-40f5-9aff-1356329dde00", + "createdTime": "2020-11-01T21:28:16.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1ef391d-22ef-46ac-8e0c-6c85e24e258a", + "createdTime": "2020-11-01T21:26:37.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5a8aed1-b007-4366-bb29-0fe5cfab33d0", + "createdTime": "2020-11-01T21:28:12.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "63964284-3062-4656-8110-faa32602bff7", + "createdTime": "2020-11-01T21:28:09.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "91ab7e31-cf7b-4d1c-bb05-023dd6066923", + "createdTime": "2020-11-01T21:28:08.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2064a0e5-f4d3-41a1-84b8-3496a2957511", + "createdTime": "2020-11-01T21:28:05.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "afc721e3-ce22-4e09-af82-b7302ae25a54", + "createdTime": "2020-11-01T21:25:26.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72d63c77-f3ec-4f63-831c-ce6653043432", + "createdTime": "2020-11-01T21:27:20.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ea9e9d17-95ee-4e8f-adf5-c166c5932974", + "createdTime": "2020-11-01T21:27:19.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "529b0721-e2fc-4aa7-b5a7-9971f3ebbc39", + "createdTime": "2020-11-01T21:25:20.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "122e05f0-be1f-4497-aea9-428fed4e968d", + "createdTime": "2020-11-01T21:27:15.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1ea30d61-f92d-41ee-a5d5-af470c39e0cd", + "createdTime": "2020-11-01T21:27:08.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a8e58031-f44a-4ca1-9796-e71155ebb9d8", + "createdTime": "2020-11-01T21:26:56.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f44a532-ef59-4ee1-8837-cc4718974df5", + "createdTime": "2020-11-01T21:25:19.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d90113d3-e634-43c5-9093-c623a85bcaaf", + "createdTime": "2020-11-01T21:26:51.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9835ed43-6584-40d2-8439-c46e022d6038", + "createdTime": "2020-11-01T21:26:49.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fd4cce58-33f7-44a4-a3b6-757889e482df", + "createdTime": "2020-11-01T21:26:48.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b8ba625-3ea4-4b7d-b994-a014eb95993c", + "createdTime": "2020-11-01T21:26:43.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "09aee035-ea30-4fa6-859d-b10276c7299d", + "createdTime": "2020-11-01T21:26:40.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b54e3624-945b-44ba-92bd-b81875e81e88", + "createdTime": "2020-11-01T21:26:39.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3701b9b6-22a0-4ead-aa39-446f06b7400f", + "createdTime": "2020-11-01T21:26:34.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "66f266b4-e8bc-4883-bcf1-960e5eb160e6", + "createdTime": "2020-11-01T21:25:15.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8dfc6917-802d-4eb2-a5c0-843af66ff5c6", + "createdTime": "2020-11-01T21:25:13.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6760bc87-ccd8-46db-9fd5-48d36eb2ff21", + "createdTime": "2020-11-01T21:25:29.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "9fcd49c1-498f-46b2-a1c3-be34f3147ff4", + "createdTime": "2020-11-01T21:24:31.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b35f0fe0-2b7d-4df9-80e3-eb2f78a67f83", + "createdTime": "2020-11-01T21:25:27.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6a9a0060-e9d3-463e-ac4b-172e134707cd", + "createdTime": "2020-11-01T21:25:24.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6dd05df9-de25-451f-bb6f-9aa5070bce42", + "createdTime": "2020-11-01T21:25:22.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7fd7a0fc-5400-4304-a6d0-ac7605e2671f", + "createdTime": "2020-11-01T21:25:21.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e96dabb5-09d9-422e-aada-9d56ed3e1076", + "createdTime": "2020-11-01T21:25:21.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "33aed88d-c08d-4412-87fa-8c395ee45b87", + "createdTime": "2020-11-01T21:25:20.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "296b144c-72c1-4ed6-a338-0e5a6615df02", + "createdTime": "2020-11-01T21:25:19.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1a45217-b3f6-4002-a31f-66cb49ef1594", + "createdTime": "2020-11-01T21:25:17.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b8496063-cc8e-4e80-9108-21e1122be844", + "createdTime": "2020-11-01T21:25:17.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c22e139f-8dba-4e71-8a10-29a6b6244449", + "createdTime": "2020-11-01T21:25:17.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "099d0a65-e20f-4b9c-84fb-ec4f2c29bf7a", + "createdTime": "2020-11-01T21:25:15.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "924fa238-804a-4304-adc8-e096ce072ca7", + "createdTime": "2020-11-01T21:25:14.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cb2ffba3-91bc-40c6-a9c0-c16a525d7aa6", + "createdTime": "2020-11-01T21:25:14.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ae6a5608-191e-42c2-a2e7-af0d80bab2e1", + "createdTime": "2020-11-01T21:25:13.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7ad8a7e9-9660-44e3-9a26-4cc654e0b2f9", + "createdTime": "2020-11-01T21:24:30.831Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8d4fc30-a60f-45a5-9f75-196559a070c0", + "createdTime": "2020-11-01T21:24:29.934Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71dac4d7-5bda-43f9-b2a9-3dbf100df4fc", + "createdTime": "2020-11-01T21:24:26.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5465780b-6a96-43bc-8b43-bb8c396ad4cd", + "createdTime": "2020-11-01T21:24:26.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdc94220-bf87-467d-a659-ee1e5ef6868b", + "createdTime": "2020-11-01T21:24:31.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e440503d-1d4e-4793-b822-d07338e73057", + "createdTime": "2020-11-01T21:24:30.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "19c2ace4-004f-4ae2-b0cd-e7ed07ef5158", + "createdTime": "2020-11-01T21:24:29.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "70d558ee-a785-42f1-a248-72bb707cc71e", + "createdTime": "2020-11-01T21:24:28.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "86ad9a26-567e-4f91-83e9-5dccc883b645", + "createdTime": "2020-11-01T21:24:28.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "27f06fa6-6a7f-4530-b98d-ad52fef0b9a1", + "createdTime": "2020-11-01T21:24:27.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1abb6502-8a87-4e58-b9ee-66d9bec28fb8", + "createdTime": "2020-11-01T21:24:27.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "63b393f8-dc48-49b6-8dda-a3b4758bf57f", + "createdTime": "2020-11-01T21:24:25.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4bf00e40-64e5-4c6b-84b5-841ade6bff7a", + "createdTime": "2020-11-01T21:24:25.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "435a4570-f133-4020-b790-47031c3de6b7", + "createdTime": "2020-11-01T19:43:52.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07174982-48f8-4590-8dc3-4adc1e1bdb30", + "createdTime": "2020-11-01T19:43:44.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2d1837e-89da-4a92-89f5-a0b0cb2f9130", + "createdTime": "2020-11-01T19:43:36.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e69540f2-09e4-4cff-b6d8-f51fd054c3a9", + "createdTime": "2020-11-01T19:43:34.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c288d2a9-c8af-4cb5-bcbd-ac5440ef9e6d", + "createdTime": "2020-11-01T19:43:24.753Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d63b93d6-a3b7-480e-8460-c2722878c171", + "createdTime": "2020-11-01T19:42:39.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b77cf197-ef78-49cf-8e9d-26b28e4ea837", + "createdTime": "2020-11-01T19:42:33.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69ca6d99-4dc8-4896-ab0a-3936f7ea58bf", + "createdTime": "2020-11-01T19:42:27.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed7afd78-66e0-4dab-8a78-4e011afa8306", + "createdTime": "2020-11-01T19:42:25.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bacbc250-1e6c-4501-9a74-4cc7bc2aba07", + "createdTime": "2020-11-01T19:42:20.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98aea00c-0d7a-4e4b-9bda-7218c7521253", + "createdTime": "2020-11-01T19:43:56.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c7f6da07-8a04-410d-ad46-a42be5b05c13", + "createdTime": "2020-11-01T19:43:54.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd65ee61-f870-4808-a3d9-9dfad0ed16a4", + "createdTime": "2020-11-01T19:43:50.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bbe7f921-97a2-4d8d-b3d6-1460eb976fe8", + "createdTime": "2020-11-01T19:43:48.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1aee596e-6e6f-476b-933b-3e9c0d7425be", + "createdTime": "2020-11-01T19:43:47.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3a21c8be-d0bf-487c-930b-842691f10051", + "createdTime": "2020-11-01T19:38:03.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "243536fc-a613-4c2b-b99b-3435e3a5932a", + "createdTime": "2020-11-01T19:43:41.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "54c2ce31-7136-43e6-8f06-0c43a165462a", + "createdTime": "2020-11-01T19:43:39.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "23cddd30-5141-4270-978c-eccf8aae1c8e", + "createdTime": "2020-11-01T19:43:38.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad3924c1-6657-4a51-bdbb-0b51bd8667fd", + "createdTime": "2020-11-01T19:43:31.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3530205f-aebc-49b0-a853-a50e0efdd02b", + "createdTime": "2020-11-01T19:43:28.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8b689bcb-724e-49fa-9091-482df50c65e2", + "createdTime": "2020-11-01T19:43:27.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6b71897-f26c-4d84-a7af-a94c379368fc", + "createdTime": "2020-11-01T19:43:21.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4d00226d-b7a9-4d65-8f09-7d17e104f499", + "createdTime": "2020-11-01T19:38:03.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab7cbb13-95af-4cdf-b27b-3e60c05485b7", + "createdTime": "2020-11-01T19:37:56.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "360b2cd4-742e-4181-a3a6-72824725141d", + "createdTime": "2020-11-01T19:42:41.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ab961d47-ca2e-4776-96e7-4596a6eafd30", + "createdTime": "2020-11-01T19:42:40.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7c24b491-7609-4f2a-811f-e03f2706fa94", + "createdTime": "2020-11-01T19:42:37.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "42aefa61-55f1-47ba-96cf-d2fe7a89bade", + "createdTime": "2020-11-01T19:42:35.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e59e3228-7611-46e4-9b66-e7477383452b", + "createdTime": "2020-11-01T19:42:34.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "398db3af-cfce-4087-82e0-6d894718754c", + "createdTime": "2020-11-01T19:42:31.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2179aafa-3c8f-4ffc-9201-ad794bb079f1", + "createdTime": "2020-11-01T19:42:29.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "918001c6-0bfa-48f9-8c25-2ee895814cc2", + "createdTime": "2020-11-01T19:42:28.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c75a817c-a697-4737-babe-cb7f0fa3b35e", + "createdTime": "2020-11-01T19:37:54.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8b26e83-f175-48c2-8709-3dfcfe1fa349", + "createdTime": "2020-11-01T19:42:24.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "90e2db96-a1ad-423b-9c38-4deb3c19f73b", + "createdTime": "2020-11-01T19:42:22.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "88dfb898-9c9b-4330-a273-c7dc3e83bca5", + "createdTime": "2020-11-01T19:42:21.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "45bea000-2d38-4227-97fb-63a909b91edd", + "createdTime": "2020-11-01T19:42:18.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eb3d2659-9db5-4633-895a-b3f74dba837b", + "createdTime": "2020-11-01T19:37:51.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51e347e0-2d70-4b46-b7fb-a6aa995bf2c7", + "createdTime": "2020-11-01T19:37:49.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "150bd78a-9770-4a4e-92b4-7c7ebe5e4893", + "createdTime": "2020-11-01T19:37:47.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d22f3a1-1ffd-4a42-99cd-3901f8638c1a", + "createdTime": "2020-11-01T19:37:45.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af5f48b1-2a3a-4c8d-945a-269917568d8b", + "createdTime": "2020-11-01T19:37:43.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25fe1f70-c0a7-41ac-8e38-b5431806c17f", + "createdTime": "2020-11-01T19:37:38.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2d15546-97fc-4c4b-b996-b9bc4f912df5", + "createdTime": "2020-11-01T19:37:04.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b206f857-ca72-41ae-b421-f1e5a7a7cc3a", + "createdTime": "2020-11-01T19:36:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5825b8d2-d160-47ce-9f49-06466a544817", + "createdTime": "2020-11-01T19:36:54.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8887307d-22ae-43df-8e87-f10530c5629e", + "createdTime": "2020-11-01T19:36:53.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25b1a53c-a031-4643-9f85-121e80af1d33", + "createdTime": "2020-11-01T19:38:06.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2adf2a50-2efa-48e7-955d-857037c06823", + "createdTime": "2020-11-01T19:38:05.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c73f87cc-05de-4ece-85fb-f75a4a33728b", + "createdTime": "2020-11-01T19:38:04.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0ac8e75c-0dbb-4576-96cb-806b7ca374b2", + "createdTime": "2020-11-01T19:38:04.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6a2241f2-7660-469e-a8a8-4b8e26ba3831", + "createdTime": "2020-11-01T19:38:01.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5ea61e88-b708-42be-a4ab-3296ed40a4c4", + "createdTime": "2020-11-01T19:38:01.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bc201746-2272-4cf3-810d-0d006d55d3d4", + "createdTime": "2020-11-01T19:37:59.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d0869f7b-f3df-4685-bfd2-3339aea4b6cf", + "createdTime": "2020-11-01T19:37:58.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "930a262f-fa71-4756-9c9e-26cbfebe670d", + "createdTime": "2020-11-01T19:37:58.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8e37d89f-c875-4eae-a2c8-11e41002510f", + "createdTime": "2020-11-01T19:37:57.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c298c0e5-a4df-446f-aa32-e3496035bb44", + "createdTime": "2020-11-01T19:37:54.84Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f09db36d-8d67-41a5-a7c6-d9c8613866eb", + "createdTime": "2020-11-01T19:37:53.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "01c84a3c-f732-4ed7-a7f4-1d5543f80a4b", + "createdTime": "2020-11-01T19:37:52.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "db021f35-6978-4374-a87e-da7a53c0bd99", + "createdTime": "2020-11-01T19:37:52.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f123ca70-414a-44f4-9b03-1f6b87c23094", + "createdTime": "2020-11-01T19:37:50.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "bb2f659e-f697-4418-a943-73efd76d184e", + "createdTime": "2020-11-01T19:37:49.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0ef7b5c7-3391-4950-963c-62ff5696065e", + "createdTime": "2020-11-01T19:36:48.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18590313-1059-4935-9240-9eab189f5b05", + "createdTime": "2020-11-01T19:37:48.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cb3258c2-5a34-4ffc-a73b-c4f9607a7a61", + "createdTime": "2020-11-01T19:37:46.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ecbfd8a4-abf6-4647-98d0-57978125be74", + "createdTime": "2020-11-01T19:37:45.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c77d02b7-5d01-4a52-b089-d11de3b68717", + "createdTime": "2020-11-01T19:37:44.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5e4e2b9f-d40c-4620-a4e1-f23714bddab7", + "createdTime": "2020-11-01T19:37:41.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "37d5adb7-0b80-44b7-a32d-251792a912de", + "createdTime": "2020-11-01T19:37:41.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8a2c176a-ad0a-4b94-87af-c94aa3e031d3", + "createdTime": "2020-11-01T19:37:40.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0ce6b442-de5c-4bcb-bee3-75612a14864d", + "createdTime": "2020-11-01T19:37:35.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8972f225-a625-44d7-b7ef-2eacd5171741", + "createdTime": "2020-11-01T19:36:38.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e67e8792-d2dd-4095-90f6-ba94572da5e5", + "createdTime": "2020-11-01T19:36:34.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b29fa6d1-0d3c-42c6-9dc2-96c481d7165e", + "createdTime": "2020-11-01T19:37:05.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "874a4fb2-6805-4666-a578-62ba2c8e3bd3", + "createdTime": "2020-11-01T19:37:04.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b7a62e51-e65b-4fe9-abc1-c70e961de2b0", + "createdTime": "2020-11-01T19:37:02.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b4b82e39-81ab-40da-8b08-e45c5050871f", + "createdTime": "2020-11-01T19:37:00.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "93c124fb-6f33-4d00-b6d3-f12d3ff65c8a", + "createdTime": "2020-11-01T19:37:00.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fe757621-1124-4c36-98af-42981b81a78f", + "createdTime": "2020-11-01T19:36:32.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c68e1aa8-e2a4-4876-915e-30ca4cb7532a", + "createdTime": "2020-11-01T19:36:57.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ae6d94c5-d0ee-406e-aad2-82e4424914f0", + "createdTime": "2020-11-01T19:36:56.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "35aeb3cd-76d7-46ac-a7d4-c7f31069c6d1", + "createdTime": "2020-11-01T19:36:55.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "59f84df4-b7ac-41b8-8058-4586ff651851", + "createdTime": "2020-11-01T19:36:52.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "329b8465-a0d7-46c9-bcd9-edcc7caced49", + "createdTime": "2020-11-01T19:36:50.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6f6f20fc-7019-451b-a35c-5b98626d08c2", + "createdTime": "2020-11-01T19:36:50.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b2905d3-650e-4e88-9792-646c6531155d", + "createdTime": "2020-11-01T19:36:31.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cc0c47a-2479-4307-95c6-c102b1795129", + "createdTime": "2020-11-01T19:36:46.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b5624fc-e1a6-4237-b350-f20de99d4e4a", + "createdTime": "2020-11-01T19:36:39.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "26401bfb-ef32-4ccd-9a4f-76396423e709", + "createdTime": "2020-11-01T19:36:39.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ec61da5-6608-4bf0-ab61-5e3684de6e87", + "createdTime": "2020-11-01T19:36:37.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6cafce6b-39a4-4712-8926-cdf9a14a60b4", + "createdTime": "2020-11-01T19:36:28.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64c8b0aa-a1b8-4bb5-8768-577811092601", + "createdTime": "2020-11-01T19:36:36.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "44f6643c-1729-4fb9-bee9-c6bcdc678a4a", + "createdTime": "2020-11-01T19:36:35.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6c0a620-0344-4e9d-a6f4-4427dd805d58", + "createdTime": "2020-11-01T19:36:34.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8c864d84-9183-4f89-a9a9-07ffccdc3a75", + "createdTime": "2020-11-01T19:36:33.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a5f23013-e2ba-4271-babf-c9b43ad976a4", + "createdTime": "2020-11-01T19:36:32.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef2250f4-bd2b-409a-a91a-49b477d85f12", + "createdTime": "2020-11-01T19:36:30.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "99d4f2c8-8b4f-453e-b291-7f97602ed6f1", + "createdTime": "2020-11-01T19:36:29.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "39368c97-3613-4dc5-acf3-81e9a06c49d1", + "createdTime": "2020-11-01T19:36:29.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2c4f561c-9d9b-4bac-9469-63480239f43a", + "createdTime": "2020-11-01T19:36:27.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7fe1d3c3-3ec2-4702-a488-299e8b3e3297", + "createdTime": "2020-11-01T09:18:35.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7577febf-3014-4bce-806a-6452fe2eef92", + "createdTime": "2020-11-01T09:18:34.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e7dd531-0e0c-43ea-af49-27f6d31bee43", + "createdTime": "2020-11-01T09:18:37.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1df7608f-8188-4b84-9f51-e053aab7d92e", + "createdTime": "2020-11-01T09:18:28.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "132b691e-7f5c-470f-a76a-c2edae1bdd58", + "createdTime": "2020-11-01T09:18:36.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ca168699-9d6c-4fa9-a0da-4530ba144854", + "createdTime": "2020-11-01T09:18:33.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8c90d17-c650-4a70-bc18-c8c5add48f68", + "createdTime": "2020-11-01T09:18:31.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "da2b36fc-17e3-4a64-95b1-b500818ab1be", + "createdTime": "2020-11-01T09:18:30.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ddaf9f51-372d-44d7-b528-f4a260791ba5", + "createdTime": "2020-11-01T09:18:26.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e9456808-0e10-4762-a05e-795bce4753e8", + "createdTime": "2020-11-01T09:17:03.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ebd2111-662f-4ed4-9df3-c6f0ace77e98", + "createdTime": "2020-11-01T09:17:05.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0f575d87-f4db-4a09-994d-9dcc088b3056", + "createdTime": "2020-11-01T09:16:56.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64247b65-4eff-4875-84d1-2d106845d015", + "createdTime": "2020-11-01T09:17:04.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e0323b95-4d18-4275-9678-964e7fbc39ae", + "createdTime": "2020-11-01T09:17:02.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "daf9aebd-2e0e-455e-871e-20224a15be61", + "createdTime": "2020-11-01T09:16:59.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a0a4714-fbcc-4aa5-ac6a-83bdcb43657b", + "createdTime": "2020-11-01T09:16:58.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a226d59-4262-44d0-bdd5-91b9d42722b3", + "createdTime": "2020-11-01T09:16:54.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "45b29ef8-0d8b-41bb-b74d-8283aabe5c75", + "createdTime": "2020-11-01T08:32:58.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c6dd5e7-eb49-4514-9550-512b9e9fc103", + "createdTime": "2020-11-01T08:32:57.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9806f20f-90de-4f20-b39d-163c0fd9d5b9", + "createdTime": "2020-11-01T08:32:53.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a49d3f8c-7c05-401c-9540-440c1c5c7dd2", + "createdTime": "2020-11-01T08:33:00.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "33bc2977-87ef-4d7e-8e03-62adae4886eb", + "createdTime": "2020-11-01T08:32:59.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c8b5ce38-a025-4b8f-bacb-d9babbab29c7", + "createdTime": "2020-11-01T08:32:57.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a4c66049-7132-44ef-ba76-2ce1a7490a40", + "createdTime": "2020-11-01T08:32:55.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "028e8625-749c-4b1a-8b2b-848bc970d43d", + "createdTime": "2020-11-01T08:32:54.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "59023fd3-c007-4e12-9a4f-4886ca13eddf", + "createdTime": "2020-11-01T08:32:52.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "02faffdb-238e-47ce-a6c5-c8158057dda7", + "createdTime": "2020-11-01T08:31:16.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b375d388-a0f3-4ff5-934d-384e45103695", + "createdTime": "2020-11-01T08:31:10.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55300aa3-2b06-4bbc-8fba-d89463b9b807", + "createdTime": "2020-11-01T08:31:18.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d8d9c36b-95ae-4ea7-aa16-b62f079cde3e", + "createdTime": "2020-11-01T08:31:17.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ec79a0e-a528-43b0-a04a-f2c22423d37b", + "createdTime": "2020-11-01T08:31:15.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d2d1056c-9d86-4255-bfbb-a0310b7174ba", + "createdTime": "2020-11-01T08:31:13.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "39b3be72-0d94-4bd8-b2eb-3eb0efca28e0", + "createdTime": "2020-11-01T08:31:12.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2acaac55-4f3e-41f7-9030-64fdb590960b", + "createdTime": "2020-11-01T08:31:09.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "80005316-15ff-40a6-8d31-20a3f0c7beb2", + "createdTime": "2020-11-01T08:24:36.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d75b0336-8662-4f98-942b-e852d515ebcb", + "createdTime": "2020-11-01T08:24:34.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "40a7d2a9-690c-4067-8dcf-0c0782a4eb21", + "createdTime": "2020-11-01T08:24:29.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5a9bb10-6b01-4b2d-9cef-4db3952669cf", + "createdTime": "2020-11-01T08:24:39.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "26d59aed-bb1c-4c08-a86b-199804e4b332", + "createdTime": "2020-11-01T08:24:38.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72e539ae-1e72-4c62-be22-46a0532428aa", + "createdTime": "2020-11-01T08:24:33.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d5c6fd9b-20f0-4f93-baff-441af27ab0f0", + "createdTime": "2020-11-01T08:24:31.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "96328cb3-70fd-4cc6-a00f-09de8c164aba", + "createdTime": "2020-11-01T08:24:30.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d8363ded-4697-4670-822f-a1d50a4d43db", + "createdTime": "2020-11-01T08:24:26.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0eb2f8f1-335b-4631-bcc5-c622a10d7758", + "createdTime": "2020-11-01T08:22:54.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2d41ea3-e961-4184-9869-b6648e88031f", + "createdTime": "2020-11-01T08:22:48.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f49a79ff-6a3b-4d5c-acc6-680debb5f2e9", + "createdTime": "2020-11-01T08:22:56.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "24aaf212-cc5d-4c23-b15d-f5a1feafcaf8", + "createdTime": "2020-11-01T08:22:55.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bfb1a3ac-8979-4d5a-ad6f-da3fd4710ecb", + "createdTime": "2020-11-01T08:22:52.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87e3f1e9-3fa6-444a-b4f6-0f55df7d3921", + "createdTime": "2020-11-01T08:22:50.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e5db36fd-70fb-4614-bcdc-6df4eabcef39", + "createdTime": "2020-11-01T08:22:50.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8d8ddeb7-1a44-4a24-b64a-06eef687fb30", + "createdTime": "2020-11-01T08:22:47.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8a905322-5d7c-4285-91e3-b62f767a6415", + "createdTime": "2020-11-01T08:15:13.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b885aba8-3263-4e9e-abb5-367f5f16f4dc", + "createdTime": "2020-11-01T08:15:12.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa8dbda2-d9c8-446f-b0bf-34a185030ffe", + "createdTime": "2020-11-01T08:15:09.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92e5d60d-67e5-44e8-a88f-98872d67f763", + "createdTime": "2020-11-01T08:15:15.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "bd19a901-0020-44fd-8d64-48b9f94c2e2b", + "createdTime": "2020-11-01T08:15:14.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6d3c15d-68c8-4547-9f39-b29edea9f6b2", + "createdTime": "2020-11-01T08:15:12.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f60bde5-6af7-4dd4-a0a1-e0929c3e7f4e", + "createdTime": "2020-11-01T08:15:10.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cd90b21e-4814-400b-8985-adf620780867", + "createdTime": "2020-11-01T08:15:10.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd9701c1-5337-4926-986b-307b632d99d4", + "createdTime": "2020-11-01T08:15:08.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c27332c6-369a-446e-a3cb-4695964adfae", + "createdTime": "2020-11-01T08:14:23.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4eca16d6-9add-4099-8037-965c9b031acb", + "createdTime": "2020-11-01T08:14:19.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3267b579-ba17-41f0-9c09-393827e739ba", + "createdTime": "2020-11-01T08:14:24.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "90061c7b-78d0-4f8f-91ac-4e356ab38d43", + "createdTime": "2020-11-01T08:14:23.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d3548855-40a0-481b-acf7-944850aa122d", + "createdTime": "2020-11-01T08:14:22.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fb2bc139-ae1e-41d6-b1c0-6ba7ec18d282", + "createdTime": "2020-11-01T08:14:20.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf5513d6-93d4-4273-9bb6-b5274b366076", + "createdTime": "2020-11-01T08:14:20.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b3fff9f-8403-4254-baca-8e189f5df09c", + "createdTime": "2020-11-01T08:14:18.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ce4e516e-09b4-4a0f-a638-3434e8dfef2f", + "createdTime": "2020-10-31T23:42:38.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cc798ef-f76c-47b2-97a8-dd228ee114db", + "createdTime": "2020-10-31T23:42:33.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c111afcb-20d9-4d34-8a72-be80ce091565", + "createdTime": "2020-10-31T23:42:44.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "30203ea8-d60a-4749-9dbc-7fe96a297cbb", + "createdTime": "2020-10-31T23:42:41.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad602dd8-109c-4ff8-ae00-3dc3100511cb", + "createdTime": "2020-10-31T23:42:15.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d74a6c8d-d07b-4228-805a-793d90f306dd", + "createdTime": "2020-10-31T23:42:31.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6da0bc95-2a66-4c4d-a470-18ece81c7ef5", + "createdTime": "2020-10-31T23:42:24.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d42b8f3d-944a-494e-bb64-a1bd0324b139", + "createdTime": "2020-10-31T23:42:22.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bc01dc9d-4bf3-4ddf-8980-ad361788cea6", + "createdTime": "2020-10-31T23:42:12.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1c283038-bad6-490d-bf48-a8db5d7933be", + "createdTime": "2020-10-31T23:38:57.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f3716f5a-c470-4b7d-924f-2d904bb1bd6f", + "createdTime": "2020-10-31T23:39:02.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "39ba04b5-6ecd-4171-9efa-af0951e906f8", + "createdTime": "2020-10-31T23:38:44.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30d39f2e-74fd-4814-a94c-08bb5fefb054", + "createdTime": "2020-10-31T23:38:59.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cff7351e-7a5c-478d-86fa-2c684aeff786", + "createdTime": "2020-10-31T23:38:54.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12449c0b-b510-4446-b33d-66635578f67c", + "createdTime": "2020-10-31T23:38:50.466Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "55175b70-d5c7-4ff2-adcb-6c688cdd216f", + "createdTime": "2020-10-31T23:38:47.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8a97a7f9-789a-46c7-9328-2a15dc5d1912", + "createdTime": "2020-10-31T23:38:41.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "85c9e5db-b74f-488f-9d78-a89fb5b551ee", + "createdTime": "2020-10-31T23:26:49.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bad89d68-e905-42d2-a96c-022d83c85e5a", + "createdTime": "2020-10-31T23:26:41.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c73cffb-fba3-4a54-8d30-28b3563d176b", + "createdTime": "2020-10-31T23:26:36.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7ada7a4b-10a4-49a6-adff-f03c83fea284", + "createdTime": "2020-10-31T23:26:34.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "835b5ebc-11cc-4989-8d8e-8532739d3a0e", + "createdTime": "2020-10-31T23:26:33.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e6ececb-82f4-43a8-9b30-698ba3a77c1e", + "createdTime": "2020-10-31T23:26:28.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "597bdc07-e1f4-4f9a-8d60-6e9494274d20", + "createdTime": "2020-10-31T23:26:26.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8701a810-ebd3-4e48-b6ca-7a45ae777f80", + "createdTime": "2020-10-31T23:26:21.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a833b132-ee61-4904-baf9-1bae192cd301", + "createdTime": "2020-10-31T23:26:20.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e593003-fa01-4624-a7d4-724801c5574a", + "createdTime": "2020-10-31T23:25:48.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d287d08f-81ab-446a-af41-52640051d3d1", + "createdTime": "2020-10-31T23:26:52.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "26bda717-2a47-4980-bc21-5097271b965c", + "createdTime": "2020-10-31T23:26:50.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12f82f20-fc39-4ba9-a001-81a92f8ce982", + "createdTime": "2020-10-31T23:26:47.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "782374b6-58c1-4274-bfa7-ebd983195e55", + "createdTime": "2020-10-31T23:26:45.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "406dffd9-d499-4111-80c8-203999522519", + "createdTime": "2020-10-31T23:26:44.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aef7928c-950a-4119-aac0-296394fa1a63", + "createdTime": "2020-10-31T23:24:41.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18a6bcbf-a692-4f07-8708-5908222830ee", + "createdTime": "2020-10-31T23:26:39.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "18cf867b-8277-40f8-9212-ebd20123393b", + "createdTime": "2020-10-31T23:26:38.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d913ae39-76bb-4437-86f8-afbd1264166f", + "createdTime": "2020-10-31T23:26:37.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b3027c19-e197-48af-a36a-ef51d52dc811", + "createdTime": "2020-10-31T23:26:36.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "28244708-16b7-445e-91ed-b4289af4a4fe", + "createdTime": "2020-10-31T23:26:34.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d984c8bc-f71d-45f9-ae0d-60c2f6ace221", + "createdTime": "2020-10-31T23:26:33.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6441f34-0c2a-40f8-b56f-b7e2b866fe2e", + "createdTime": "2020-10-31T23:26:31.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c56960e0-1601-4a63-9610-f4c2006b084f", + "createdTime": "2020-10-31T23:26:31.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8806746c-c2e4-4986-a99a-86025d324e6a", + "createdTime": "2020-10-31T23:26:30.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b289de88-27ed-41eb-9208-b671b7bc2969", + "createdTime": "2020-10-31T23:26:29.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3cf2691d-1086-4fc4-b274-0b2ff09d2c3d", + "createdTime": "2020-10-31T23:26:29.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "864979d2-bade-4a44-8c23-ca4fd300e61e", + "createdTime": "2020-10-31T23:26:25.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9f04947b-9317-44ce-bab0-2f5e2409c486", + "createdTime": "2020-10-31T23:26:24.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "338f6ce1-93a2-4ba7-8107-01f153ca848a", + "createdTime": "2020-10-31T23:26:23.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cbf3376d-e551-48c5-9250-b2f110e8355e", + "createdTime": "2020-10-31T23:26:22.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b206111-6523-4c7e-a595-306ed0c48207", + "createdTime": "2020-10-31T23:24:14.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b308cbd-4228-470c-82e8-429398a358ad", + "createdTime": "2020-10-31T23:26:19.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c7e1311b-ab49-4198-aa09-4f7cf9880857", + "createdTime": "2020-10-31T23:26:16.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a725104d-fb7f-4d36-9e56-6f5b6a6b7f37", + "createdTime": "2020-10-31T23:26:15.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "898ed66d-b0a3-4e7d-a2ac-82cc9ca0a722", + "createdTime": "2020-10-31T23:26:15.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4db387f1-7689-49e6-a8ab-46e50d325bfc", + "createdTime": "2020-10-31T23:26:15.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "434f73c6-3e70-42f6-92bd-5662daa61c7c", + "createdTime": "2020-10-31T23:23:39.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85290016-83a2-4313-90d8-39c0f23b29af", + "createdTime": "2020-10-31T23:25:50.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fa1f9b7c-7a65-4843-9001-cb5f3282a5ef", + "createdTime": "2020-10-31T23:25:49.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "523c4f18-48f0-41d8-8ce3-4cd688e2835f", + "createdTime": "2020-10-31T23:25:47.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4112e4b9-13a9-4966-bd33-dcc061337eeb", + "createdTime": "2020-10-31T23:25:46.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f8ff8f58-1137-42a9-ac94-9f6f187cdaff", + "createdTime": "2020-10-31T23:25:45.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0baabb88-b7bf-41ef-b8f6-c4335155a049", + "createdTime": "2020-10-31T23:25:44.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "32c3fc92-4f32-432c-9816-b27f67882211", + "createdTime": "2020-10-31T23:25:44.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b335915f-8f2a-4587-9e18-37d9f9252e15", + "createdTime": "2020-10-31T23:22:33.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6c5f834-7ba8-4bb4-b336-5f67bae0f62c", + "createdTime": "2020-10-31T23:22:31.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34e39f72-7e50-4658-9958-083cd478b5c7", + "createdTime": "2020-10-31T23:22:26.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22fd5841-47ba-41c3-89d2-63a6bbc9545d", + "createdTime": "2020-10-31T23:21:27.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef003756-d390-4ee7-bb95-21fa59b7aab8", + "createdTime": "2020-10-31T23:20:25.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b496156f-aa24-4c18-a69b-070787e43f12", + "createdTime": "2020-10-31T23:20:19.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da140481-dcbf-401d-a933-e23a0138311d", + "createdTime": "2020-10-31T23:23:39.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9ff40ae2-fdf1-4bde-82b0-2627f8b88ace", + "createdTime": "2020-10-31T23:20:18.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51eb98c0-7ac8-4c28-a157-98ce6e8e259a", + "createdTime": "2020-10-31T23:23:17.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4ca5e64c-d393-47b0-855a-67a5f5fd68ed", + "createdTime": "2020-10-31T23:23:11.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5a45a160-5912-4fba-a9a9-92713d6ea099", + "createdTime": "2020-10-31T23:20:17.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f9c8e53-3d63-43f2-9499-b7a2fbf7dd74", + "createdTime": "2020-10-31T23:20:13.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8457580d-3ef6-4f64-856a-62b57c7b7e00", + "createdTime": "2020-10-31T23:22:35.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ecee7ae9-e41d-4de9-b00d-9ccde1b86b10", + "createdTime": "2020-10-31T23:22:34.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "34c9a28e-01a9-4855-9c0a-107213ac426f", + "createdTime": "2020-10-31T23:22:34.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d25e641f-f867-40b3-b61e-4a25cea70059", + "createdTime": "2020-10-31T23:22:31.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1bb25909-3ea0-437b-95ca-13bbe154ebde", + "createdTime": "2020-10-31T23:22:30.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ba18cf8-f570-482e-b813-52bd251c2f0d", + "createdTime": "2020-10-31T23:22:28.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ebe7efe8-dd92-48e7-bf00-871b0b7b7df5", + "createdTime": "2020-10-31T23:22:27.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0e4b42bd-58f9-485a-b97b-8a35066bb0a6", + "createdTime": "2020-10-31T23:22:24.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f44a7dc6-538c-486c-a333-a26b2ff2b570", + "createdTime": "2020-10-31T23:20:12.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d7e2167-34ce-43d3-b549-72590dd7f7ed", + "createdTime": "2020-10-31T23:20:10.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96e62e5a-684b-4c3b-adf0-481c74eff591", + "createdTime": "2020-10-31T23:21:29.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2e2b506e-746c-4264-a6e4-d571b19e53e8", + "createdTime": "2020-10-31T23:20:07.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e64ae1dd-ac51-446d-bf5f-3e850e7c5a06", + "createdTime": "2020-10-31T23:21:27.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "821f94b4-26e1-4762-985c-c7dcb364a7aa", + "createdTime": "2020-10-31T23:19:55.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10b0d31d-7577-4182-a341-983b987255bd", + "createdTime": "2020-10-31T23:19:36.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f26c9458-2270-47cc-b6f3-7e9dbe3b5d90", + "createdTime": "2020-10-31T23:19:30.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a137bc06-5035-4b83-8b21-446a4a963f17", + "createdTime": "2020-10-31T23:20:23.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f72f9b9b-18be-4711-be06-1eb13da8b000", + "createdTime": "2020-10-31T23:20:23.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "eeb8f994-9718-43c7-9c59-7ae752a9d265", + "createdTime": "2020-10-31T23:20:21.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "357233e0-d918-4b7c-a256-5b684edf6cbf", + "createdTime": "2020-10-31T23:20:21.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "15186bbb-6dbb-4d51-b8ba-b9d29cf893a0", + "createdTime": "2020-10-31T23:20:20.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a156d43-b7fa-460b-8357-a9f5c424790b", + "createdTime": "2020-10-31T23:20:20.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b5a9a27-6e06-47dd-8793-56b3b1e7d528", + "createdTime": "2020-10-31T23:20:17.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2b6aa1b1-b0d2-45cb-8e38-8aec72b833cd", + "createdTime": "2020-10-31T23:20:16.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4243d536-68a1-404b-a8c5-778168de6400", + "createdTime": "2020-10-31T23:20:15.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "af93dc2d-8ef3-4eb5-9439-77b968a09174", + "createdTime": "2020-10-31T23:20:14.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4302ea39-4c31-414f-846c-1e7469739506", + "createdTime": "2020-10-31T23:20:13.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "358c3e75-9c60-440f-a459-639b76a63824", + "createdTime": "2020-10-31T23:20:12.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f6b9ac5-64e0-4c76-8bff-3b0195d3e914", + "createdTime": "2020-10-31T23:20:11.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4e8ce13d-bffb-43b5-abc4-ba8b973e583c", + "createdTime": "2020-10-31T23:20:09.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a978176c-7f0b-4257-b38e-4101a57824f8", + "createdTime": "2020-10-31T23:20:08.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "feec1b22-e6e6-4fdc-8fd6-e5c3a99524e2", + "createdTime": "2020-10-31T23:20:07.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "781b9fd2-e496-424e-80fb-2a8e5ea0ac6b", + "createdTime": "2020-10-31T23:19:28.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b78c455a-abc9-4930-8abf-817b2a5bd0b7", + "createdTime": "2020-10-31T23:20:05.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "07c48aad-1aad-41e6-baeb-7c62fb5d43e0", + "createdTime": "2020-10-31T23:19:57.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "57b81eab-1fd6-446c-8b80-e157b19dd543", + "createdTime": "2020-10-31T23:19:56.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dcf06561-2a71-41a1-909a-4305254ef2b4", + "createdTime": "2020-10-31T23:19:21.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0337e313-1677-40f2-950a-4de2d570e4b7", + "createdTime": "2020-10-31T23:19:41.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "05310189-4ea8-42dd-b5ab-ee4a406130e9", + "createdTime": "2020-10-31T23:19:38.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba347693-77a5-4c79-a9cd-406642a1525d", + "createdTime": "2020-10-31T23:19:37.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "df65772c-06f2-4937-8078-efce83eeca07", + "createdTime": "2020-10-31T23:19:34.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0dd62ada-6f33-4113-b086-c5ee7060c69e", + "createdTime": "2020-10-31T23:19:33.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e2dec131-4c03-4868-b112-b407855d9d39", + "createdTime": "2020-10-31T23:19:31.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2ff26ae7-6295-4b51-8181-1da613230822", + "createdTime": "2020-10-31T23:19:27.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a05fef42-d877-42f6-9529-3888063101a4", + "createdTime": "2020-10-31T23:19:24.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a301c77e-3229-44a3-9228-3bbc423d4f94", + "createdTime": "2020-10-31T23:19:23.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b15d0de8-1e16-4232-80a8-171949a3e48f", + "createdTime": "2020-10-31T23:19:20.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6291cd46-9984-4e1d-bedb-1e442e525506", + "createdTime": "2020-10-30T21:36:52.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb7d97c1-fb93-4133-92fb-f8c9c3fbef81", + "createdTime": "2020-10-30T21:36:47.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c59dc5e-abd4-4971-985c-15a5018685d5", + "createdTime": "2020-10-30T21:36:42.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d1464e2-b1a2-4604-bedf-b5e4f0a64a75", + "createdTime": "2020-10-30T21:36:40.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d033a268-2802-4b0c-99b8-da83b5569d27", + "createdTime": "2020-10-30T21:36:34.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07cdacc5-554b-44bf-af9e-c713791ab16a", + "createdTime": "2020-10-30T21:36:15.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e591c0c2-198f-41b5-b4bf-df48e7603f5d", + "createdTime": "2020-10-30T21:35:55.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b79b5e2-ac99-4ca6-87d5-26844bd95af5", + "createdTime": "2020-10-30T21:35:49.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d28ca07a-04a3-4446-a065-807961badf95", + "createdTime": "2020-10-30T21:35:47.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76050ee6-a5b2-4e1a-8555-f27cace7e3c1", + "createdTime": "2020-10-30T21:35:40.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "60c613d5-b20d-4bb2-b12e-260b8a9458e7", + "createdTime": "2020-10-30T21:34:57.496Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d485d0c2-92f4-4836-b9dc-0122a2472aed", + "createdTime": "2020-10-30T21:34:50.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f3726aa-c8e1-4746-93fb-9204f802251e", + "createdTime": "2020-10-30T21:34:43.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cea6893f-3a73-4f3e-8810-ab9527c78ad7", + "createdTime": "2020-10-30T21:34:41.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b915a0f-2314-458e-bc94-fbbb5d442721", + "createdTime": "2020-10-30T21:34:35.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f7e272a-7a3a-47fa-8c55-7e2e00ac1d20", + "createdTime": "2020-10-30T21:34:16.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "52725cf1-c875-4b84-a316-449c2645da4b", + "createdTime": "2020-10-30T21:34:09.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "20236830-e1bc-4f56-9587-22d81855c71b", + "createdTime": "2020-10-30T21:34:08.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ae662e4-c9ce-424d-b23f-16a7bd131934", + "createdTime": "2020-10-30T21:34:03.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ef75366-a70b-4363-9147-bad674cf9304", + "createdTime": "2020-10-30T21:34:02.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34dd663b-00a3-4800-93a0-65b78f708fcc", + "createdTime": "2020-10-30T21:34:01.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "649dddca-4ee2-4904-a3ec-6393d7eab1c8", + "createdTime": "2020-10-30T21:36:54.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6bccbc44-62c5-44d1-98d0-24491d274f0a", + "createdTime": "2020-10-30T21:36:53.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c80a3939-2405-485e-a4ec-1b0b2f690c28", + "createdTime": "2020-10-30T21:33:56.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b988d625-4be3-4ae8-b516-84314031c45e", + "createdTime": "2020-10-30T21:36:50.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ee027954-a1a5-4f8c-9278-c13218b2c109", + "createdTime": "2020-10-30T21:36:49.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf2e6637-d0f1-4fda-9357-eaecfa4ad4fd", + "createdTime": "2020-10-30T21:36:48.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d120295-d6c9-4aa4-a4f9-3e66d7b46310", + "createdTime": "2020-10-30T21:36:45.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "568d90f0-f0d6-4dfe-b2d9-64d496ef4088", + "createdTime": "2020-10-30T21:36:44.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "40e1faef-e69c-4168-bfaf-765729faa52a", + "createdTime": "2020-10-30T21:36:43.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b1f44ca1-fdaf-4f99-ae5e-1b757c118158", + "createdTime": "2020-10-30T21:36:39.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba774b01-d612-442c-aff7-ba3685fd3fb4", + "createdTime": "2020-10-30T21:36:37.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "127f34a9-2c5e-4311-957a-ab5f02a73d6f", + "createdTime": "2020-10-30T21:36:36.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ed05660b-8120-48ca-be4f-eca3695ecdd1", + "createdTime": "2020-10-30T21:36:31.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bbb91510-854c-43ad-8023-17bcd334de2f", + "createdTime": "2020-10-30T21:33:54.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8ee0f0f-02df-4a14-b380-8ef4648b3935", + "createdTime": "2020-10-30T21:36:18.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3f8a2a5e-7330-46bd-b9bc-e2c5850d5e57", + "createdTime": "2020-10-30T21:36:16.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "281acfd3-023a-4ccb-8f31-58098ce1b5e7", + "createdTime": "2020-10-30T21:36:13.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8698ddfc-1367-4f08-936e-7978bfa5d60f", + "createdTime": "2020-10-30T21:33:52.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f9eb226-635c-45ee-b832-10bc7ff3057d", + "createdTime": "2020-10-30T21:35:58.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f8c565f-6910-4def-b0d6-07d68c1a1f5a", + "createdTime": "2020-10-30T21:35:58.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "45c304d2-eef9-4837-8f43-2c8194e6c240", + "createdTime": "2020-10-30T21:35:53.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d1ddea35-57bc-40ed-a737-af5daede4314", + "createdTime": "2020-10-30T21:35:52.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f4369863-f0e6-404f-9d16-a757b7b74f79", + "createdTime": "2020-10-30T21:35:50.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "88721842-33a5-43eb-8d73-2e78a748160e", + "createdTime": "2020-10-30T21:35:46.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5beabecf-f666-4b5e-b7de-9f97fef3f2b7", + "createdTime": "2020-10-30T21:35:43.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef36732b-f1b1-4e03-9cda-14b497158228", + "createdTime": "2020-10-30T21:35:42.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "daf9f4dd-806c-4fec-8f15-2977a73c790e", + "createdTime": "2020-10-30T21:35:37.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dda4ff79-207d-42af-92b3-6b197fb1208a", + "createdTime": "2020-10-30T21:33:46.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98a76c9e-a95c-4a6d-97e4-da58cadd322b", + "createdTime": "2020-10-30T21:33:40.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d4a786f-9c6a-497a-879e-113f663cff0d", + "createdTime": "2020-10-30T21:35:03.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2284069f-44f3-4704-878a-b80e7be4916d", + "createdTime": "2020-10-30T21:34:58.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8e5d683-9b5e-42ff-a58c-21d6c2072bd5", + "createdTime": "2020-10-30T21:34:55.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "062c2586-24ec-4805-8dcd-8e51a9e96a07", + "createdTime": "2020-10-30T21:34:53.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "38d7709b-8447-477a-a884-6929ddd912af", + "createdTime": "2020-10-30T21:34:52.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "40ca4ceb-381b-4223-9de0-6144a2f0aab5", + "createdTime": "2020-10-30T21:33:33.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7d278fd-cedf-436d-a8be-3102b789356f", + "createdTime": "2020-10-30T21:34:47.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "20e3f6f8-8fe1-4ced-9e2f-dfc428c92be7", + "createdTime": "2020-10-30T21:34:46.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4344326e-aef0-42e7-985b-49f7330822c0", + "createdTime": "2020-10-30T21:34:44.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f9d973d8-f0e9-4e56-a6d5-f1a046f46934", + "createdTime": "2020-10-30T21:34:40.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a850f2a9-ebcf-445b-bae4-c4b15ec5c5c7", + "createdTime": "2020-10-30T21:34:38.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4ebac24b-c0cf-4c5b-92f4-d6607c64d394", + "createdTime": "2020-10-30T21:34:37.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9535e209-d98e-4d47-9a42-9c44372f1af7", + "createdTime": "2020-10-30T21:34:33.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ce8a55ca-8e46-4f90-9a67-98ca5e1029dd", + "createdTime": "2020-10-30T21:33:27.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9fc50265-a3a3-4545-b443-0f52e0493390", + "createdTime": "2020-10-30T21:34:18.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "31f991c5-73c4-4890-b70b-5d967c8eb342", + "createdTime": "2020-10-30T21:34:17.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d4ad55ba-414f-44ab-87dc-a287c7060b01", + "createdTime": "2020-10-30T21:34:15.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "513ab6d5-50ab-4cb6-8790-46f7ec713064", + "createdTime": "2020-10-30T21:34:12.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "50afde02-09bd-4070-a127-725f5757b8c5", + "createdTime": "2020-10-30T21:34:12.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "387e67c1-5a2a-4902-ac6e-5bf67cbdc585", + "createdTime": "2020-10-30T21:34:11.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "02bb64b8-cdb5-4c29-bd6b-0e443bcd34ee", + "createdTime": "2020-10-30T21:34:10.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bbcad366-0c35-4af2-8ffc-c6a83e0b5b9a", + "createdTime": "2020-10-30T21:34:07.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "99c272d0-897b-41ad-8d49-3eeed60b8862", + "createdTime": "2020-10-30T21:34:07.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "09801506-3c3d-4dd9-8cde-f80e5e653489", + "createdTime": "2020-10-30T21:34:06.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0d9c7287-3402-4fab-a688-d8538f9a5815", + "createdTime": "2020-10-30T21:34:05.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0d3c768e-28a8-4c89-a986-04b649e26bc8", + "createdTime": "2020-10-30T21:33:25.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5562646c-36b9-4780-876c-77f62a3b802d", + "createdTime": "2020-10-30T21:34:04.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "db8a21c6-dd00-4118-8a2d-be3c1e76b0b5", + "createdTime": "2020-10-30T21:34:04.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b91c8431-2061-4743-baa4-9960579717f1", + "createdTime": "2020-10-30T21:34:00.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2414ddcd-a7d5-456e-9651-ee2e71c3408c", + "createdTime": "2020-10-30T21:33:59.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd408580-8d9d-4fb9-a5a5-51407f44c253", + "createdTime": "2020-10-30T21:33:59.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d4016880-7ee4-4894-97ad-e8a5f7da2fec", + "createdTime": "2020-10-30T21:33:58.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "62bbb8f8-cc64-45e3-810b-cbb104fd629a", + "createdTime": "2020-10-30T21:33:57.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cb4a2b9c-9545-44fe-94fa-045f9dc17394", + "createdTime": "2020-10-30T21:33:55.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b8cecc7-6958-47b6-b00a-aa932e720fd3", + "createdTime": "2020-10-30T21:33:55.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd2c38dc-66ef-4568-9482-a9ece4145e29", + "createdTime": "2020-10-30T21:33:51.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd79b5c5-a0c1-4a6a-a0ec-5ae3698e7c24", + "createdTime": "2020-10-30T21:33:49.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7b6200bb-7874-4499-bacd-ecb45820a020", + "createdTime": "2020-10-30T21:33:48.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e66e2eb9-72df-42cf-b7fa-5aaa2b5474cd", + "createdTime": "2020-10-30T21:33:43.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d227b81c-7436-4acf-86ee-883b3df92acb", + "createdTime": "2020-10-30T21:33:42.881Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "133181f7-cc0b-4f61-a779-8990c01fb511", + "createdTime": "2020-10-30T21:33:41.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8d4c0292-fdca-4753-99d5-1caf63b02977", + "createdTime": "2020-10-30T21:33:38.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12437517-9e2f-4651-946e-8a4643d46e6a", + "createdTime": "2020-10-30T21:33:10.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f13012b-d9a0-4394-8cfb-d268e4dabc95", + "createdTime": "2020-10-30T21:33:36.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "62bc59f7-50ec-4dc8-a0ac-413dfc492206", + "createdTime": "2020-10-30T21:33:34.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2115ddc2-e79a-4613-afe4-1a2a8b2d6d90", + "createdTime": "2020-10-30T21:33:31.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f8c593bd-ca91-4f52-b0f0-894f0bb8a44f", + "createdTime": "2020-10-30T21:33:29.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d24d3dfa-ab3a-4ecd-b2c2-97defa07bfc2", + "createdTime": "2020-10-30T21:33:28.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ff6dbecf-ca66-4072-8351-aa74df09f757", + "createdTime": "2020-10-30T21:33:24.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b5e30f4a-a749-4c3e-8caf-66d8bed07782", + "createdTime": "2020-10-30T21:33:13.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4ecdc19e-f759-4514-8ecb-b5e1e88505d9", + "createdTime": "2020-10-30T21:33:11.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b793861-ad08-4d56-b42b-14d42b7285e1", + "createdTime": "2020-10-30T21:33:08.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cd8c7af9-9dd2-4374-be6e-5e4c4b4916d3", + "createdTime": "2020-10-30T20:33:32.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ab37a48-fbda-4c9a-9cf7-2a8ea9742a3d", + "createdTime": "2020-10-30T15:36:10.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db013127-2e53-4903-8287-05ef0a4b366b", + "createdTime": "2020-10-30T08:02:11.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3a7d3b89-de90-4644-be35-91a25620db7b", + "createdTime": "2020-10-30T08:02:10.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67aaaf90-85e9-4a66-a3f6-79b0de17e170", + "createdTime": "2020-10-30T08:02:10.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c9535b8f-2c8f-4394-8069-52fbac4d74fb", + "createdTime": "2020-10-30T08:02:09.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a5924be-0d69-4258-9c85-5d6c63f115aa", + "createdTime": "2020-10-30T07:59:06.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c6f5904d-805a-4ee7-b954-481bd7ac5860", + "createdTime": "2020-10-30T07:59:05.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82deb892-b186-4353-aff8-f979347336fe", + "createdTime": "2020-10-30T07:59:05.114Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0859a87f-4a77-4578-a55d-7b6ddefb9931", + "createdTime": "2020-10-30T07:59:04.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d25d47e8-fb5d-451f-966d-a965ae92e06b", + "createdTime": "2020-10-30T07:52:47.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dec8a978-feca-4b97-9742-dd5b1207970a", + "createdTime": "2020-10-30T07:52:47.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b0de5d6-802e-416d-b013-286ef47dc128", + "createdTime": "2020-10-30T07:52:46.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "734a0551-7cb6-4ecd-8fc6-376b72b5de48", + "createdTime": "2020-10-30T07:52:46.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "855b1191-7e29-42ea-9456-aa60d932fd3e", + "createdTime": "2020-10-30T07:49:37.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "847709ab-1d97-4a4d-9b62-c9c6aa0250f4", + "createdTime": "2020-10-30T07:49:36.934Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a0468bc-2c9c-462b-9a1e-0cf53363e838", + "createdTime": "2020-10-30T07:49:35.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "26884537-470f-4d8f-890c-a9d602b9b38e", + "createdTime": "2020-10-30T07:49:34.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1735b831-a7b6-4991-8936-971ab7fe3869", + "createdTime": "2020-10-30T07:41:09.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51ff914a-ef42-4eda-9744-087ebc0562c8", + "createdTime": "2020-10-30T07:41:09.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e77a831-b961-4bcc-bad7-9679ca83356b", + "createdTime": "2020-10-30T07:41:08.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "079c317f-612a-4179-a504-2d5b96b84d07", + "createdTime": "2020-10-30T07:41:07.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5268f4c-c958-4845-9ed6-04e62d561ebc", + "createdTime": "2020-10-30T07:33:41.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "12de2f6d-2bb6-4a2e-9ad6-fb612e372cbd", + "createdTime": "2020-10-30T07:33:41.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "77a52991-25a2-4b3b-a365-b159eef382be", + "createdTime": "2020-10-30T07:33:40.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "236cc5cd-1772-4cea-a48b-d62eab5b392e", + "createdTime": "2020-10-30T07:33:39.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b51cd42-b90e-49fa-8aeb-92e0af22083c", + "createdTime": "2020-10-30T07:30:35.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bdfdaed8-95de-4330-abb8-90941fe27457", + "createdTime": "2020-10-30T07:30:34.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ef21d09d-a918-473d-9cda-7aa0a6675f97", + "createdTime": "2020-10-30T07:30:33.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e5ddc5e0-5a02-4bcf-adb6-fa46b53268be", + "createdTime": "2020-10-30T07:30:32.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45cc5626-d824-4581-8f79-97683e218ffe", + "createdTime": "2020-10-30T07:23:33.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cbd3ce49-0fec-4716-9c98-e8d17443c934", + "createdTime": "2020-10-30T07:23:32.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0f6446b3-9b8f-4724-bb74-31a2da3f65b2", + "createdTime": "2020-10-30T07:23:31.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2bf856ef-c924-4b86-b69c-1c40098442ce", + "createdTime": "2020-10-30T07:23:29.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3649793c-2024-4f50-9279-7b5c912a38f1", + "createdTime": "2020-10-30T07:20:38.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "90482bff-68e6-488d-a1e6-33449eee272e", + "createdTime": "2020-10-30T07:20:37.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d16eb306-3509-4eeb-98fb-d6e526f54dfd", + "createdTime": "2020-10-30T07:20:36.497Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "36e329d8-d28a-4ac0-89ff-ca5b931d5a7a", + "createdTime": "2020-10-30T07:20:35.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d666719d-4aa6-45f7-85de-fcf6bf64f433", + "createdTime": "2020-10-30T00:42:21.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e1c0b39-a47c-4ce5-9351-44b4fbfe5c66", + "createdTime": "2020-10-30T00:42:17.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d918a4e8-8170-435f-a24a-1654ce1c282f", + "createdTime": "2020-10-30T00:42:03.879Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98f7c3a7-4540-4558-afe5-b01fd217b20f", + "createdTime": "2020-10-30T00:42:24.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a7afb240-0fc9-40fe-a1d9-bc1f6d1dfe31", + "createdTime": "2020-10-30T00:42:22.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf05caf8-d347-4db3-a577-9471d0dd9ae6", + "createdTime": "2020-10-30T00:42:02.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "38fbfa23-89e6-442c-bc41-702b7bf286b0", + "createdTime": "2020-10-30T00:42:20.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ff4670d-604a-4fca-bc29-5eb3243a8742", + "createdTime": "2020-10-30T00:42:19.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ebcebe26-dfba-441d-8fa7-476b9482b445", + "createdTime": "2020-10-30T00:42:18.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "17c2e978-b51e-4ca9-a323-58cbe7970a4a", + "createdTime": "2020-10-30T00:42:00.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "129f148b-ef52-4f13-a426-e8d3fe2f55bb", + "createdTime": "2020-10-30T00:42:05.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5af74a14-bf57-4fbc-8c76-0472dbc41fbc", + "createdTime": "2020-10-30T00:42:05.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "69c12688-4d2b-4e72-bf3d-cfb5ccf04efd", + "createdTime": "2020-10-30T00:42:04.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7e25856a-c61c-4d7f-a4a8-28a293f235bb", + "createdTime": "2020-10-30T00:42:02.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a2ed151-a30e-4af9-ad87-3642a96e1a33", + "createdTime": "2020-10-30T00:42:01.466Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d72019b1-63d1-4960-af5c-fc1b7bbcd831", + "createdTime": "2020-10-30T00:42:01.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "428ffaed-2a09-42ce-9069-6d436575fa97", + "createdTime": "2020-10-30T00:41:59.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92cab192-c963-423e-8d42-5d72114b1822", + "createdTime": "2020-10-29T22:50:30.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7a5d338-06f5-467c-85b5-f81d2972cb26", + "createdTime": "2020-10-29T22:44:52.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "177e64b5-b260-4ed5-87b2-1ce0270f8f0d", + "createdTime": "2020-10-29T21:34:12.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6298515f-b254-4aa1-8ff4-44706eb2af89", + "createdTime": "2020-10-29T21:33:59.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00bb2154-2987-44ff-bd89-d1e5923d0ca2", + "createdTime": "2020-10-29T21:33:55.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2075f392-996d-4b3c-b5b0-367130877990", + "createdTime": "2020-10-29T21:33:51.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fc451069-86cb-432f-b956-1901c9ed2764", + "createdTime": "2020-10-29T21:33:40.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e55a626d-760f-41cf-acf7-19e49a239e95", + "createdTime": "2020-10-29T21:33:31.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b20769f0-4d2a-493c-91dc-70c022713556", + "createdTime": "2020-10-29T21:34:15.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c7cf8dc8-bf3a-40b4-b223-931a1e3a8a72", + "createdTime": "2020-10-29T21:34:14.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a77d7faa-0fb6-49a4-9a39-f03c87f60498", + "createdTime": "2020-10-29T21:34:10.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e6cd1b96-944c-4829-9a15-3f9e31da59c8", + "createdTime": "2020-10-29T21:34:08.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "63dfeb8c-184b-4987-8409-a8d27de36e8d", + "createdTime": "2020-10-29T21:34:07.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cdab51db-a7f4-4671-bab7-3f546e461e7f", + "createdTime": "2020-10-29T21:34:05.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9dcdb20d-6224-4571-ba8c-d89dd4c61aee", + "createdTime": "2020-10-29T21:33:09.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d6362b0-7043-4c0f-b968-48e8d86db99a", + "createdTime": "2020-10-29T21:34:03.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "78cff4f8-5d77-445d-9e2a-0d4d65e59bc4", + "createdTime": "2020-10-29T21:34:02.186Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "69ebdd16-8953-4197-bf6c-22714c27d059", + "createdTime": "2020-10-29T21:34:00.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a807e02-776c-41ee-ab75-04c6667c9729", + "createdTime": "2020-10-29T21:33:58.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c7252014-e952-446a-a34d-198a0d1d7c58", + "createdTime": "2020-10-29T21:33:57.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "eead096c-b5c6-40e8-927c-93eae0ac8bfc", + "createdTime": "2020-10-29T21:33:56.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "44547aa3-34b2-4c02-86db-f0ebd7789d05", + "createdTime": "2020-10-29T21:33:55.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aba065bd-50ea-4f07-a0d3-44fed5ed7425", + "createdTime": "2020-10-29T21:33:53.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0cdcecaf-310f-4df5-8069-15724a7e410f", + "createdTime": "2020-10-29T21:33:52.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a996ae81-abd8-4e6e-90d8-e4cedfd67381", + "createdTime": "2020-10-29T21:33:50.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a05be27-c282-4e7e-be50-8243eb57da2e", + "createdTime": "2020-10-29T21:33:49.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad2de1d6-3be2-44c0-ad40-958bad6afa58", + "createdTime": "2020-10-29T21:33:49.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "133c45d1-9e0f-4313-868b-0831d122c0b1", + "createdTime": "2020-10-29T21:33:47.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7c9e4443-5e32-4765-8860-35e9d6aeaf34", + "createdTime": "2020-10-29T21:33:44.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1299e5cf-c1bd-4ba0-b907-9b23a0844b6f", + "createdTime": "2020-10-29T21:33:43.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "04eb2ab9-8d76-40de-b989-0eb62531df6f", + "createdTime": "2020-10-29T21:33:42.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7429f7f5-f09c-4913-8d59-0c27d5e01218", + "createdTime": "2020-10-29T21:33:00.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7eef421-7146-4457-8728-d0e9fdec112e", + "createdTime": "2020-10-29T21:33:38.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "21dc1ecb-b552-4286-adea-a98d4229c49d", + "createdTime": "2020-10-29T21:33:35.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba41c737-d1bc-4dd8-a308-27f6ecaf3f47", + "createdTime": "2020-10-29T21:33:34.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "36e62966-d630-4a39-ac03-c02c90e3fc48", + "createdTime": "2020-10-29T21:33:29.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f87771d7-2822-4e4f-82f5-e5d7c777bdd1", + "createdTime": "2020-10-29T21:33:11.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "73c38123-05e6-4847-95b6-24d6cc079fb2", + "createdTime": "2020-10-29T21:32:54.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0e8b8fa5-a263-4e03-b0e1-3fc0d491e56d", + "createdTime": "2020-10-29T21:33:10.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d638c92b-a954-4ae0-893c-37ece02421c8", + "createdTime": "2020-10-29T21:33:08.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fee0936e-b5ef-47af-95e6-a75ddf99c786", + "createdTime": "2020-10-29T21:33:06.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd65f4da-abd0-4307-b092-f4cc77f37b06", + "createdTime": "2020-10-29T21:33:05.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "012d5e37-2377-4080-a1f1-57758dcac325", + "createdTime": "2020-10-29T21:33:04.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "09819b6b-63f8-4133-ac72-fef6e627ef08", + "createdTime": "2020-10-29T21:33:02.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bd6a70dd-9322-4839-bf4e-4f25e1218f65", + "createdTime": "2020-10-29T21:33:01.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "45746daa-9650-4b05-9fd2-d0fd3941b17e", + "createdTime": "2020-10-29T21:33:00.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "393290a8-8137-4855-8a8e-e932c4004d1a", + "createdTime": "2020-10-29T21:32:58.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f8773ae-abfb-4959-a764-2e3cb64f33f8", + "createdTime": "2020-10-29T21:32:57.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8301d67a-c0b9-4c12-9aaf-624bd9b0897b", + "createdTime": "2020-10-29T21:32:56.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cae517e5-f259-480b-bf65-b6597ba8f407", + "createdTime": "2020-10-29T21:32:53.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7d05bd15-c4b0-4b49-9e84-241c6d69c85b", + "createdTime": "2020-10-29T21:30:53.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98588f42-d3c7-4f92-882b-12b65766cb00", + "createdTime": "2020-10-29T21:30:56.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7c4b91dd-b250-4bec-be26-fd2222b80687", + "createdTime": "2020-10-29T21:30:54.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5c19fdd7-5b9d-44cf-acc3-8980f8279ebf", + "createdTime": "2020-10-29T21:30:51.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e4191f95-b641-4471-b085-fa3d8d990759", + "createdTime": "2020-10-29T21:30:44.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d642b9f-e87d-4482-831b-4cbaa936bd01", + "createdTime": "2020-10-29T21:30:43.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dac1a94c-a92f-44ef-ae31-ca5442cf98cd", + "createdTime": "2020-10-29T21:30:40.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5df80171-4d2e-4137-b019-e9cf04fa84c0", + "createdTime": "2020-10-29T21:30:38.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "458c03f9-1eb1-4b89-a53e-8537d9aac306", + "createdTime": "2020-10-29T21:30:37.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "72f5ca20-9183-4bec-b557-3c3f06d6bfab", + "createdTime": "2020-10-29T21:29:59.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c31bf916-fac7-495e-8f3e-01261f5b3ec1", + "createdTime": "2020-10-29T21:30:16.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ed746ef3-e57c-488f-b9dc-28f944a67e5e", + "createdTime": "2020-10-29T21:29:57.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9c1dee2f-0729-41c2-bbbd-2c38b204aff5", + "createdTime": "2020-10-29T21:29:55.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "404ea16d-c696-4653-a41e-6b1f985cc3df", + "createdTime": "2020-10-29T21:29:48.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e3aaf009-b801-43f1-9450-0f9bca40f041", + "createdTime": "2020-10-29T21:29:16.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f291895-de68-4217-b118-ba98092dd7b0", + "createdTime": "2020-10-29T21:28:45.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "71fb92be-de62-48fa-b13a-11b34db5f2f7", + "createdTime": "2020-10-29T21:25:52.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58809597-1911-4760-8d0f-c3183385f381", + "createdTime": "2020-10-29T21:26:41.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e150f123-bddd-4e01-979e-2537d2b40996", + "createdTime": "2020-10-29T21:25:47.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2c653a78-8b3a-4cde-89a4-66a0b2fc3e8f", + "createdTime": "2020-10-29T21:25:43.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f574fcc7-0906-4185-9f14-f0f90b193d66", + "createdTime": "2020-10-29T21:25:39.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5bbfcb3-132a-4d4e-9305-59c9e6532e94", + "createdTime": "2020-10-29T21:25:53.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5c7d8329-02a8-41f5-bc5f-04a4af5d3695", + "createdTime": "2020-10-29T21:25:51.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e9bccbfe-89b5-4197-9f10-91bc1df5d41e", + "createdTime": "2020-10-29T21:25:50.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a6b157f8-6247-4c05-95db-ee3684d5bf6a", + "createdTime": "2020-10-29T21:25:50.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "33b14726-77f4-4900-944a-1e66cd23f7f0", + "createdTime": "2020-10-29T21:25:33.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "452964ed-48c0-430d-851c-4720be29d8a0", + "createdTime": "2020-10-29T21:25:49.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6561ef3-325c-4b14-a90b-a983562d87a4", + "createdTime": "2020-10-29T21:25:48.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e73fdd1f-fd8f-4994-97eb-3166a56233dc", + "createdTime": "2020-10-29T21:25:48.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "56151049-9f07-44a6-ad64-3261a3be801c", + "createdTime": "2020-10-29T21:25:47.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "71d2d22d-a2d0-466a-8e40-8b4bdcb08307", + "createdTime": "2020-10-29T21:25:46.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a0ffd45a-e601-476c-8e2e-4073818e9d62", + "createdTime": "2020-10-29T21:25:45.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c4e614f6-715f-4b90-a2ad-c6b8b5c14ae0", + "createdTime": "2020-10-29T21:25:44.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "89f86c87-03fb-438c-82e8-c0cb1c68e8a6", + "createdTime": "2020-10-29T21:25:42.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6a2baac0-cd44-4709-944a-a783e8d19928", + "createdTime": "2020-10-29T21:25:40.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b46f529d-ca23-44cb-bdcb-744fa1bf82be", + "createdTime": "2020-10-29T21:25:39.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7e2fd3c8-5de6-4fd0-9db8-5676d022eaa0", + "createdTime": "2020-10-29T21:25:30.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28871400-fe3a-4d9e-8fe5-62aee31fa5de", + "createdTime": "2020-10-29T21:25:38.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "16e5c4db-9f4b-4517-b570-98170af15377", + "createdTime": "2020-10-29T21:25:37.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c3c9f304-860c-415d-a49f-eaca32f82abb", + "createdTime": "2020-10-29T21:25:36.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "453b12cd-7687-4eb6-8e12-32155819dd1f", + "createdTime": "2020-10-29T21:25:35.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "26959dc6-5504-4173-9754-dac9197ed9e4", + "createdTime": "2020-10-29T21:25:35.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6023067-3437-4f7f-91d2-8cffe3a1e87e", + "createdTime": "2020-10-29T21:25:34.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2f8a267f-9720-4ba7-a742-0d04c41a9fc2", + "createdTime": "2020-10-29T21:25:33.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ec527a30-062e-43cb-a15a-aa8b67e4f7ef", + "createdTime": "2020-10-29T21:25:32.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "70a0ba17-71ab-4e5a-bdcb-06419abc0657", + "createdTime": "2020-10-29T21:25:31.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "83096262-00f6-4aa3-a9a3-b2006df856cb", + "createdTime": "2020-10-29T21:25:30.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "721acdd3-aca2-4294-b5fb-bd8e326559f1", + "createdTime": "2020-10-29T21:25:29.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dcc01383-9a3f-41c6-9d69-4e8d3261ad02", + "createdTime": "2020-10-29T08:24:42.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "34960827-044d-44fe-bbc8-823d75cbe087", + "createdTime": "2020-10-29T08:24:41.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a9c9f2d-d38e-4cc0-b810-4210812083eb", + "createdTime": "2020-10-29T08:24:41.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e0c3dbc-b5fd-42d5-a055-fd3c041a0787", + "createdTime": "2020-10-29T08:24:40.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf8076ca-1557-4b9e-a483-24d8697d6b61", + "createdTime": "2020-10-29T08:21:37.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2fcfa24c-6b4d-444b-8a23-e959de510d4b", + "createdTime": "2020-10-29T08:21:36.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7c8780f9-7301-4f8f-8268-f708b4f9bd69", + "createdTime": "2020-10-29T08:21:35.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "af4d1c16-4d26-4253-b094-97fe9a3730f7", + "createdTime": "2020-10-29T08:21:34.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cfa9d8db-4ec2-41f2-87bc-5a67d5793a27", + "createdTime": "2020-10-29T08:01:18.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad412cfb-6976-494d-96f2-d2fd1a0fd149", + "createdTime": "2020-10-29T08:01:17.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e9975f8-0bd6-45aa-8680-3cb71663ecd1", + "createdTime": "2020-10-29T08:01:16.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "67f2152a-a46a-4c3f-8b35-0fe367dbddde", + "createdTime": "2020-10-29T08:01:15.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ebfaaad-3021-41fa-8c3d-35f6231c499a", + "createdTime": "2020-10-29T07:58:20.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03c189ba-7ae5-4c79-83ab-fd21ba745c94", + "createdTime": "2020-10-29T07:58:19.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1960bbde-2e1f-4a02-8586-e7ee55980a9b", + "createdTime": "2020-10-29T07:58:19.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "633ef364-f8b6-49fb-9ad4-cf02a58aca87", + "createdTime": "2020-10-29T07:58:18.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b05b72df-3105-4ffe-8886-9a266809a804", + "createdTime": "2020-10-29T07:50:07.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ed0b198c-f040-424b-95ea-40f0212e26a5", + "createdTime": "2020-10-29T07:50:06.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fbc2c86c-404c-4710-a503-b1c75cce0e44", + "createdTime": "2020-10-29T07:50:06.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a5de1ce5-f481-4140-afe9-20b5cbdc35f9", + "createdTime": "2020-10-29T07:50:05.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4edc7781-f499-4ac0-92b4-39b77fef1255", + "createdTime": "2020-10-29T07:33:51.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3546ce9-74ac-45ff-8e88-a3da02f6767f", + "createdTime": "2020-10-29T07:33:51.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ad95a043-2d45-413f-8d20-b153703ca4ee", + "createdTime": "2020-10-29T07:33:50.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1808471-31bb-4179-9e0a-216012edabb7", + "createdTime": "2020-10-29T07:33:50.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54311063-5335-4925-b05c-b30c5c162f66", + "createdTime": "2020-10-29T07:30:52.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22fd5a91-45c8-42bb-af45-f0a69cc026e6", + "createdTime": "2020-10-29T07:30:51.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "941f39c1-13c3-4cd6-9bfe-02036a55e030", + "createdTime": "2020-10-29T07:30:50.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0bf87b38-42eb-4e63-8265-f703d6120a19", + "createdTime": "2020-10-29T07:30:49.591Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1018f11-e0d1-4fc0-a69b-2fc95b6a6b07", + "createdTime": "2020-10-29T07:22:59.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "30324df0-bb36-4e57-b80d-cff6f3b7ab9f", + "createdTime": "2020-10-29T07:22:59.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "544b3a9c-dd78-4cd7-a71e-43fa7c35d710", + "createdTime": "2020-10-29T07:22:58.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9015c28-99d4-4d11-9abc-fc49b58dd3f5", + "createdTime": "2020-10-29T07:22:58.312Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4864aa17-2033-4daa-8dc6-eec2af16d4ba", + "createdTime": "2020-10-29T07:20:24.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "347d5c5b-12e9-457f-a484-37098a51d120", + "createdTime": "2020-10-29T07:20:23.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6f226ab-dc72-4ca8-9a0f-146ab2bf5b37", + "createdTime": "2020-10-29T07:20:23.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "70650fd5-1611-44b2-a244-c111f8c30d6f", + "createdTime": "2020-10-29T07:20:22.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43fa2fbb-d3cb-4b88-8f25-607b9dfca91c", + "createdTime": "2020-10-28T18:59:16.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8adb1f57-b6d9-4cc0-8157-3e76d3339feb", + "createdTime": "2020-10-28T18:38:22.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e56d773-2657-434c-966d-4c57bb0f22df", + "createdTime": "2020-10-28T18:11:45.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48dad64d-3238-4c77-8bcf-752b09fe26d9", + "createdTime": "2020-10-28T08:00:44.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "05ce256a-3feb-4007-b84d-cacd2d68d98d", + "createdTime": "2020-10-28T08:00:43.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b54cf8b2-81a3-48ac-a010-b451eda39497", + "createdTime": "2020-10-28T08:00:43.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "afea20e3-2668-4068-82d3-004a94044bf2", + "createdTime": "2020-10-28T08:00:42.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3a9d363-06bc-4853-a7c1-4e1650738276", + "createdTime": "2020-10-28T07:57:43.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad9a9890-2b28-4fcb-b147-bdea84caa4c1", + "createdTime": "2020-10-28T07:57:43.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7a53b6c-8c5c-47e1-acf3-fb190057db93", + "createdTime": "2020-10-28T07:57:42.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e01311ba-7d7b-4b96-aa34-cd2a0452ac91", + "createdTime": "2020-10-28T07:57:41.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e825b29-002d-482a-8d11-6664c44ad347", + "createdTime": "2020-10-28T07:51:46.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "217355d9-512c-4432-92fd-7df7de4be111", + "createdTime": "2020-10-28T07:51:45.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c7d48c5b-106b-4cf7-9e59-2c01e9ab1c23", + "createdTime": "2020-10-28T07:51:45.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4d57b81e-d044-46e1-a3ef-e592bcadb3a0", + "createdTime": "2020-10-28T07:51:44.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6bf7a884-3ecc-4029-b08c-a9e8c953139c", + "createdTime": "2020-10-28T07:48:48.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f51c5ad0-c5b1-4afe-a75f-0a5a1a84912d", + "createdTime": "2020-10-28T07:48:47.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7103814c-18ee-4736-84fe-865bade73a42", + "createdTime": "2020-10-28T07:48:46.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eeef3e0a-fa72-438e-9d76-e1838f814e08", + "createdTime": "2020-10-28T07:48:45.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98d7d338-274e-4bbd-b350-f6009b11d316", + "createdTime": "2020-10-28T07:40:44.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91f7830b-1836-427f-888d-0a0fe653b4bd", + "createdTime": "2020-10-28T07:40:43.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ce085539-80fc-4926-905f-378444acd41e", + "createdTime": "2020-10-28T07:40:42.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "934619ea-4bba-4ba4-b9ce-74e0038ef0c6", + "createdTime": "2020-10-28T07:40:41.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f34533f-ae24-4711-9d21-75650286d8ab", + "createdTime": "2020-10-28T07:32:05.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a46a9d91-4807-4c09-a3e5-c79f5ac315a4", + "createdTime": "2020-10-28T07:32:05.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0a3d26c0-8b11-4c50-a121-123e70f50843", + "createdTime": "2020-10-28T07:32:04.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e34470d4-75c5-468d-a752-8843b413609f", + "createdTime": "2020-10-28T07:32:03.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b14da65-b648-41de-a186-3f5228e25acd", + "createdTime": "2020-10-28T07:29:23.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0214c8a7-9c6c-4763-b517-97ad045b868c", + "createdTime": "2020-10-28T07:29:21.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "da3fd48b-46b5-4587-aae1-cd2d24994e0c", + "createdTime": "2020-10-28T07:29:19.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "71e829f2-0830-48af-a4c3-0a6e9322d538", + "createdTime": "2020-10-28T07:29:18.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "adb30cdd-1cbc-4798-b54b-56edaadd806e", + "createdTime": "2020-10-28T07:22:59.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eeb2604f-0416-45b5-af65-8f42132b385e", + "createdTime": "2020-10-28T07:22:59.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fcf07c0b-3510-459e-92cf-c0a06eb9e3ea", + "createdTime": "2020-10-28T07:22:58.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "509992f9-050a-4746-aca8-91cb2a5ec2b9", + "createdTime": "2020-10-28T07:22:57.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aaff9914-919e-4938-a8a8-cb056fcae4b9", + "createdTime": "2020-10-28T07:20:19.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "20f0cf84-f7fc-401e-8728-9f8580460156", + "createdTime": "2020-10-28T07:20:19.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f5e93bef-96bd-4281-8065-c4eac04578fd", + "createdTime": "2020-10-28T07:20:18.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c90e820f-5b9d-4c39-b095-991b2432954f", + "createdTime": "2020-10-28T07:20:17.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65248b7b-b218-45a1-95c7-4572ef4d8995", + "createdTime": "2020-10-27T08:10:12.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "19c831ce-2d3a-41d4-b5ec-81a1a960f2a5", + "createdTime": "2020-10-27T08:10:11.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fbf9116a-e903-4c92-b5c0-3fc53259532d", + "createdTime": "2020-10-27T08:10:11.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c76b5110-bfe7-49a0-945c-203f494f37e2", + "createdTime": "2020-10-27T08:10:10.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef5b1524-09e6-41b7-9668-4d730c9bcf69", + "createdTime": "2020-10-27T08:07:24.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8a10486d-ec37-49e3-baa7-45c82f59d116", + "createdTime": "2020-10-27T08:07:22.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "59551a1c-2990-4bdf-b715-433bd19dce90", + "createdTime": "2020-10-27T08:07:16.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a928d75d-32f2-4950-bc06-ab8bbead99fe", + "createdTime": "2020-10-27T08:07:15.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46e97e9c-2044-4ade-8ae8-3a584f733f09", + "createdTime": "2020-10-27T07:55:34.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b43e13d9-0146-48eb-93b2-e1c3a70b970a", + "createdTime": "2020-10-27T07:55:34.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "27285e3d-921d-4e77-81b6-cfba6bfb8846", + "createdTime": "2020-10-27T07:55:33.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "02a0bfcf-98f6-40a7-868a-70ee4d0e9d17", + "createdTime": "2020-10-27T07:55:32.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25c0601f-20f8-4493-a839-722b64453e0f", + "createdTime": "2020-10-27T07:52:23.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2a28b5e7-f658-426c-94d6-f5ed0b1e595c", + "createdTime": "2020-10-27T07:52:21.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32c7e2e4-9586-4a75-b82e-949e89934d28", + "createdTime": "2020-10-27T07:52:20.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3df9e5ed-0980-4ca7-8543-d170b9f15a1b", + "createdTime": "2020-10-27T07:52:19.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f9c7d7c8-315d-461c-83ba-526daf0261bf", + "createdTime": "2020-10-27T07:43:38.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf1e0889-7ac4-41cd-8906-69178a5e39bb", + "createdTime": "2020-10-27T07:43:37.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63f1c86e-461b-4932-9133-741f5ec6972a", + "createdTime": "2020-10-27T07:43:36.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8f2ecf3a-7933-4b3e-80c1-8de052c5cf70", + "createdTime": "2020-10-27T07:43:35.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7591752b-c59f-44ae-ab63-99f80c4aa5a5", + "createdTime": "2020-10-27T07:32:44.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5c7df539-1bb9-4032-9dd6-7fdeb76b5243", + "createdTime": "2020-10-27T07:32:43.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "703b3863-b714-4a0e-9fe3-17089c432eaa", + "createdTime": "2020-10-27T07:32:43.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "401246ca-2796-4a5c-9a23-1c9dc8f04315", + "createdTime": "2020-10-27T07:32:42.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4e1a9de-5b4a-4b49-a3b0-7ddec539410b", + "createdTime": "2020-10-27T07:29:34.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "edb92bcb-d0f0-452d-b58e-9466aeac08bf", + "createdTime": "2020-10-27T07:29:34.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf5ee10d-e53c-4d68-bd51-ad5061ed7081", + "createdTime": "2020-10-27T07:29:33.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5413056a-336d-4fa8-9a33-5d1653e2eece", + "createdTime": "2020-10-27T07:29:32.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61ff3a28-e590-42b6-a11d-c8331d1fa0ef", + "createdTime": "2020-10-27T07:23:50.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4688df1b-0d9c-4494-ac87-dd1486febf1f", + "createdTime": "2020-10-27T07:23:50.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dff8ed32-b785-428d-b6b8-8f601ae283b2", + "createdTime": "2020-10-27T07:23:49.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "05b9ffee-efcb-4797-a932-ac2c328ce9f1", + "createdTime": "2020-10-27T07:23:49.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e538048-e601-449f-aee5-47cfc140603c", + "createdTime": "2020-10-27T07:20:50.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3278f4c1-439e-4400-9ece-9c6a492d1f22", + "createdTime": "2020-10-27T07:20:49.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c2e5452c-848c-4885-abac-e0e49c62f868", + "createdTime": "2020-10-27T07:20:49.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "51b55a13-d367-4b26-9500-abeb5ad646dd", + "createdTime": "2020-10-27T07:20:48.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03f80c04-19fb-4827-9650-ee1447995a46", + "createdTime": "2020-10-26T23:01:44.081Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0fec067b-737a-4c4e-944f-e543435ae592", + "createdTime": "2020-10-26T23:01:43.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3612da9-ab3a-40b0-ad9f-612f40b5bccb", + "createdTime": "2020-10-26T23:01:43.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0e2085df-fc7c-4df1-8c3f-5b3c9861e0c4", + "createdTime": "2020-10-26T23:01:42.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06308617-188a-496f-b063-c3a321c96824", + "createdTime": "2020-10-26T22:58:47.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e12b60c6-1066-4511-b9cc-e229e88a144b", + "createdTime": "2020-10-26T22:58:46.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b33aaa80-f2dd-40c8-923a-3f8395bb2b24", + "createdTime": "2020-10-26T22:58:46.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9e2a9f7-4e4b-422a-934f-7a5a15f88faf", + "createdTime": "2020-10-26T22:58:45.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ffb8b38-83de-4054-a1aa-b3d182cc3621", + "createdTime": "2020-10-26T22:52:40.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a0b02c0a-d03f-4ab6-b42f-13141dfa8113", + "createdTime": "2020-10-26T22:52:39.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf6ff05f-55c7-429c-be41-ca9a6d755eda", + "createdTime": "2020-10-26T22:52:39.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "51085507-c6db-4755-83ac-9caeb2798b06", + "createdTime": "2020-10-26T22:52:38.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1a8600d3-6f92-4b8e-8ffc-c0fdaec7082c", + "createdTime": "2020-10-26T22:49:34.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "96f723bd-50ef-4730-83eb-764253a80a51", + "createdTime": "2020-10-26T22:49:33.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e728c32-bba4-4e6d-a2ca-710cfa3c147f", + "createdTime": "2020-10-26T22:49:32.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7af3b724-4778-498a-8e8a-488c258458e5", + "createdTime": "2020-10-26T22:49:30.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "963ff953-fa4f-40bf-89e0-48bb83f61a77", + "createdTime": "2020-10-26T22:40:58.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "026e8a13-783c-4ccc-8091-23ffad37e63c", + "createdTime": "2020-10-26T22:40:57.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4d230ad4-8a95-4b79-90bc-02fd055c775e", + "createdTime": "2020-10-26T22:40:57.341Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "981960c8-d605-4921-97d1-29760c4e9bb1", + "createdTime": "2020-10-26T22:40:56.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0de37dd9-7108-4d74-be86-764bbe6b1523", + "createdTime": "2020-10-26T22:30:20.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63f84cb9-a037-4edb-aa71-d9171f4d193b", + "createdTime": "2020-10-26T22:30:19.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ab22d7d8-45e2-4506-bbae-60b55a816075", + "createdTime": "2020-10-26T22:30:18.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2cc42c83-0317-491e-98e9-dae53ca0e277", + "createdTime": "2020-10-26T22:30:17.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ca925e2f-260e-44e0-bba6-87a5128bf1a7", + "createdTime": "2020-10-26T22:27:34.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "849c1d3b-844c-4568-9d11-df4e5a8c6733", + "createdTime": "2020-10-26T22:27:33.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4d803ee6-0976-445d-9f18-9b0ca8a5f258", + "createdTime": "2020-10-26T22:27:32.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b189e53-f2b0-4e27-9424-d65f05c8bb8a", + "createdTime": "2020-10-26T22:27:32.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7dc92646-658e-4e19-bc45-a0f9ef406ce6", + "createdTime": "2020-10-26T22:20:40.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ce68f5c0-b33d-489a-a7d8-75e3762df40d", + "createdTime": "2020-10-26T22:20:39.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c38d51e9-3ddf-4c29-9ddd-b4361f3b27f1", + "createdTime": "2020-10-26T22:20:39.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0cf8a13e-5865-4604-b352-2bf3b2715abb", + "createdTime": "2020-10-26T22:20:38.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f65bb223-a98f-4203-bc4f-b46517d726c9", + "createdTime": "2020-10-26T22:17:33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e57ec006-50aa-4206-ae6e-966dab18d068", + "createdTime": "2020-10-26T22:17:32.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eee2b213-e88f-4f2c-b7ed-042458894883", + "createdTime": "2020-10-26T22:17:31.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "56fd8315-560b-4d8e-84a4-8bf45c501d82", + "createdTime": "2020-10-26T22:17:31.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "959f52a7-e8e4-4e33-9d26-db511b03b0dc", + "createdTime": "2020-10-26T21:51:15.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e5ae0c34-d9ee-4952-b7b5-4743ca3aff11", + "createdTime": "2020-10-26T21:51:14.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "23363242-ea28-4878-a4ea-04ad602a0d7f", + "createdTime": "2020-10-26T21:51:13.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "711907af-342a-445d-9047-d76ab4ad7e3f", + "createdTime": "2020-10-26T21:51:13.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f353658-afdf-46d9-8334-c249694ebb7a", + "createdTime": "2020-10-26T21:48:43.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "257554dd-9453-43bf-b1bb-0e98567514fe", + "createdTime": "2020-10-26T21:48:42.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e3d2bd81-fa86-49a0-92ff-cdf267d16297", + "createdTime": "2020-10-26T21:48:41.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "094e6fc8-8caa-4055-9dfc-e4004999f8a2", + "createdTime": "2020-10-26T21:48:40.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54dc9456-ac17-4ea3-adb0-18f1279f19f1", + "createdTime": "2020-10-26T21:42:27.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8923565c-8309-474c-81a2-2ddca003dc6e", + "createdTime": "2020-10-26T21:42:24.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f40671cf-9ae0-4605-9902-eb7ddfc4b307", + "createdTime": "2020-10-26T21:42:22.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06451e61-72c3-4163-aa99-c76f0f8327b4", + "createdTime": "2020-10-26T21:42:18.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4d8cbf7-c223-4a9c-b844-1ac5d8aa51c1", + "createdTime": "2020-10-26T21:39:37.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6da6745d-4327-4d8e-90d5-a8c11762e118", + "createdTime": "2020-10-26T21:39:36.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a88a0e13-2ea6-4c23-98d8-c83d948d0d8e", + "createdTime": "2020-10-26T21:39:35.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e191db1c-24e9-410c-95e6-d2f8f535daf5", + "createdTime": "2020-10-26T21:39:34.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e8d737f-3abb-40ad-8f86-13853f09a926", + "createdTime": "2020-10-26T21:25:12.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c8c9293-cd20-4670-abac-f92f86e75216", + "createdTime": "2020-10-26T21:25:11.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0073ec3d-dd72-48ca-8521-4cf72737f686", + "createdTime": "2020-10-26T21:25:11.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ad53013-9603-4cd6-83b6-00124f57d571", + "createdTime": "2020-10-26T21:25:10.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5817ccc-0b7d-4885-9af7-c5b0b6cb732c", + "createdTime": "2020-10-26T21:06:39.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0e511e33-5707-4b84-9360-67996db4c50c", + "createdTime": "2020-10-26T21:06:38.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "78361cd5-eeb8-446e-b076-397ae6fdc2d9", + "createdTime": "2020-10-26T21:06:38.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8de1dcd5-54f7-43d6-b48a-d2aa875a6807", + "createdTime": "2020-10-26T21:06:37.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03aaea11-c91a-453d-82c4-6b42f80c3183", + "createdTime": "2020-10-26T21:03:48.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "afb332f2-edcb-440a-8607-f7624e7980fe", + "createdTime": "2020-10-26T21:03:48.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5ba909d-8746-42e5-90d9-47f33ece9e48", + "createdTime": "2020-10-26T21:03:47.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b40d6f16-5f8e-4ca6-b62c-06b67606443c", + "createdTime": "2020-10-26T21:03:47.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df24fffc-ddb5-45a5-8610-3c7ea6edf7de", + "createdTime": "2020-10-26T20:57:20.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41d09963-2b2b-4133-8369-885f2ba0dbb3", + "createdTime": "2020-10-26T20:57:19.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "af336b6d-cbab-4ad0-9669-247118ea80b9", + "createdTime": "2020-10-26T20:57:17.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "10dc1b62-ba75-4eb1-b3ca-acb93e72e9fe", + "createdTime": "2020-10-26T20:57:16.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fd5d0a8-66a5-4ce7-bb1f-b4a627849858", + "createdTime": "2020-10-26T20:54:44.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8342fe3f-6ba5-4b1e-905b-b9b3cfe94837", + "createdTime": "2020-10-26T20:54:44.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e7de937-d994-4736-a8ff-2acfa28e52e5", + "createdTime": "2020-10-26T20:54:43.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c8791ac-7f5d-4d79-ad92-edb3f876974e", + "createdTime": "2020-10-26T20:54:42.616Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9a1bc7b8-dca9-424a-b1e3-d7f8b1e7a6aa", + "createdTime": "2020-10-26T20:44:34.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acf7e869-c031-4608-8f9f-647a5d1d985b", + "createdTime": "2020-10-26T20:44:33.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6f533d50-aa92-490f-9afc-693f8f11f2ee", + "createdTime": "2020-10-26T20:44:33.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e4538a2-b40f-4e68-9774-2a96ff288ed3", + "createdTime": "2020-10-26T20:44:32.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b08a5e8-33f2-4612-99fd-dff5c7ab1577", + "createdTime": "2020-10-26T20:41:58.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e939c516-fafb-4256-b6b1-e01e9a2a57d0", + "createdTime": "2020-10-26T20:41:58.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc5f6d7-3fee-454d-9101-0894d9106eb3", + "createdTime": "2020-10-26T20:41:58.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c4eb47f-17f5-4d81-8959-33d1d70676e0", + "createdTime": "2020-10-26T20:41:57.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6513cc67-a62c-4c0a-be8b-05411f112855", + "createdTime": "2020-10-26T20:36:41.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4fc7d258-7ebb-485d-ab6a-ed83351d4f31", + "createdTime": "2020-10-26T20:36:41.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac376b37-a8b9-48e9-aa6f-b7eb2c23b0c7", + "createdTime": "2020-10-26T20:36:40.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6cb879a8-0f3d-4fe3-b4e4-f79bf4c01274", + "createdTime": "2020-10-26T20:36:40.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e77d8578-1574-4254-bc1c-700deed36558", + "createdTime": "2020-10-26T20:33:42.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1f2d5503-2a9d-40fd-8975-790d0e3cdc9c", + "createdTime": "2020-10-26T20:33:41.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "816bb309-13df-433e-b224-2f74cce88c78", + "createdTime": "2020-10-26T20:33:40.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b7afa6b5-0d21-4ce0-a331-87adcfb09a99", + "createdTime": "2020-10-26T20:33:39.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fffd44bd-a709-455c-9001-6d433b63ef90", + "createdTime": "2020-10-26T20:25:49.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7933b4e1-a7a3-4b75-aef5-bf7ba39e3386", + "createdTime": "2020-10-26T20:25:49.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ab97cb70-ed08-4500-9a16-37f7c85e0944", + "createdTime": "2020-10-26T20:25:48.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d0dc0953-f4ed-4fcc-958c-94d53b450b89", + "createdTime": "2020-10-26T20:25:47.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "201d7529-9bf1-4a3c-bcb3-4944c11bb53e", + "createdTime": "2020-10-26T20:17:02.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "782e2082-a8fd-4d5c-939b-06b217cc2c9c", + "createdTime": "2020-10-26T20:17:02.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "714512d2-05ba-4290-88ec-6e345e83196a", + "createdTime": "2020-10-26T20:17:01.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "66a9ceb8-b197-4147-ac0a-500a56434df9", + "createdTime": "2020-10-26T20:17:00.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "244315a2-3d3f-4ea5-8a6e-e387dc8c1d05", + "createdTime": "2020-10-26T20:14:06.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "552726da-90c8-47b9-bb7b-532719c32af7", + "createdTime": "2020-10-26T20:14:06.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4551d1f4-c70a-4077-a301-1cbc3772e648", + "createdTime": "2020-10-26T20:14:05.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4b268ab-9e8f-40e6-b648-01d276c073e8", + "createdTime": "2020-10-26T20:14:05.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72ffbd3a-fb8b-434f-83cc-2c1e0651b784", + "createdTime": "2020-10-26T20:06:58.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ba9255a1-cb4b-41a4-aebb-f3b4cbfdc907", + "createdTime": "2020-10-26T20:06:57.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9d88610-b202-43a6-8751-82b817a3b16b", + "createdTime": "2020-10-26T20:06:57.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "71d4f85e-2c93-4622-b9e1-f02c64ac42c4", + "createdTime": "2020-10-26T20:06:56.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78ce6f3f-cd07-4b3b-8995-9e2b9271a65e", + "createdTime": "2020-10-26T20:04:21.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "53cd6b7c-cb38-4d18-a6a8-75931bd76e86", + "createdTime": "2020-10-26T20:04:20.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eb5674e9-2813-40ed-828a-d7dc5b95cf09", + "createdTime": "2020-10-26T20:04:19.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5a86728c-8978-4fb3-868f-5a4dea742371", + "createdTime": "2020-10-26T20:04:17.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a9ebb6a-ee4d-46be-aa92-91f85996d497", + "createdTime": "2020-10-26T17:54:11.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7ea84eba-aa64-4a58-a76c-89261718678b", + "createdTime": "2020-10-26T17:54:08.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff69d621-7dea-43bb-b00b-efda4103f155", + "createdTime": "2020-10-26T17:54:07.81Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb4c6de5-2b57-49f6-bef6-0feb907ed46c", + "createdTime": "2020-10-26T17:54:07.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "146a3a5e-8fe9-40dd-a144-268cbea998b9", + "createdTime": "2020-10-26T17:47:27.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "95cff865-a172-46b1-9afd-7d426b42fa44", + "createdTime": "2020-10-26T17:47:26.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1d56f49-2ba5-446b-8057-2029091af490", + "createdTime": "2020-10-26T17:47:25.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8f6dec29-707e-4604-971b-6c48a3c68c4c", + "createdTime": "2020-10-26T17:47:24.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73b0b5db-3cd1-4d9d-99ee-e8320e9f79d5", + "createdTime": "2020-10-26T17:44:04.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e3e1fb0-6246-46ca-a180-0bb09b670fd7", + "createdTime": "2020-10-26T17:44:03.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "592c94ad-c2db-4c86-9fa4-cf8c62f2cace", + "createdTime": "2020-10-26T17:44:02.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bfa3cd15-8ac2-465b-a5bd-706ebb6392f2", + "createdTime": "2020-10-26T17:44:01.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df0e503e-690a-4acc-b664-7021d715cf04", + "createdTime": "2020-10-26T17:37:19.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8393e577-7388-462e-be85-c60f56042a91", + "createdTime": "2020-10-26T17:37:13.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "26a91e1a-ae54-4f87-a62d-fcb68c549773", + "createdTime": "2020-10-26T17:37:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "28ca82ee-9891-4cae-b086-6e21f2cc6d50", + "createdTime": "2020-10-26T17:37:10.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7593d76-352c-46d2-9a8a-06c3e1a980ca", + "createdTime": "2020-10-26T17:34:36.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f480dd24-cb62-4094-be32-b04069d554d4", + "createdTime": "2020-10-26T17:34:35.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ed0a746e-4fe9-4ae4-870c-b60c6d6f6db7", + "createdTime": "2020-10-26T17:34:34.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3e916fb-b326-46ba-9f3c-b688d9d17c2a", + "createdTime": "2020-10-26T17:34:33.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc7dba02-35f3-4ec8-a107-e50b24b09adb", + "createdTime": "2020-10-26T17:31:09.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "410135e8-c38f-499e-a59b-5027a48264fb", + "createdTime": "2020-10-26T17:31:08.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "47e4f682-a663-4b3c-9825-caaa266eb2b4", + "createdTime": "2020-10-26T17:31:08.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "070cf15c-d75f-4467-9569-0010c700c857", + "createdTime": "2020-10-26T17:31:07.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8df08316-232f-436d-99e8-b0104bca6841", + "createdTime": "2020-10-26T17:22:16.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3bd2fdc1-cf2d-45dc-a189-045ed76b5bcc", + "createdTime": "2020-10-26T17:22:15.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8c72da23-012b-4e81-a445-7fa69df91f31", + "createdTime": "2020-10-26T17:22:09.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "89b61f17-8e68-488d-a7b3-3fdbcae620e8", + "createdTime": "2020-10-26T17:22:08.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe3d3a05-d7d6-487c-a021-dd10568be86c", + "createdTime": "2020-10-26T17:20:15.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91e74500-a04c-4f52-bfe2-78896091fd5a", + "createdTime": "2020-10-26T17:20:14.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b81c92bf-a342-4c83-8dff-fbca94956614", + "createdTime": "2020-10-26T17:20:14.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59a8744c-a524-432c-a86e-005be7d797db", + "createdTime": "2020-10-26T17:20:13.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dacfcf73-bd02-4c3a-a022-8fff59b40064", + "createdTime": "2020-10-26T17:01:50.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7589a1d-00cf-43ce-83f1-16ee5b68b9a3", + "createdTime": "2020-10-26T17:01:50.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "10ad4c73-33c2-4f1c-b504-6ed2567b1fd4", + "createdTime": "2020-10-26T17:01:49.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bbc8e72f-58ea-401e-9e7b-47db680777a6", + "createdTime": "2020-10-26T17:01:49.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a6de16e-91f1-4fa4-9211-877e66475ccf", + "createdTime": "2020-10-26T16:59:01.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25987f08-35ee-42bc-8941-a19e75efaf9a", + "createdTime": "2020-10-26T16:59:00.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc736267-403c-4bb1-8382-d43ec33681fb", + "createdTime": "2020-10-26T16:59:00.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "523394dd-2da3-482e-bf64-aa963aeb1dec", + "createdTime": "2020-10-26T16:58:59.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1ead95d5-50d5-42a7-b009-a4fca02d556e", + "createdTime": "2020-10-26T16:43:37.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5144e124-748d-454f-a2a1-1a7bf55a3e51", + "createdTime": "2020-10-26T16:43:36.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "30b0bec7-e788-4f68-b130-ffd7b75cc8f9", + "createdTime": "2020-10-26T16:43:36.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "30a91e80-5220-4a58-84c1-41aa43105252", + "createdTime": "2020-10-26T16:43:35.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d584c29-a932-4b43-8bd8-3156af8c54aa", + "createdTime": "2020-10-26T16:41:02.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ffdafdb7-0d78-4074-a874-14235cf585bf", + "createdTime": "2020-10-26T16:41:01.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51369b18-fbc9-4bbc-aa6d-286d519ffa4f", + "createdTime": "2020-10-26T16:41:01.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eb7b3660-994d-40d8-b9a2-c79ae0cbec5b", + "createdTime": "2020-10-26T16:41:00.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c18bdeb4-8818-4edb-b52e-f4cbebbc8d6f", + "createdTime": "2020-10-26T16:01:11.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bcd6b8a4-e619-46f0-8e91-45f39981f9af", + "createdTime": "2020-10-26T16:01:10.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "89a01e54-4693-4076-a034-0b26b156353b", + "createdTime": "2020-10-26T16:01:10.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ed88f878-ebb2-4d21-978e-25d2dc017e12", + "createdTime": "2020-10-26T16:01:09.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69fb3d2f-972b-4d43-853a-1b2816197fcf", + "createdTime": "2020-10-26T15:58:20.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b5ed5e8a-6e71-4e66-b700-cb754b38bb12", + "createdTime": "2020-10-26T15:58:20.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "48a01893-c2c2-410e-8bee-71d5d13b60e0", + "createdTime": "2020-10-26T15:58:19.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a1fc9c3-354d-4bbb-81c3-e40f483e6a1d", + "createdTime": "2020-10-26T15:58:18.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "825aab0f-6526-4384-87ac-6b1fabedb14b", + "createdTime": "2020-10-26T08:06:32.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "00572b8c-ef9b-42a7-bf25-d7f74da68e52", + "createdTime": "2020-10-26T08:06:31.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dd790ed7-90a0-48fd-82ac-ee5cd603e689", + "createdTime": "2020-10-26T08:06:31.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3bd4919-fa68-4c45-9cc6-0f2dd35d0a9d", + "createdTime": "2020-10-26T08:06:30.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c731a2b-d6c6-4f86-ac79-8aafa651e199", + "createdTime": "2020-10-26T08:04:56.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "806a6be7-495b-4ead-be4c-3bdb951e3174", + "createdTime": "2020-10-26T08:04:55.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9f7a08cc-0676-48f5-995d-6ff8f9e00ab5", + "createdTime": "2020-10-26T08:04:55.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6cb391af-8ece-433f-a1c7-dcfb269c017a", + "createdTime": "2020-10-26T08:04:54.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88903c44-61d2-42b1-bb7d-ec4c06f80f08", + "createdTime": "2020-10-26T07:49:11.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1393dc5a-5258-4475-97d2-540131d76e05", + "createdTime": "2020-10-26T07:49:11.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5f2619d1-3fcb-4f99-b0bd-8c85936182b8", + "createdTime": "2020-10-26T07:49:10.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4051a645-6a5b-4345-8249-0dbfedc04f79", + "createdTime": "2020-10-26T07:49:09.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "afdeba94-846c-4259-957e-0fc9bff8fd58", + "createdTime": "2020-10-26T07:47:44.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "559a3404-fe97-4b2e-a5af-a03ca4749fdd", + "createdTime": "2020-10-26T07:47:44.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8ae60ed8-0502-42cc-8bf6-5c03902e0c26", + "createdTime": "2020-10-26T07:47:43.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c9d79f4-589e-46fb-aceb-f56488699835", + "createdTime": "2020-10-26T07:47:42.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9ebd65c-cb07-4133-a685-9f2c944e01fa", + "createdTime": "2020-10-26T07:35:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "95c88a35-f03c-4034-b0c0-b6dc217b5a0f", + "createdTime": "2020-10-26T07:35:44.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d3812cd2-fa5f-46b9-87a9-16e941044d68", + "createdTime": "2020-10-26T07:35:44.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "488f85bc-9dc0-4c02-95e9-4f76e6bbd79e", + "createdTime": "2020-10-26T07:35:43.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5557b7c-1644-4962-a1e9-d2dc4bff0db5", + "createdTime": "2020-10-26T07:27:04.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c0286856-f5cb-4797-bc1e-d910aefc9950", + "createdTime": "2020-10-26T07:27:03.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e4c7e898-1fa8-4db1-9534-ff0a95af142c", + "createdTime": "2020-10-26T07:27:03.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b33784c-55e1-44f3-9b4c-a90c69cefb71", + "createdTime": "2020-10-26T07:27:02.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "542ecc72-2a78-4072-a43d-d4b410e0da65", + "createdTime": "2020-10-26T07:25:35.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f50a80a4-a2d7-4a25-9636-e9ce5c49bec2", + "createdTime": "2020-10-26T07:25:35.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "323fa5a2-73cb-42a1-8253-63f84e25c5fb", + "createdTime": "2020-10-26T07:25:34.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b06006d-27b9-4f49-bd4b-a17d1312db55", + "createdTime": "2020-10-26T07:25:34.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b835e521-8e2e-4220-8a74-db7e0b9d9bff", + "createdTime": "2020-10-26T07:21:09.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5cf5cd53-593f-495c-a893-ebb89c3b41fe", + "createdTime": "2020-10-26T07:21:07.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "902f8cf3-63de-4b5f-9338-97c093f6d0ac", + "createdTime": "2020-10-26T07:21:06.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "555f37f8-243b-4006-aa17-cecb1ea581fe", + "createdTime": "2020-10-26T07:21:06.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6adad14-50a7-4745-b61e-70d3a9188e2f", + "createdTime": "2020-10-26T07:19:29.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dfe0f012-0abc-4984-80ca-c3def488284d", + "createdTime": "2020-10-26T07:19:28.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f3101d8e-6caf-473b-bb21-0e96f2bffd46", + "createdTime": "2020-10-26T07:19:28.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b256490-b2c1-47e8-a953-18456afd2785", + "createdTime": "2020-10-26T07:19:27.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e2271db-75c6-433d-a066-0396b2f12132", + "createdTime": "2020-10-26T02:49:21.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a5137211-9909-4f84-aa28-032063e766da", + "createdTime": "2020-10-26T02:49:14.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8c317e3d-f4d8-47e7-b259-f3e642efb21b", + "createdTime": "2020-10-26T01:58:15.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "46be83d6-7043-454e-849c-b407d711ca6a", + "createdTime": "2020-10-26T01:58:13.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "346c5198-fa76-4df0-aafb-d15e330908c5", + "createdTime": "2020-10-26T01:57:41.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6e1550f-c713-4e01-bd95-76814bfd4034", + "createdTime": "2020-10-26T01:57:39.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3640dae9-418b-4f41-bd15-681395db7946", + "createdTime": "2020-10-24T23:55:29.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56f7e5b3-0cca-4c4e-9530-b95061c681dc", + "createdTime": "2020-10-24T23:55:13.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc95730a-36d3-4fb0-a1be-1938ee725188", + "createdTime": "2020-10-24T23:54:50.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6c424ac-4808-4fd2-a3ef-4b29ce3b7341", + "createdTime": "2020-10-24T23:54:50.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "413a25dd-5a82-49c3-849d-8b3e166de449", + "createdTime": "2020-10-24T23:53:48.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f755afbf-eba6-431a-ab6f-c11584b04556", + "createdTime": "2020-10-24T23:53:50.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "af115d99-82a9-44fb-b75c-5c52be45aca4", + "createdTime": "2020-10-24T23:53:48.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b7dd547e-1297-4967-b8c5-05d513941c2b", + "createdTime": "2020-10-24T23:53:48.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1f82a6a0-00a1-4621-9116-8bf6764b3157", + "createdTime": "2020-10-24T23:52:01.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f051d9e3-0559-4747-9166-66ca4cfca77a", + "createdTime": "2020-10-24T23:50:30.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "19bba83e-77e4-46ea-acaf-921c70600463", + "createdTime": "2020-10-24T23:38:03.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8624ead2-78eb-4ade-8cad-ace3af3cbeb6", + "createdTime": "2020-10-24T23:38:03.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2c378e6-7f96-414c-8b19-0502bec51e1f", + "createdTime": "2020-10-24T23:38:03.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "374f5239-73a8-456a-8d27-cb984a63b859", + "createdTime": "2020-10-24T23:38:02.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4c1ea618-06f5-46ab-be55-c64340684e0e", + "createdTime": "2020-10-24T23:37:16.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d908b431-e579-4fd0-9a84-ffe8f8c82a84", + "createdTime": "2020-10-24T23:37:16.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "40a36397-4db4-48db-bbc8-36b2e2de4a65", + "createdTime": "2020-10-24T23:37:16.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5dab5a9a-22a7-4edc-ab45-51285284a949", + "createdTime": "2020-10-24T23:37:07.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f2d93928-3509-4273-9c00-66ab323a1684", + "createdTime": "2020-10-23T23:50:36.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ceb6d3cc-1241-4269-9067-a179df7ba906", + "createdTime": "2020-10-23T08:22:47.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3af46a09-a214-41f2-ba46-ccbf765201f5", + "createdTime": "2020-10-23T08:22:46.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b317ba58-7e13-4c90-b0f2-0837af9bf7c6", + "createdTime": "2020-10-23T08:22:45.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0375b8ce-fd1e-4ac0-8282-7f8f8fcc9220", + "createdTime": "2020-10-23T08:22:44.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "20e2b21e-42cc-4c2c-b71c-b1d1adfd3b89", + "createdTime": "2020-10-23T08:20:59.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b97cf185-ac2a-4dfa-86a8-9cc55083607e", + "createdTime": "2020-10-23T08:20:58.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51ff4088-c15c-46ca-ae2c-69b6405c67b8", + "createdTime": "2020-10-23T08:20:57.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fe421cec-cd3b-48da-8aa4-a6eaf62bf502", + "createdTime": "2020-10-23T08:20:56.466Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6581b4af-f529-41fb-931f-b7aa856c3a65", + "createdTime": "2020-10-23T08:05:34.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "52c62ae6-9679-46f5-923b-47a15c127b75", + "createdTime": "2020-10-23T08:05:33.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2655e945-0e4f-4a51-b8b6-998561ca796a", + "createdTime": "2020-10-23T08:05:32.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e840cc8f-f80a-4d2e-9f08-5a6b85272e22", + "createdTime": "2020-10-23T08:05:31.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d35f50a9-9f10-42e8-a8c0-54ce0e5dd32a", + "createdTime": "2020-10-23T08:03:52.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ddc1aefb-018a-424e-8b1d-3071d23bd32e", + "createdTime": "2020-10-23T08:03:51.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe8d87d6-d926-49d6-8432-794aa3754463", + "createdTime": "2020-10-23T08:03:50.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f6332f14-c439-4130-b73b-aab685c297c6", + "createdTime": "2020-10-23T08:03:49.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55cebda5-af80-42c1-96e2-971cc6fbadf5", + "createdTime": "2020-10-23T07:44:09.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fbd0cbfa-d7d2-472e-8f44-6ac0c758667a", + "createdTime": "2020-10-23T07:44:09.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7d9ee012-f698-41ae-914f-0a76c2f18413", + "createdTime": "2020-10-23T07:44:08.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e605f15-863b-46a7-b1ce-cd52b09b34c9", + "createdTime": "2020-10-23T07:44:07.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9bc6feb-c577-4a3f-9a97-0b663c4ab6a6", + "createdTime": "2020-10-23T07:31:52.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c136482d-01d3-4e0d-88a8-6bdb8b6a8dfd", + "createdTime": "2020-10-23T07:31:51.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ee6e767e-6304-41f0-a095-823c78f25866", + "createdTime": "2020-10-23T07:31:50.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cc4d41cf-7990-4d4b-9dec-ebbf9b87541c", + "createdTime": "2020-10-23T07:31:49.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "abab6dc7-8237-4198-8725-f74d1aa56536", + "createdTime": "2020-10-23T07:29:56.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f498116f-672b-402e-8e92-55e84c6e1469", + "createdTime": "2020-10-23T07:29:55.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82f4d6a7-af47-4473-8bbb-db63d697527e", + "createdTime": "2020-10-23T07:29:54.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a637ae1-10ce-4ab0-98af-46000b7885d7", + "createdTime": "2020-10-23T07:29:52.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da96c5df-ab18-42ab-8739-8018cc933a92", + "createdTime": "2020-10-23T07:22:11.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7a1675ab-6fd4-422b-8deb-dae3c1e1b1e1", + "createdTime": "2020-10-23T07:22:10.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c94fb9d0-c91e-4e5f-b027-b1872926b891", + "createdTime": "2020-10-23T07:22:09.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "91de1491-a301-4450-a829-8d197cfcaaac", + "createdTime": "2020-10-23T07:22:08.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2b683d2-08f4-4703-b493-efe2267ca116", + "createdTime": "2020-10-23T07:20:16.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "688cb033-0121-4fbb-9556-67e91240d5e8", + "createdTime": "2020-10-23T07:20:16.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ee024197-f65d-405e-832f-b874acb79f6f", + "createdTime": "2020-10-23T07:20:15.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a64b07e-6e50-4ab5-a7c0-73575124e1bc", + "createdTime": "2020-10-23T07:20:14.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e71f50b8-2a46-430b-9b3c-e95de1a2da67", + "createdTime": "2020-10-23T01:21:30.497Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "526bfd1d-891d-4968-bff4-cc36560898d6", + "createdTime": "2020-10-23T01:21:29.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8361b1db-d9ea-42fc-a063-6dde8f93ea57", + "createdTime": "2020-10-23T01:21:28.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1e3a6db-eeed-4a35-aac4-7309ecb8393c", + "createdTime": "2020-10-23T01:21:25.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaf935d4-ee57-4213-b16a-0dafb71e3f65", + "createdTime": "2020-10-23T01:10:17.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9554520f-49e8-45bb-8677-578d6e8075bb", + "createdTime": "2020-10-23T01:10:17.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b2cab943-4365-4a36-9d63-e9d4c3fcd1bc", + "createdTime": "2020-10-23T01:10:16.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "707ecfa4-b924-4c92-b3ee-2ad8792bd08f", + "createdTime": "2020-10-23T01:10:15.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76257b87-0255-4b3a-89b9-c7578d82ae8c", + "createdTime": "2020-10-23T01:07:02.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0e365e5b-a4c5-4dc8-81c4-be2e01c663ea", + "createdTime": "2020-10-23T01:07:01.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a068361-4499-4c09-aea3-a5c99e8f6f02", + "createdTime": "2020-10-23T01:07:01.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "efa984b3-fe33-46c7-8fd6-e48ff6afd056", + "createdTime": "2020-10-23T01:07:00.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51850112-6446-45d0-96b9-da68ecbb5e3e", + "createdTime": "2020-10-23T00:59:57.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d13fbf1c-4e80-4e42-9a9e-4c42ab13b716", + "createdTime": "2020-10-23T00:59:56.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ebb1117c-b5e7-4e37-99e0-4330c78afb9f", + "createdTime": "2020-10-23T00:59:55.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "10f79252-20a5-4c1d-be06-ff9740b94823", + "createdTime": "2020-10-23T00:59:54.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f1ce0c8f-3337-48dd-bc0e-27dbad5ba0a8", + "createdTime": "2020-10-23T00:56:43.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17fe8fd8-0993-4c25-90ef-5b6b62e3803b", + "createdTime": "2020-10-23T00:56:42.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "430688cf-9ee6-4d00-a1a4-9cbd2863c548", + "createdTime": "2020-10-23T00:56:41.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2864b245-200b-4fcf-b4ea-73103b7530f4", + "createdTime": "2020-10-23T00:56:40.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f51f253-f1b1-4297-8530-c6a277d120cb", + "createdTime": "2020-10-22T23:36:36.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64a275b4-6286-4ec6-bdbd-fbe921ac8f77", + "createdTime": "2020-10-22T17:40:57.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b90ec4b6-3314-4317-932b-3c1638906f6a", + "createdTime": "2020-10-22T17:20:11.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5d8f6982-a914-4ea6-898e-0798f8dc72a0", + "createdTime": "2020-10-22T17:20:11.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eac8e9d4-a1bf-49e7-b7a2-0551984e3e0b", + "createdTime": "2020-10-22T17:20:10.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8e862670-c00e-4a1e-bec9-ae4c6cdf735c", + "createdTime": "2020-10-22T17:20:09.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a8954d0-a8df-4f91-8917-8649c7a1c145", + "createdTime": "2020-10-22T17:16:37.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c929d7f6-7f60-4b72-8d8c-f891acdee17d", + "createdTime": "2020-10-22T17:16:36.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e26497f2-3256-4903-80e1-8de3aa045652", + "createdTime": "2020-10-22T17:16:35.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e6034b29-6336-41cb-96ab-52b839f98302", + "createdTime": "2020-10-22T17:16:35.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b8103b8-9184-45fe-b419-3cb853829023", + "createdTime": "2020-10-22T17:09:36.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "46861ec2-3d1f-4c69-a6f1-17d563ba3d25", + "createdTime": "2020-10-22T17:09:35.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bea211ab-2a1d-4183-9cc6-4351fc980a46", + "createdTime": "2020-10-22T17:09:34.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b4edbb6-d9ea-4617-a301-323cedcae2b9", + "createdTime": "2020-10-22T17:09:33.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfaa581e-4ee7-4803-8370-7783cf2c47f5", + "createdTime": "2020-10-22T17:06:04.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "447cbc7f-58af-4f31-8eea-82d06b64fc75", + "createdTime": "2020-10-22T17:06:03.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "378fcb70-6e39-4a0b-b898-34b696e1f44f", + "createdTime": "2020-10-22T17:06:03.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2247e70b-79c8-4ff0-bfd8-cd7baba51498", + "createdTime": "2020-10-22T17:06:02.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f89be604-7eb5-4d40-95d3-0980552bbb92", + "createdTime": "2020-10-22T16:56:54.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "02f71272-312d-4b74-b413-62872bf79dda", + "createdTime": "2020-10-22T16:56:53.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5d6433b7-2ebf-4fa8-ba87-ac6a1bde6567", + "createdTime": "2020-10-22T16:56:52.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f57a3f82-db18-4904-8b85-14db84bbdd90", + "createdTime": "2020-10-22T16:56:51.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85256bf8-3c73-415e-96e3-e2bf6e720095", + "createdTime": "2020-10-22T16:48:02.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7fc2a24d-2ecb-4a35-9f2d-695a261b8309", + "createdTime": "2020-10-22T16:48:01.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "440280f1-dc97-4104-ac74-c0033fdd30bb", + "createdTime": "2020-10-22T16:48:00.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "570af2d0-50bf-40d1-a89f-26b2a7bef16c", + "createdTime": "2020-10-22T16:47:59.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6314fd82-23a1-4169-a596-3d24c3ae855b", + "createdTime": "2020-10-22T16:44:23.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4d5bc138-d4a5-4977-9a25-c77217947a91", + "createdTime": "2020-10-22T16:44:23.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4b63bdee-2c74-471f-8995-5ac63b2d3a44", + "createdTime": "2020-10-22T16:44:22.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "05e90a09-1c44-4e33-a9ff-1f2d5938d4a6", + "createdTime": "2020-10-22T16:44:21.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e290576-154e-4544-a446-3c1273f90a55", + "createdTime": "2020-10-22T16:36:07.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6b83a27b-bc08-4537-8d0a-d11b87a89489", + "createdTime": "2020-10-22T16:36:07.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7d153bce-4726-4e4c-a74c-2b260aa2645b", + "createdTime": "2020-10-22T16:36:06.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "38547b82-2492-4574-8b63-c563bfa40560", + "createdTime": "2020-10-22T16:36:05.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1e4c293-8ddd-4002-ae72-0528605fd407", + "createdTime": "2020-10-22T16:32:28.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f33f9b33-69d9-42ae-98d9-3b9d4f38543b", + "createdTime": "2020-10-22T16:32:27.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "38295389-9e2f-42a2-8cc9-4eb8facd47d7", + "createdTime": "2020-10-22T16:32:26.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "264c0e98-b99e-4d8c-b4a4-e7a39dde9c78", + "createdTime": "2020-10-22T16:32:25.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3de01d28-0788-443a-9c7a-717b5237abfe", + "createdTime": "2020-10-22T10:30:24.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1253d4b-3f14-4d76-b555-4086fbcf3b66", + "createdTime": "2020-10-22T09:34:29.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86116721-d74f-44b4-b660-c660150bc6cd", + "createdTime": "2020-10-22T09:33:51.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43b71917-d9ea-48b2-bbd5-31450b42e9c8", + "createdTime": "2020-10-21T21:42:37.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d5e5e5f7-5a5e-4488-9a03-a722c11e8743", + "createdTime": "2020-10-21T21:42:37.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "66d68377-b9ea-41e8-9d1c-19f369fa2342", + "createdTime": "2020-10-21T21:42:36.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5294fd3e-5826-45be-b9c9-0bb556d3e99b", + "createdTime": "2020-10-21T21:42:36.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "336ab90c-8a4c-4b03-b4b9-e0a3accf7885", + "createdTime": "2020-10-21T21:37:13.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "50a63795-d631-43ae-9a05-d744df4b986d", + "createdTime": "2020-10-21T21:37:13.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a21e2ccf-b5ad-4bd6-805c-1659dcdf0e1b", + "createdTime": "2020-10-21T21:37:12.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d8e40ab-24ce-45c3-bcd0-64850a1dd895", + "createdTime": "2020-10-21T21:37:12.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d28de1e8-24e8-463a-824f-cf7b1c61f1ce", + "createdTime": "2020-10-21T21:00:47.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23efe57b-4c7d-4261-9a46-b79cf2f627a1", + "createdTime": "2020-10-21T21:00:47.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5d34037-a423-48df-b651-6d87dd54e7c3", + "createdTime": "2020-10-21T21:00:46.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "55480715-243c-4ef6-8571-4666bcfa7aff", + "createdTime": "2020-10-21T21:00:46.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1607ffa8-044d-40e1-aa81-2337b1d35ad1", + "createdTime": "2020-10-21T20:59:25.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "40c7d42b-6d49-43fe-a4da-04a30be4050f", + "createdTime": "2020-10-21T20:59:25.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f95f172a-7923-46c9-b387-1934715b365e", + "createdTime": "2020-10-21T20:59:24.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54b14cb6-8c15-413c-b33e-45091b658ff6", + "createdTime": "2020-10-21T20:59:18.46Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9bbd66a-e695-425a-91fe-f24fca53f28c", + "createdTime": "2020-10-21T20:53:05.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-01T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "name": "detection-config", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + } + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/feedback/metric/query?$top=20\u0026$skip=20" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", + "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", + "RandomSeed": "1508269142" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(True).json similarity index 55% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(True).json index 8ade2061cff4..cab93a2ef130 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(True).json @@ -5,12 +5,12 @@ "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", + "Authorization": "Sanitized", "Content-Length": "51", "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "e5417a798f33ca76ff26174593fb06ca", + "traceparent": "00-3f4400360c276943b31a1eadd5c14ce5-dc16fc1aa50ed44b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b5b5cb87611911a04b0aaa58e82183e3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -18,17 +18,54944 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fcf1b403-fb02-4ea1-af2f-ab1736373fa5", - "Content-Length": "1485571", + "apim-request-id": "7cb68529-0e14-4f24-9c27-d50ffaec29e6", + "Content-Length": "2690396", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:43 GMT", + "Date": "Tue, 19 Jan 2021 17:42:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "355", - "x-request-id": "fcf1b403-fb02-4ea1-af2f-ab1736373fa5" + "x-envoy-upstream-service-time": "463", + "x-request-id": "7cb68529-0e14-4f24-9c27-d50ffaec29e6" }, "ResponseBody": { "value": [ + { + "feedbackId": "47a18850-ffbd-480c-88d7-5fc5366268d3", + "createdTime": "2021-01-19T17:42:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "008612a2-6724-4a17-b760-5f86d8d02f2f", + "createdTime": "2021-01-19T17:42:45.087Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ede44c96-2193-4d80-b81a-d6183215fb5d", + "createdTime": "2021-01-19T14:00:57.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1015a268-3ee0-4135-878a-3f6059a99558", + "createdTime": "2021-01-19T13:58:56.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3cb5140c-0d33-4c24-a790-57f93557634d", + "createdTime": "2021-01-19T14:00:56.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bee3b9b-778e-4a3d-8b7c-00a29aa8ebca", + "createdTime": "2021-01-19T14:00:55.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8422038-0e71-4487-b17b-53633b2b9378", + "createdTime": "2021-01-19T14:00:54.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9d0de277-14a1-4bf8-a754-6c18ad1b0ad3", + "createdTime": "2021-01-19T13:56:52.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cbcafbfb-8582-48d3-af3b-649cc9e19602", + "createdTime": "2021-01-19T14:00:53.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9aa1d4cd-ddaf-43c8-8086-8c32f19794a9", + "createdTime": "2021-01-19T14:00:52.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "febcf3f5-b9f6-4711-9df4-d889dd4f3d1e", + "createdTime": "2021-01-19T14:00:48.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "08b88acb-8688-4308-bc0d-3455b6559456", + "createdTime": "2021-01-19T13:57:47.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "347631bc-5265-411a-a2d9-c0fc1ec1ea04", + "createdTime": "2021-01-19T14:00:47.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0806cb5-451c-4ce0-9771-30582cfe35b9", + "createdTime": "2021-01-19T14:00:47.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "15bcfb63-bc14-42ec-aee9-061839326752", + "createdTime": "2021-01-19T14:00:46.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "917acc72-86ef-4e6e-9adc-15df2cacfc5c", + "createdTime": "2021-01-19T14:00:45.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "28f8535d-6378-43d5-9f6e-f5d232c6a7b5", + "createdTime": "2021-01-19T14:00:45.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b0c1c7d-477e-42c4-8ce7-c5502d45e1e4", + "createdTime": "2021-01-19T13:57:42.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d367f764-e2d7-4b28-a5f3-74cee2895fb7", + "createdTime": "2021-01-19T13:56:39.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "697baf50-a35e-4744-b648-c0c461006f86", + "createdTime": "2021-01-19T13:58:32.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "294c76f4-ef62-4538-b940-b590fa8496a2", + "createdTime": "2021-01-19T13:59:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7df6e3fc-19fe-4349-974a-e6646dd85813", + "createdTime": "2021-01-19T13:58:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "63fba0dd-4137-40f9-9740-076f7c556d8c", + "createdTime": "2021-01-19T13:58:28.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6481394f-7249-42d2-9005-9d5b6e5f7bc3", + "createdTime": "2021-01-19T13:59:22.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3d1df1bd-072a-4c32-962c-86e6f5474bab", + "createdTime": "2021-01-19T13:58:17.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9ccf6e9-0470-4fb7-9231-314c7ef2f7df", + "createdTime": "2021-01-19T13:59:02.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9341c2b-c759-408f-ab33-9b9cb6f8024f", + "createdTime": "2021-01-19T13:56:59.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d6aea3f0-9c36-40a3-8229-5124633136c3", + "createdTime": "2021-01-19T13:59:28.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5e9ea17-9c54-4676-a275-6b83f77fb4ba", + "createdTime": "2021-01-19T13:59:28.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1e40a33c-f757-4a58-841d-896f5d818057", + "createdTime": "2021-01-19T13:59:27.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a3527c98-0e5a-4bd7-8bbd-ffa8e00292c9", + "createdTime": "2021-01-19T13:59:26.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "09f5c613-d0bc-433c-8acb-c2266f2790ea", + "createdTime": "2021-01-19T13:59:26.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b7cd843-8394-4074-a60a-510d3a718295", + "createdTime": "2021-01-19T13:59:21.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a83f1b1-5e50-48dc-9cb9-b2d121dd2271", + "createdTime": "2021-01-19T13:59:20.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c4777788-244c-41a9-aed0-48f8ab2a1833", + "createdTime": "2021-01-19T13:59:20.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7893084d-e15c-4313-9ed1-883b871ab0d0", + "createdTime": "2021-01-19T13:59:19.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "af8ba216-402f-4d14-87ab-28b2f2c7213c", + "createdTime": "2021-01-19T13:59:18.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b419dd53-fcf9-4fda-9102-2a0d2e8c1122", + "createdTime": "2021-01-19T13:59:01.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b2887c32-1721-4dba-9338-c03bb97efd91", + "createdTime": "2021-01-19T13:59:01.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30d865ed-4024-46f6-9f03-0f3fcc00906a", + "createdTime": "2021-01-19T13:59:00.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "874db9f6-b4f8-4846-b993-9617c821fbd0", + "createdTime": "2021-01-19T13:59:00.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "346715b1-9065-4d99-802e-27ffebf88787", + "createdTime": "2021-01-19T13:58:59.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1009a511-6fc7-41c9-b055-1d14d11c946c", + "createdTime": "2021-01-19T13:58:55.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad7fe893-4057-459d-b2e0-918ede832075", + "createdTime": "2021-01-19T13:58:54.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "65c8f3ee-ff50-4df0-8053-458efce117a6", + "createdTime": "2021-01-19T13:58:54.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74a8fb65-8ce0-4c3f-ba8b-6193acc9795a", + "createdTime": "2021-01-19T13:58:53.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1eb74126-cecf-4c98-99be-fffb3f80cb0c", + "createdTime": "2021-01-19T13:58:52.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d3da7e5-dd6e-4b04-ac53-c7e3d10b8f20", + "createdTime": "2021-01-19T13:58:31.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f9b93775-d528-41f6-89a6-a96b16d9faae", + "createdTime": "2021-01-19T13:58:31.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "848ed39c-e513-43ab-9054-db022d31d0d5", + "createdTime": "2021-01-19T13:58:30.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "69677d63-a330-48f7-9d00-39f63a52391c", + "createdTime": "2021-01-19T13:58:30.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5a548f36-47b2-493d-b0e4-eff6a4befd89", + "createdTime": "2021-01-19T13:58:29.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "492f4b22-32d6-4137-9dc5-d906e5dbcb96", + "createdTime": "2021-01-19T13:58:27.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cb3ae15-36c0-4d37-8f4d-6d8aa8215159", + "createdTime": "2021-01-19T13:58:27.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "039781d3-ad58-4b87-98f2-85be18785d2b", + "createdTime": "2021-01-19T13:58:27.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85ec2cdd-2603-461a-86ae-02c34fcb1fce", + "createdTime": "2021-01-19T13:58:26.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e72d127c-6637-4872-8751-85c8d53edc52", + "createdTime": "2021-01-19T13:58:26.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2be22f8-59ff-4c31-b42a-04f992409eff", + "createdTime": "2021-01-19T13:58:26.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "497df40f-09a9-4d89-8e24-edc9f13be9f4", + "createdTime": "2021-01-19T13:58:26.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "599dd42a-428f-49b0-be60-dea735103d86", + "createdTime": "2021-01-19T13:58:21.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d48bbdc3-6f15-4ea7-97c4-324153b6a4c2", + "createdTime": "2021-01-19T13:58:20.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a04486f-3165-4d04-ae26-1523ca58df36", + "createdTime": "2021-01-19T13:58:19.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e9f3ddbb-f3b5-4bad-b91c-c572aca698ec", + "createdTime": "2021-01-19T13:58:17.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a43b85c-40f0-4fe9-825b-33e45c10132c", + "createdTime": "2021-01-19T13:58:16.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "57c8339a-73f2-42bd-88f0-c66c5a8f2e9c", + "createdTime": "2021-01-19T13:58:15.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "64cb7e02-126b-4820-9448-9d0c2d0dccef", + "createdTime": "2021-01-19T13:58:15.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a08f3fc4-19c1-47c6-a4b4-9ac75f1a0f33", + "createdTime": "2021-01-19T13:58:14.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ad65cfa-ecc8-4922-8dca-c0046f994b2f", + "createdTime": "2021-01-19T13:57:46.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "52477c92-e87e-419f-a9e9-ffa465cb2357", + "createdTime": "2021-01-19T13:57:45.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbdba9f4-523c-4c36-be5a-856942cd705a", + "createdTime": "2021-01-19T13:57:45.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "95e09ad0-0d5a-4a4a-8625-cd963fa324c3", + "createdTime": "2021-01-19T13:57:44.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "44448b96-8ac6-47fe-8168-15391c41f6ed", + "createdTime": "2021-01-19T13:57:43.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c55df2c-fa46-4ce2-8fe8-aedd79e648f8", + "createdTime": "2021-01-19T13:57:41.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "09a7c3cc-5d33-4a7d-bd9c-a448ec473d3b", + "createdTime": "2021-01-19T13:57:41.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2205c32c-ca6c-4803-b1dc-5027694a1fc0", + "createdTime": "2021-01-19T13:57:40.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0da17f6a-4c32-4423-a307-06ecfb336535", + "createdTime": "2021-01-19T13:57:40.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4878bdbd-098d-41e4-94fd-4a9515248699", + "createdTime": "2021-01-19T13:57:39.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb6086a2-c70d-4df6-b846-2c40f9da9e59", + "createdTime": "2021-01-19T13:56:59.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d0fa41be-d2fc-4496-ae94-beac708855fc", + "createdTime": "2021-01-19T13:56:58.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8b0f8a2-7a0f-4cba-a1a5-07ed3ee034e4", + "createdTime": "2021-01-19T13:56:57.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "baa237db-ab51-42ca-971e-e6bd0c1fb8eb", + "createdTime": "2021-01-19T13:56:56.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6e7543d2-6281-45a8-a3fe-6017e57a5c40", + "createdTime": "2021-01-19T13:56:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1ea80d8-df5d-4b90-856f-aa9a7e0c8ece", + "createdTime": "2021-01-19T13:56:52.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b933dcd1-e3ce-4a15-9812-c9c2921f7669", + "createdTime": "2021-01-19T13:56:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afe3ac5a-7df3-499a-bf56-1848c38ce103", + "createdTime": "2021-01-19T13:56:50.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0450183-0ec4-46da-992b-07da1067cce2", + "createdTime": "2021-01-19T13:56:49.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "eb010e35-b77b-49c6-96f1-2510b41e7d24", + "createdTime": "2021-01-19T13:56:49.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9d7aab6-5925-4223-9ced-7a9988ff6a13", + "createdTime": "2021-01-19T13:56:38.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "04380f9a-4c5c-4f9c-9b63-8191f277c19d", + "createdTime": "2021-01-19T13:56:37.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8b44e4f1-6294-4926-861a-eb970a8da13b", + "createdTime": "2021-01-19T13:56:36.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "898ed7e4-e181-4b3f-9ad8-cfbc6a74362a", + "createdTime": "2021-01-19T13:56:35.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bbcc749c-7f5c-49d9-97ad-b2d73438bf9a", + "createdTime": "2021-01-19T13:56:35.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69d198b4-3d86-4d4a-856c-fb34c0b012c1", + "createdTime": "2021-01-19T13:56:30.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b00fba3-e39a-4ff7-ac62-e983778ec87d", + "createdTime": "2021-01-19T13:56:30.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0b507d2-8192-4db3-9e99-47c8dd97b7c6", + "createdTime": "2021-01-19T13:56:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9c827ea6-ed2a-4138-8e3c-b96b6f869e4a", + "createdTime": "2021-01-19T13:56:28.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8f811069-066c-43ba-b046-2db6e8179bb7", + "createdTime": "2021-01-19T13:56:27.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d957ad4-77ff-4edf-ae39-baf4741ae2fc", + "createdTime": "2021-01-19T13:56:26.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f3798d0-8f23-4e23-8ac2-81df405a4887", + "createdTime": "2021-01-19T13:53:52.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ae36ed2-fc09-4349-b4cc-a88ea0f1e08f", + "createdTime": "2021-01-19T13:51:59.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a8aa20-0c12-42e7-9a64-8f8c407135fd", + "createdTime": "2021-01-19T13:51:57.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb69c325-6ecf-4124-8512-edd78b28231c", + "createdTime": "2021-01-19T13:51:54.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ac5e48c-b6b5-46b6-930c-2715b987417c", + "createdTime": "2021-01-19T13:51:02.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "56fac71a-b794-48ff-b062-da1d396c67e7", + "createdTime": "2021-01-19T13:50:49.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d964bafc-c6ba-4309-8673-7e15e71f1685", + "createdTime": "2021-01-19T13:49:15.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3565340-d655-45b9-800f-d91e049c76f8", + "createdTime": "2021-01-19T13:48:49.272Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc3c5500-b908-4b7c-ab57-5f32b959b214", + "createdTime": "2021-01-19T09:10:05.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1b47c303-964f-4485-b638-3e1f59347001", + "createdTime": "2021-01-19T09:10:05.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8418d4a8-7952-497f-b99a-42fcdfe76e96", + "createdTime": "2021-01-19T09:10:04.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5dbe01a-4789-4684-a6e0-74b8bd9e12a4", + "createdTime": "2021-01-19T09:10:04.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "948a5f11-7cff-4c40-aa65-a40cbf8b3fe9", + "createdTime": "2021-01-19T09:06:10.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "26d5d32c-da25-4aec-b18c-92e11394113c", + "createdTime": "2021-01-19T09:06:09.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0b2a938d-11ad-471d-b2aa-83b5c08988a7", + "createdTime": "2021-01-19T09:06:09.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06055519-8385-4609-a994-0fcb4bfd9586", + "createdTime": "2021-01-19T09:06:08.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5855d515-f18a-49e5-b550-2742d977b17b", + "createdTime": "2021-01-19T08:58:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "748476b8-6937-46fb-a180-2ac88d0d74e7", + "createdTime": "2021-01-19T08:58:38.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6747aad3-7410-4284-82c6-1e60279a0974", + "createdTime": "2021-01-19T08:58:37.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "335205bf-97b6-4008-8b6e-7bf5924df34f", + "createdTime": "2021-01-19T08:58:36.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761564b8-7a84-4625-9bd4-bf2d0d93a97b", + "createdTime": "2021-01-19T08:54:59.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c1542c5-8d4f-42a8-bf5e-d93e0a1b323a", + "createdTime": "2021-01-19T08:54:58.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3387fd61-0bb8-4694-9026-1284bb7d7391", + "createdTime": "2021-01-19T08:54:58.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a2c4398-eb02-4a9d-a4ee-296d0f8e9ba1", + "createdTime": "2021-01-19T08:54:57.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3675b2c3-a11f-4aad-8402-7a0c71c105d2", + "createdTime": "2021-01-19T08:45:45.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45dbb823-45c6-4e67-8554-c18856404c86", + "createdTime": "2021-01-19T08:45:45.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe055248-219f-44ee-a16c-404bbf167d27", + "createdTime": "2021-01-19T08:45:44.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "df531156-b7ad-4469-9e5a-c463882dbc61", + "createdTime": "2021-01-19T08:45:43.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00b00aa3-2317-4678-b8ad-e5d6a2c15c15", + "createdTime": "2021-01-19T08:35:35.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23b1e4f5-2c9c-4b6d-8071-efeb18cf8a65", + "createdTime": "2021-01-19T08:31:26.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cda57caf-5533-497e-895a-1f2492fb02de", + "createdTime": "2021-01-19T08:24:00.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "93153303-1149-4252-8b14-d4a637585e01", + "createdTime": "2021-01-19T08:35:34.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b8c142f-1e9f-4506-8e4b-569ce88acbf9", + "createdTime": "2021-01-19T08:35:33.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2f57064c-8bcd-4863-82e4-c1151e007b74", + "createdTime": "2021-01-19T08:35:32.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dd116d1d-95ba-4415-bd69-25e85bd3f9b5", + "createdTime": "2021-01-19T08:31:25.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b161f8e0-6d9d-4581-aa93-590f07fbdb84", + "createdTime": "2021-01-19T08:31:25.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f39476fd-e1d1-410b-82ac-98184393e784", + "createdTime": "2021-01-19T08:31:24.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "275c3d77-c699-4ab0-b82f-8df43dfdf59e", + "createdTime": "2021-01-19T08:23:59.912Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a7a085b-a677-459d-bcf8-0b0ddb5f5942", + "createdTime": "2021-01-19T08:23:59.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "67ac83b7-7653-4762-849e-4ce0257adb23", + "createdTime": "2021-01-19T08:23:58.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93a4c768-3a6a-4fcc-b0a4-ce6f7d030e48", + "createdTime": "2021-01-19T08:20:28.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36373d9e-ef96-40f1-9f1a-6286448e91a0", + "createdTime": "2021-01-19T08:20:27.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "19ff0c44-54f4-499f-93c1-e8d895a8d05e", + "createdTime": "2021-01-19T08:20:26.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1af2aacb-2f8b-4932-9a5d-d56501640894", + "createdTime": "2021-01-19T08:20:25.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7315a56-e93c-4a17-a6bd-1595d36b1e1e", + "createdTime": "2021-01-19T01:07:39.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2a2feaf4-bb65-48cd-afb0-72f45abbaaee", + "createdTime": "2021-01-19T01:07:39.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e808d27-075b-4b47-85c7-b9e90e3eba71", + "createdTime": "2021-01-19T01:07:38.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9683141-a0b3-40ca-b49a-c20f05e81e7f", + "createdTime": "2021-01-19T01:07:38.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e280721-906e-4b0a-af2d-29446b7ee17f", + "createdTime": "2021-01-19T01:07:37.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe1f385d-6137-49b5-bc18-2324494c5ce5", + "createdTime": "2021-01-19T01:07:37.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "24d2947d-c23c-4566-8d2d-5a8c1cde840d", + "createdTime": "2021-01-19T01:07:33.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ae07c997-4a0c-47c1-90bf-2a0b525f77d2", + "createdTime": "2021-01-19T01:07:32.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c06aa8b0-1355-471e-bb7a-97d9bd61228d", + "createdTime": "2021-01-19T01:07:32.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2487e600-1fcd-48b4-a1a5-5426bec32877", + "createdTime": "2021-01-19T01:07:31.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd743465-f3c8-43ec-8ed4-848bd566ed9d", + "createdTime": "2021-01-19T01:07:31.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fac408f0-672f-48b7-85bf-497f2fc4419c", + "createdTime": "2021-01-19T01:07:30.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd2b4346-d161-4de2-a858-67b634036640", + "createdTime": "2021-01-19T01:07:01.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a9304316-1e78-48b0-9168-4b6a4274cac8", + "createdTime": "2021-01-19T01:07:00.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "121fbc8e-f0f4-41f4-8ab4-712f1ce7085e", + "createdTime": "2021-01-19T01:07:00.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7651503f-461a-477e-9729-c92b1ba74013", + "createdTime": "2021-01-19T01:06:59.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e05d6efe-fae3-4cc2-84ad-37f500714da8", + "createdTime": "2021-01-19T01:06:58.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "45aedc28-d13a-4731-9147-65405d081339", + "createdTime": "2021-01-19T01:06:58.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d1f4f3c-97ea-4d24-9052-cc6be9529ab0", + "createdTime": "2021-01-19T01:06:53.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a811584f-053c-4789-9eaa-d754e72577f9", + "createdTime": "2021-01-19T01:06:53.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1c8dc050-fc78-465e-8ad8-6ff80261e46d", + "createdTime": "2021-01-19T01:06:52.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0af352a-0ad9-494f-9860-f2535d6c9550", + "createdTime": "2021-01-19T01:06:51.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "28742aea-eed2-4416-88be-65dd5d40ae70", + "createdTime": "2021-01-19T01:06:51.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a44c8424-3977-474e-bbbd-bb0124f0eb30", + "createdTime": "2021-01-19T01:06:50.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7a82848-2a4b-46c3-aabe-c7dd92635c57", + "createdTime": "2021-01-19T01:06:49.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5939f944-879e-420a-9082-c1b8e8c622d4", + "createdTime": "2021-01-19T01:06:49.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "243043b9-446e-4526-86cb-f1e17d12243d", + "createdTime": "2021-01-19T01:06:48.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5111ce69-39c0-47b6-b1d3-e1022f67be4d", + "createdTime": "2021-01-19T01:06:47.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6aeb5f11-665c-4680-b395-30475f19a5fe", + "createdTime": "2021-01-19T01:06:47.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "367dde79-f8cb-49be-87e5-805ebd4240bb", + "createdTime": "2021-01-19T01:06:46.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ae5bd15-5ef8-4655-8e2e-2a369da8c1c4", + "createdTime": "2021-01-19T01:06:42.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "25e35e33-4dbc-41a9-87e5-200cc68a20c0", + "createdTime": "2021-01-19T01:06:42.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e9897081-dc5b-4521-8075-be7e719bbbda", + "createdTime": "2021-01-19T01:06:42.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b363b009-3f17-4e98-8bab-27bad07da52c", + "createdTime": "2021-01-19T01:06:41.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "49caaf15-00dd-489d-927c-c20621f17613", + "createdTime": "2021-01-19T01:06:41.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0511533-92a8-4bdf-ac16-8543e4f5cd5f", + "createdTime": "2021-01-19T01:06:40.922Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ac0d4586-fb21-4d48-abdf-f77e7cc65559", + "createdTime": "2021-01-19T01:06:40.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b4599f09-d209-423b-b030-2d6590fcbcf7", + "createdTime": "2021-01-19T01:06:40.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e5ed2cd9-3df7-4e55-b6af-29972bf07803", + "createdTime": "2021-01-19T01:06:40.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f25d3b8f-33a5-4363-ab36-74551409eb12", + "createdTime": "2021-01-19T01:06:39.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0e55feb1-60a1-4791-b661-5130c6bcc2c0", + "createdTime": "2021-01-19T01:06:39.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec7ef9b7-b606-4cf5-9c6f-ac9081d9e439", + "createdTime": "2021-01-19T01:06:38.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef352772-2821-4c20-9113-023fd9d9e8a6", + "createdTime": "2021-01-19T01:06:34.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1279c7c8-4d76-46bc-ab06-620923fd5768", + "createdTime": "2021-01-19T01:06:33.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "86317b4c-7c5b-41c5-83bb-c20f3da93686", + "createdTime": "2021-01-19T01:06:32.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dc284e2a-ffbe-461e-9658-8bdd6e5fac47", + "createdTime": "2021-01-19T01:06:31.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "65e59d89-efbb-4335-8acf-ca106f0d00c3", + "createdTime": "2021-01-19T01:06:31.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9afb068b-f48f-4084-8eec-b32f4da14a14", + "createdTime": "2021-01-19T01:06:30.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baa470a3-6222-43ff-a2bb-507145eca70b", + "createdTime": "2021-01-19T01:06:29.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4e62d072-99f5-4d43-befa-0b3bd28bf60f", + "createdTime": "2021-01-19T01:06:28.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "94cbfee6-d0d5-47e9-9cf3-7438498e374c", + "createdTime": "2021-01-19T01:06:27.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "076e455b-a29b-44ce-8c3d-aa550813168f", + "createdTime": "2021-01-19T01:06:27.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9665b1f3-dab0-4427-9de8-632d7c8e9ecb", + "createdTime": "2021-01-19T01:06:26.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "37cc7d7a-ef74-4f5b-b967-7a23b53fc7c4", + "createdTime": "2021-01-19T01:06:26.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f115db2-4994-4c33-87d7-0f682a62a961", + "createdTime": "2021-01-19T01:06:22.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "44c5cbe0-feba-450f-8263-0fe161072c5e", + "createdTime": "2021-01-19T01:06:21.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "82bde737-b216-4246-9ed7-cc65305296bf", + "createdTime": "2021-01-19T01:06:21.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e7e889fb-d1a4-4642-87ad-1abdd7aa1cd3", + "createdTime": "2021-01-19T01:06:20.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "27de048b-a8db-4e84-85f1-b483be33a89d", + "createdTime": "2021-01-19T01:06:20.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a89f88bf-ea3a-4345-a12e-ed9876417391", + "createdTime": "2021-01-19T01:06:19.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "546674b2-f3c6-47bc-97be-569b576e00d6", + "createdTime": "2021-01-19T01:05:56.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a7dc71d2-bf2a-4431-945d-9259cc6db368", + "createdTime": "2021-01-19T01:05:55.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7514b0e-94be-4ce6-879b-745bca8c6c24", + "createdTime": "2021-01-19T01:05:55.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54cbc164-b48b-4f24-9d59-9e3e86145b06", + "createdTime": "2021-01-19T01:05:54.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cdcc44cf-a69e-4b39-b843-acbf281286cf", + "createdTime": "2021-01-19T01:05:53.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2756fdd1-4f1b-4c6e-9607-a0ab67874027", + "createdTime": "2021-01-19T01:05:53.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ada6147f-ca9b-4936-81df-b1ee371c42f8", + "createdTime": "2021-01-19T01:05:49.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ce57b74e-7c3b-4028-be96-2549c73dafc6", + "createdTime": "2021-01-19T01:05:48.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cea1fdc7-f132-4f06-a0ff-476b94e5e509", + "createdTime": "2021-01-19T01:05:48.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5799355b-becf-47f6-99b4-bdb63795a49a", + "createdTime": "2021-01-19T01:05:47.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b57d961-f870-43e2-944b-8ce9c3bfc4e3", + "createdTime": "2021-01-19T01:05:46.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "baa75995-bbeb-4ab0-86d3-6c58d7355847", + "createdTime": "2021-01-19T01:05:46.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d20a2d9-2e07-4069-9bd6-1928b6d41939", + "createdTime": "2021-01-19T01:03:19.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2efe071c-7398-4633-94d9-2d7ae2826aae", + "createdTime": "2021-01-19T01:03:18.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "61b7ff71-415d-4907-979f-509fa7d846e1", + "createdTime": "2021-01-19T01:03:17.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3522e47-ea83-419d-a16d-0b4809b8cba8", + "createdTime": "2021-01-19T01:03:16.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bdb54d39-06cb-4605-b472-167767431d7e", + "createdTime": "2021-01-19T01:03:15.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "24d47030-9276-46e3-ad15-b2cf6b95e056", + "createdTime": "2021-01-19T01:03:14.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f76714c-b9fb-43a5-aef1-ba8b30069013", + "createdTime": "2021-01-19T01:03:11.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ee774ea-ea47-4979-8e8a-9542fd5398b1", + "createdTime": "2021-01-19T01:03:10.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d92c9d87-9cc0-48b8-8d5a-e3f393e26f46", + "createdTime": "2021-01-19T01:03:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "15298377-2281-4bc8-a20d-6eaa422ee8e4", + "createdTime": "2021-01-19T01:03:09.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "20ed5127-b5c1-4dc2-a7ce-7bb5fdef3547", + "createdTime": "2021-01-19T01:03:09.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "01efea0a-6ec6-4c54-901f-01b62d679678", + "createdTime": "2021-01-19T01:03:08.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43a0ccbf-078a-429d-bbc9-6419135bd0e0", + "createdTime": "2021-01-19T01:03:08.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "73ce71f6-cbc7-466c-b6f3-7394d04b7196", + "createdTime": "2021-01-19T01:03:08.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93588134-6ffa-454b-9df2-d7d2f0042479", + "createdTime": "2021-01-19T01:03:08.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d75ec0a0-6d07-4d23-a6ed-88b532cc4224", + "createdTime": "2021-01-19T01:03:07.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "957540ac-dff5-4a90-94f2-41b24ef33cd4", + "createdTime": "2021-01-19T01:03:06.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "206abe3d-4321-481b-9b7c-d13a504e74ef", + "createdTime": "2021-01-19T01:03:05.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4f3cb4c-43f6-4933-96ed-e733e24c84df", + "createdTime": "2021-01-19T01:03:01.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a03eb23-3b2b-4904-ab5c-4c2270ac2409", + "createdTime": "2021-01-19T01:03:01.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "303dee09-09b6-48b1-a873-47bfa00c73be", + "createdTime": "2021-01-19T01:03:00.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "746ef064-a093-4d36-a5ce-428a9c39eed9", + "createdTime": "2021-01-19T01:02:59.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5929eeb6-11ca-4ddc-a5c2-7431fd83dadb", + "createdTime": "2021-01-19T01:02:58.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0db045a1-8833-4d3a-81aa-72f6b89757d1", + "createdTime": "2021-01-19T01:02:57.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3aeb2208-c8c8-4741-8dd0-a86ff918d028", + "createdTime": "2021-01-19T01:01:00.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71134de1-f939-4fb5-9dbd-a238d586c637", + "createdTime": "2021-01-19T00:59:37.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8a54d6-bac8-45ba-814c-69b8c5b1c822", + "createdTime": "2021-01-19T00:59:19.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2889ddb1-e7a3-4e0d-9458-c122b88a43f7", + "createdTime": "2021-01-19T00:59:11.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf6a3b4c-13c2-4172-8ff7-7317802ecca0", + "createdTime": "2021-01-19T00:58:54.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "607b7c58-f4f5-4464-945d-98a38f4c4a94", + "createdTime": "2021-01-19T00:58:36.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f70b88af-8bf1-4f5f-ba0a-e5f32f7e8c1b", + "createdTime": "2021-01-19T00:55:42.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f201963-2b59-4eb7-bbab-9cb1f572389a", + "createdTime": "2021-01-19T00:55:40.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "447643f9-c3be-4891-85c4-60c70a5a0458", + "createdTime": "2021-01-19T00:26:16.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "69b90675-238c-4fde-a966-18f1dcaef637", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "315e935c-a01c-4e51-8080-e96642d86f5c", + "createdTime": "2021-01-19T00:26:08.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "023331b6-7d33-4b71-ac45-5ff246c565da", + "createdTime": "2021-01-19T00:25:07.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "095884b3-eab8-45f0-a344-ad06cd097e91", + "createdTime": "2021-01-19T00:26:07.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d3698c88-ec8d-4ddc-8ea4-33be8fa46819", + "createdTime": "2021-01-19T00:21:04.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "49f7dcef-d662-4727-b225-a3e5267b2f00", + "createdTime": "2021-01-19T00:25:00.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5d3bfd0f-9856-41f2-9efd-feb93259a221", + "createdTime": "2021-01-19T00:20:56.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bb84562f-9654-4d71-b3e0-60797d9cf6bb", + "createdTime": "2021-01-19T00:25:38.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "98da1c1f-22bc-45dd-8a3a-04081b6fe773", + "createdTime": "2021-01-19T00:25:37.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "35b1ba05-a532-4eb4-887d-b119f8729493", + "createdTime": "2021-01-19T00:25:31.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "fdfe9ba6-c7ac-4c4b-8868-7d6f96dc3f1f", + "createdTime": "2021-01-19T00:20:29.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "238c89f4-dc13-46db-9b94-24bbe8893c41", + "createdTime": "2021-01-19T00:25:30.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8239b457-436b-458c-9dd2-fac29bba3bb0", + "createdTime": "2021-01-19T00:26:27.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0300d75a-1208-43dd-96ec-46631fb7c93f", + "createdTime": "2021-01-19T00:26:26.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b1312aa-0b77-478b-8a3f-77096ae88bf9", + "createdTime": "2021-01-19T00:26:26.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3a11fcb-4b9b-4705-8ad2-5f7ddfa4016a", + "createdTime": "2021-01-19T00:26:25.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "554f3718-a580-4d6b-991b-4422fa3bfb22", + "createdTime": "2021-01-19T00:26:24.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5256ed10-ac40-4e54-99f6-eef5ba220914", + "createdTime": "2021-01-19T00:26:24.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67ca7e28-f386-422b-90cd-80611c770c56", + "createdTime": "2021-01-19T00:26:20.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "96747e4c-95b4-43e5-921c-dd02bcb30dde", + "createdTime": "2021-01-19T00:26:19.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b694a4da-e693-4f81-86d8-35afa3440e80", + "createdTime": "2021-01-19T00:26:19.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "80783a23-30c9-45fb-ae6a-05a028bd2d9f", + "createdTime": "2021-01-19T00:26:18.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "640753b7-b112-4eb7-8399-63544a8c1f7e", + "createdTime": "2021-01-19T00:26:18.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "78ffbb29-9d05-4b3e-9277-f9ee16450910", + "createdTime": "2021-01-19T00:26:17.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3206ea4-6299-4c1f-9f0f-57f0b9a53c75", + "createdTime": "2021-01-19T00:26:15.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8628b076-f53b-4d0b-ba25-24b4dca1a0c0", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "590d7d1c-00c3-447b-8200-18669c208d79", + "createdTime": "2021-01-19T00:26:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f47acb9e-1271-411c-9a90-c76f568323aa", + "createdTime": "2021-01-19T00:26:13.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3a97111-c591-4f78-97b6-63ffff8b6ba2", + "createdTime": "2021-01-19T00:26:13.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "18dcad3e-0518-4b47-b74e-2a893ddebeb1", + "createdTime": "2021-01-19T00:26:13.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "07533e43-0d3b-4e13-99dc-9db0f88b508f", + "createdTime": "2021-01-19T00:26:12.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbed8283-66f0-4287-a18d-d16fa706c6c2", + "createdTime": "2021-01-19T00:26:12.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8695075-c7cd-410e-a01f-63a756dfcb0e", + "createdTime": "2021-01-19T00:26:11.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e71b64ba-7d85-4b82-828b-539a4ba5d64f", + "createdTime": "2021-01-19T00:26:11.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1956d3da-2770-466c-b8ba-7747bf04b4e1", + "createdTime": "2021-01-19T00:26:07.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a03990f4-320e-4cfd-bf9f-213cd71f18c4", + "createdTime": "2021-01-19T00:26:06.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03b4edff-7680-4cad-a83b-b3bd4dff305a", + "createdTime": "2021-01-19T00:26:06.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "825b9bf9-f6b9-4d42-a621-d5ba28c18c77", + "createdTime": "2021-01-19T00:26:06.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0b36c050-a25f-4ea2-999d-d5c130fb9048", + "createdTime": "2021-01-19T00:26:06.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e83e5302-aff0-46a2-9721-2ce1eee7fb64", + "createdTime": "2021-01-19T00:26:05.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f24e52f2-085f-4611-bb48-0c30a5fc164c", + "createdTime": "2021-01-19T00:26:05.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81511988-652a-4b64-a42b-155cb9a86f46", + "createdTime": "2021-01-19T00:26:04.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d5a4c59e-0cab-453b-b73e-561012e02579", + "createdTime": "2021-01-19T00:26:04.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47a65df3-04cf-4e8a-8960-5911cfa60e33", + "createdTime": "2021-01-19T00:26:04.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e858c12e-2812-4441-abc1-41c6482d7814", + "createdTime": "2021-01-19T00:25:38.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "916f1954-ab5a-48a6-8323-4456a527f032", + "createdTime": "2021-01-19T00:25:37.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "05b956f2-812d-4dd6-9b22-d5ed73b126bb", + "createdTime": "2021-01-19T00:25:36.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3d1e8265-44f7-4b6f-8485-9fbef354aa2d", + "createdTime": "2021-01-19T00:25:36.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0aaa780a-7fd5-47da-8ba6-e99af7d097f7", + "createdTime": "2021-01-19T00:25:36.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "616f1dad-9e7a-43a1-b459-fc3f1fbf872c", + "createdTime": "2021-01-19T00:25:35.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9871867b-fc24-480f-919c-b834cf23271b", + "createdTime": "2021-01-19T00:25:35.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df41b57-f4ae-48ab-831b-a9eac26905ed", + "createdTime": "2021-01-19T00:25:35.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "08a138a3-1bd0-472e-9af3-68b3b7278bd2", + "createdTime": "2021-01-19T00:25:34.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f9c170e-a310-4c01-9b23-76de2a782ffe", + "createdTime": "2021-01-19T00:25:33.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f53a8c4-79a5-4b6f-a82d-e31a17c7c575", + "createdTime": "2021-01-19T00:25:31.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cdf0c68c-5631-48f3-a148-1aab94ee4edf", + "createdTime": "2021-01-19T00:25:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "524b18ff-ac3a-46b4-8209-d8407bcb9709", + "createdTime": "2021-01-19T00:25:30.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9877d6cb-016f-4a87-a822-e94a9e96dec9", + "createdTime": "2021-01-19T00:25:29.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d96cf73a-ae64-4537-9aad-1185c1fdc259", + "createdTime": "2021-01-19T00:25:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "acf5e6bd-61ed-490f-852e-eba6cc694b15", + "createdTime": "2021-01-19T00:25:29.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "43a7d62c-921d-4cfd-a14e-da5e1ab7ea1b", + "createdTime": "2021-01-19T00:25:28.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02308a30-b4ed-41b3-8cac-5d4b760dbe43", + "createdTime": "2021-01-19T00:25:28.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b2c9859-7b2e-4b75-a97e-49dbde6a023d", + "createdTime": "2021-01-19T00:25:27.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7f9b252-03ec-455c-85e5-eee4c727d2ce", + "createdTime": "2021-01-19T00:25:27.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07cbe92c-af47-4353-bbf5-d917462a4e18", + "createdTime": "2021-01-19T00:25:06.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5be02e6e-3a0c-49d3-80cb-16ea47e0a8dc", + "createdTime": "2021-01-19T00:25:06.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbc38873-cf2c-4bab-9f22-34f659658422", + "createdTime": "2021-01-19T00:25:05.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "db24ab6c-f112-4af8-91be-c3e049621820", + "createdTime": "2021-01-19T00:25:05.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "809a9c48-54e9-40ea-a80a-17ec6bd7583f", + "createdTime": "2021-01-19T00:25:04.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "508d452f-6003-452a-a1de-f0bb7a699932", + "createdTime": "2021-01-19T00:25:00.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe182ecf-bd7a-40f6-997f-381b3336c49f", + "createdTime": "2021-01-19T00:24:59.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67becf6a-e224-48dc-8704-65471e7c8cfc", + "createdTime": "2021-01-19T00:24:59.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "612d3a6a-e2c8-46d2-8cd5-1a458c24ed61", + "createdTime": "2021-01-19T00:24:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "88e9a13f-75fb-4c1c-9cba-f926711982f3", + "createdTime": "2021-01-19T00:24:57.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2c36b81-46c6-499e-892c-d40c07a68ae2", + "createdTime": "2021-01-19T00:21:04.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0a9a9894-39b5-4426-b68d-9faeaa97747e", + "createdTime": "2021-01-19T00:21:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5166bd87-6a0a-46e7-ae6b-d274f46f0ca7", + "createdTime": "2021-01-19T00:21:01.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "950f915c-b1f1-4c2f-a4ca-2b2252481b70", + "createdTime": "2021-01-19T00:21:00.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "27e68169-afc6-4b5c-96d9-cb3c974aef91", + "createdTime": "2021-01-19T00:21:00.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "361c40cb-a1e1-4c7a-93f7-16f69a86ed6b", + "createdTime": "2021-01-19T00:20:55.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a4dc67bd-ca4d-44c6-ad21-f87a3747be05", + "createdTime": "2021-01-19T00:20:55.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bd82df04-9352-431c-8e01-b7e08fbd41b1", + "createdTime": "2021-01-19T00:20:54.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "857c584d-7651-42a4-a90b-215e65712065", + "createdTime": "2021-01-19T00:20:53.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b8d26670-b552-43b0-b7ee-c201ab617f7f", + "createdTime": "2021-01-19T00:20:52.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16a95a06-fc02-4b66-9a07-237e13542e62", + "createdTime": "2021-01-19T00:20:28.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "25280544-5401-43c6-a610-0500628bc960", + "createdTime": "2021-01-19T00:20:28.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "be101e83-880f-45fa-9ef3-cf44247f0dd0", + "createdTime": "2021-01-19T00:20:27.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "efea6587-2f40-4a4b-b39d-f07aa82a8779", + "createdTime": "2021-01-19T00:20:27.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "65da6265-d6b9-4e0e-9a8b-b35cb5535548", + "createdTime": "2021-01-19T00:20:26.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5209c149-2e13-4465-91f0-f4e1285c4615", + "createdTime": "2021-01-19T00:20:24.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3b3f6df1-036a-4b2c-9174-bcc2e55ade1e", + "createdTime": "2021-01-19T00:20:23.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "640a0a2b-ccb9-45fd-b7de-0347ae8302e5", + "createdTime": "2021-01-19T00:20:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3ef50080-0ac0-4067-86ea-6927e556afe7", + "createdTime": "2021-01-19T00:20:22.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2ec9f8e0-412c-4966-9a31-57475cd3ac91", + "createdTime": "2021-01-19T00:20:21.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e58caf5a-3361-4150-8bb4-cc31246e4790", + "createdTime": "2021-01-19T00:20:21.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7f46c7b-b75e-4435-babc-b277e85e0bf2", + "createdTime": "2021-01-19T00:17:43.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6a601bc-b4f1-4dd2-b4aa-d5f827668762", + "createdTime": "2021-01-19T00:16:19.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d58358a-41af-4acb-9ea7-daf6c8cc5401", + "createdTime": "2021-01-19T00:16:10.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc596c7d-c338-4c70-b1b5-2adb19505ecb", + "createdTime": "2021-01-19T00:16:09.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88f50ab-3d12-4bd7-adf7-9d9e957f7a34", + "createdTime": "2021-01-19T00:16:04.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "895d5a3e-3c57-4c09-b472-160f28c05c1d", + "createdTime": "2021-01-19T00:15:03.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419ee12f-cbb5-4015-b318-c810ba9f1492", + "createdTime": "2021-01-19T00:13:20.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "581600d7-7c17-4f3e-913b-6b8aecad976a", + "createdTime": "2021-01-19T00:12:56.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d21e4462-5537-4daf-9559-118819b0b75d", + "createdTime": "2021-01-18T20:12:04.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64c5744d-82fc-43c9-91ba-78aea74a230c", + "createdTime": "2021-01-18T20:05:55.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f7adb0-bb01-494f-8589-342fe308567e", + "createdTime": "2021-01-18T20:05:49.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d0be9853-ca42-466c-b2a0-a5c55fc094f6", + "createdTime": "2021-01-18T20:09:38.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "eba3a6c5-a4cc-4197-b8b5-20a32e239daf", + "createdTime": "2021-01-18T20:05:22.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1d5786cc-d04d-47b9-bcca-2e6ed1672923", + "createdTime": "2021-01-18T20:07:09.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0e9607c2-41d6-4c58-baa2-b56648ba27d9", + "createdTime": "2021-01-18T20:12:04.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "60912236-9e07-41b2-ad3e-0e4e72ddea8a", + "createdTime": "2021-01-18T20:12:03.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c892741b-ddef-43f9-b38a-5330fb7d3858", + "createdTime": "2021-01-18T20:12:02.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9770ede0-8443-4968-bcec-76d987d855ba", + "createdTime": "2021-01-18T20:09:39.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a93e3eb0-16ee-4465-940c-de7ca38aa9ed", + "createdTime": "2021-01-18T20:09:38.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "79974548-0e76-467a-8a39-8e91f3e3c905", + "createdTime": "2021-01-18T20:09:37.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f663c25b-a759-4add-b6f6-36274ed8613a", + "createdTime": "2021-01-18T20:07:09.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b64690c-5c79-441a-a8aa-30f0d17ddfce", + "createdTime": "2021-01-18T20:07:08.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b291c4b-19e2-455b-9d1e-dd6f1f318da9", + "createdTime": "2021-01-18T20:07:08.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bff967f7-7ab3-471e-9761-f16666b3f1b5", + "createdTime": "2021-01-18T20:05:56.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d114f610-c1ce-4d08-95dd-f0d0a3b14964", + "createdTime": "2021-01-18T20:05:55.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d2504254-6aa7-443f-8008-5363a7f08b49", + "createdTime": "2021-01-18T20:05:54.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a72f005-e577-4f1d-9ff0-a7be8c91de53", + "createdTime": "2021-01-18T20:05:50.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c3a62520-b1c9-4261-b27f-5a415250ab9b", + "createdTime": "2021-01-18T20:05:48.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5ef2c20-6f09-47d1-97e6-fe08ebc73e8a", + "createdTime": "2021-01-18T20:05:48.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbb4d554-4711-4af5-9a6f-88246289ae59", + "createdTime": "2021-01-18T20:05:23.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ec432ed-2b0e-4f3b-a1a4-95a319c983fa", + "createdTime": "2021-01-18T20:05:22.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1a4b4e34-1892-4416-8634-4152d55e5309", + "createdTime": "2021-01-18T20:05:22.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eedfa818-3872-46a3-9f51-9000697eabac", + "createdTime": "2021-01-18T20:05:17.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fea1758e-9142-47df-a8fb-f44a2957c1cb", + "createdTime": "2021-01-18T20:05:16.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e218377b-d686-40bb-ac6c-cfd15e53c65d", + "createdTime": "2021-01-18T20:05:15.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "18485003-b52e-4d85-ab43-e04c12c17118", + "createdTime": "2021-01-18T20:05:15.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d74f3389-944a-44e1-9548-c44e8d612d13", + "createdTime": "2021-01-18T14:02:19.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e69f4669-e8c3-4e22-8616-f03907471634", + "createdTime": "2021-01-18T14:02:14.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fcd41dd-22fd-40fd-b47e-ff305692b292", + "createdTime": "2021-01-18T14:02:13.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3a6f4be3-fe1d-40b7-a985-c1bfde3025d5", + "createdTime": "2021-01-18T14:01:03.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3dc5d5a0-e6c5-4f4a-aee3-ed10cfbd67e4", + "createdTime": "2021-01-18T14:00:59.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b4a26b33-6dd8-4011-8fbb-9615106b12ac", + "createdTime": "2021-01-18T13:58:56.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5f59323e-5c19-4d6e-bdfd-be80214246ca", + "createdTime": "2021-01-18T14:01:43.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9c63c04a-3ebe-4d55-a79f-1e3ecc9c9806", + "createdTime": "2021-01-18T14:01:42.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cfe35f29-243f-4139-bea7-ce89695c6a9a", + "createdTime": "2021-01-18T14:01:37.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9faa75fc-4e5e-41ab-a380-9655d30390c9", + "createdTime": "2021-01-18T14:01:35.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b513e061-217e-4c21-b6e7-6001e505c0e0", + "createdTime": "2021-01-18T14:02:29.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d4c36006-54f9-42ce-a6f7-9f12281347e9", + "createdTime": "2021-01-18T14:02:26.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4f105b31-509b-4454-9f5f-67d530371632", + "createdTime": "2021-01-18T14:02:23.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "47e3cc17-7ed8-4779-a080-454c8cd2198c", + "createdTime": "2021-01-18T14:02:20.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a5bf795a-625c-4dfa-98fd-730ef6e427c0", + "createdTime": "2021-01-18T14:02:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23b9c8dd-208c-4725-8c83-3fc50899c2c7", + "createdTime": "2021-01-18T14:02:28.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9fed2197-4707-4841-b0a6-bebd9bd805c1", + "createdTime": "2021-01-18T14:02:28.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f2c27125-8ca2-467e-85b6-d706422022c9", + "createdTime": "2021-01-18T14:02:27.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6b5f985-4027-4820-935e-b7a96a054f9c", + "createdTime": "2021-01-18T14:02:27.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "648b8a42-8553-4398-8505-a6747ec8979f", + "createdTime": "2021-01-18T14:02:26.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81f088a6-ab52-42cd-893b-a5d3407f1bcd", + "createdTime": "2021-01-18T14:02:25.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33399602-eab0-48a7-802c-0d7e89f60a3d", + "createdTime": "2021-01-18T14:02:25.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "276f0864-875d-41a9-9045-fe401d9fb143", + "createdTime": "2021-01-18T14:02:24.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6ad2ed44-a693-4412-a50f-082374272493", + "createdTime": "2021-01-18T14:02:23.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "889c312e-40dc-471c-87ca-10bb954de1fa", + "createdTime": "2021-01-18T14:02:23.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f1085453-ba3a-4b86-a881-172407296a43", + "createdTime": "2021-01-18T14:02:22.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21266d7d-6989-405e-89dd-1fc0a896bc8c", + "createdTime": "2021-01-18T14:02:22.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "40ce6741-aa60-422e-93e3-eaf8094e60b6", + "createdTime": "2021-01-18T14:02:22.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "13d24587-68ca-46cd-8f2b-6ebb199118b8", + "createdTime": "2021-01-18T14:02:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c29a4d8b-ebf0-4c38-804a-d200b8d995de", + "createdTime": "2021-01-18T14:02:20.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f96ca7fd-ba29-445d-adee-678a586d35a9", + "createdTime": "2021-01-18T14:02:19.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "60632a38-9fde-4a48-8588-8badfde99a5b", + "createdTime": "2021-01-18T14:02:19.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23f08fb4-1192-41c3-b1ad-81d9679ed25f", + "createdTime": "2021-01-18T14:02:18.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "692fbc12-e56c-4745-8413-8df6fd134e55", + "createdTime": "2021-01-18T14:02:18.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5a60d43-6e8d-4bad-a5a1-4366dd79db2f", + "createdTime": "2021-01-18T14:02:18.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44fc4b0d-9c52-48b9-ae92-0f2d81460813", + "createdTime": "2021-01-18T14:02:18.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0afddd9-3596-4796-91ad-c6a53a186688", + "createdTime": "2021-01-18T14:02:17.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ce080e2-6a13-48e6-aa8c-271121ff158e", + "createdTime": "2021-01-18T14:02:17.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0c35506-9c36-4cd8-b3b1-1e2f66fea573", + "createdTime": "2021-01-18T14:02:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6350ae83-1bcb-4c9c-985f-23ac0d353684", + "createdTime": "2021-01-18T14:02:17.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b2f4b5d-47ff-4ca8-a04a-34e64d4e5578", + "createdTime": "2021-01-18T14:02:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ced8ff01-1731-4528-b34d-ac7a4c8a7330", + "createdTime": "2021-01-18T14:02:16.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d0b38b58-d825-42cf-93be-b529797bf0de", + "createdTime": "2021-01-18T14:02:16.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32552c46-42f1-4dc5-a5b1-7389f6622ecf", + "createdTime": "2021-01-18T14:02:15.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34c2db40-9d62-40a4-ac62-e3940be93210", + "createdTime": "2021-01-18T14:02:15.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d76825b-06e7-4c19-a052-1c88417f73d7", + "createdTime": "2021-01-18T14:02:14.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28e18a77-3bf3-4762-88c1-014f70bcb224", + "createdTime": "2021-01-18T14:02:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "74a1396c-72f8-4573-95e2-99426c535ab5", + "createdTime": "2021-01-18T14:02:13.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d5c7d407-a340-4707-a383-17de3304aae7", + "createdTime": "2021-01-18T14:02:12.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e6bf7af5-8476-42ed-adcf-e7210bb6f7c3", + "createdTime": "2021-01-18T14:02:12.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b56a31b-c2f3-4b9f-a7da-db7671d0c1aa", + "createdTime": "2021-01-18T14:02:12.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "617be967-b3d8-4f08-83ca-2c7a4c1c2048", + "createdTime": "2021-01-18T14:02:11.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0be038e-b5eb-4c7b-a422-9b105f021dc2", + "createdTime": "2021-01-18T14:02:11.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "822b1e15-bcee-417c-92b5-894d0fdfdb3e", + "createdTime": "2021-01-18T14:02:10.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4a2755f5-b6d8-4bc1-bc04-4fa5f7746f88", + "createdTime": "2021-01-18T14:02:10.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab20dd75-cf4b-4a94-9d46-e2384e8da92a", + "createdTime": "2021-01-18T14:01:42.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7aae7fab-6765-428d-b26f-a83ad1a09b76", + "createdTime": "2021-01-18T14:01:41.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ba19ce9c-79df-43b4-9ee5-84ebc41b5721", + "createdTime": "2021-01-18T14:01:41.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "daa8ae05-abd2-4e44-89ff-6b0f763efd5f", + "createdTime": "2021-01-18T14:01:41.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a160a02c-4aab-4c13-9050-f6d07ba699ce", + "createdTime": "2021-01-18T14:01:41.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5ef0899-b9f7-4d37-a6b2-f5b8df14f692", + "createdTime": "2021-01-18T14:01:40.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e3f22df-9eaa-4c97-aba6-f88d608f1ba3", + "createdTime": "2021-01-18T14:01:40.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7a0ab9e5-d109-44a3-93da-e3671246ff0b", + "createdTime": "2021-01-18T14:01:40.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8501051f-b446-48fc-b9e5-9c277c3d8c97", + "createdTime": "2021-01-18T14:01:39.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "46cff660-c023-47d6-a616-a831458dce4b", + "createdTime": "2021-01-18T14:01:39.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d73b49c-4c9f-4533-9940-5d6002c3f399", + "createdTime": "2021-01-18T14:01:37.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "287d1ad6-e48c-4d27-b2d6-bb9e409b05d5", + "createdTime": "2021-01-18T14:01:36.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "364da32c-aab7-4110-a6be-c41d6fa9e7ce", + "createdTime": "2021-01-18T14:01:36.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b375ff19-f964-4e40-bbbd-17057af52085", + "createdTime": "2021-01-18T14:01:35.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1bca4249-0009-4bb4-9230-84b75ff1ca7c", + "createdTime": "2021-01-18T14:01:34.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7c9c07d-311b-4436-aee9-820f5324ae44", + "createdTime": "2021-01-18T14:01:34.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff79f82-3407-4e76-acf1-a1769125ab36", + "createdTime": "2021-01-18T14:01:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1530866-8289-49df-b432-4485c7af29c8", + "createdTime": "2021-01-18T14:01:33.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2874c845-e947-4ebc-b842-670f184113ac", + "createdTime": "2021-01-18T14:01:32.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "df786a84-9afa-42a7-a8e1-9cc24e9d963b", + "createdTime": "2021-01-18T14:01:31.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5256282d-8c3c-4aad-8204-3c7aaa5e14fb", + "createdTime": "2021-01-18T14:01:03.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "37e094fa-1ac8-493f-8145-36adcd20ed1d", + "createdTime": "2021-01-18T14:01:02.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b38d251c-ffd7-400c-baf4-c890191bf771", + "createdTime": "2021-01-18T14:01:02.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e7203501-0347-473e-872d-5850083537cb", + "createdTime": "2021-01-18T14:01:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0822a8e6-3819-4fd5-8e23-289c063bc7c4", + "createdTime": "2021-01-18T14:01:01.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e03d045d-a6c2-44f1-a347-219b948b6628", + "createdTime": "2021-01-18T14:00:58.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3eba25fb-2de1-4543-96d1-cb0bebf7dcab", + "createdTime": "2021-01-18T14:00:57.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "90f62e07-1cd5-4189-8e98-ab999b7071f8", + "createdTime": "2021-01-18T14:00:57.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1878717e-e4e9-43e1-a46b-931e2e26a664", + "createdTime": "2021-01-18T14:00:56.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1db1380e-b91b-4a2f-b401-47147f212763", + "createdTime": "2021-01-18T14:00:56.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d6432868-f43e-4154-b443-bd77684c6a78", + "createdTime": "2021-01-18T13:58:19.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c951ad9b-b1ae-4b0d-9614-f12ee0403749", + "createdTime": "2021-01-18T13:58:18.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "427e78ae-f7ac-45d9-a400-b7db2ccb684e", + "createdTime": "2021-01-18T13:58:17.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "18d68ec0-4953-4daa-8491-d7059db94eb9", + "createdTime": "2021-01-18T13:58:17.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e03d7649-8a52-4c1b-a35a-7e4893887cdd", + "createdTime": "2021-01-18T13:58:16.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a4611545-02e6-4a82-9a0a-e87c41476678", + "createdTime": "2021-01-18T13:58:13.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2618ac21-b5c2-4224-8799-feef38e077f9", + "createdTime": "2021-01-18T13:58:13.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a95c5062-f254-4bb2-8789-d14482c4e8ff", + "createdTime": "2021-01-18T13:58:12.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f939b262-7e8e-4c72-ae82-e191ce6a36b2", + "createdTime": "2021-01-18T13:58:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f0ee4243-9437-43b1-9cff-85e87a4f1ee8", + "createdTime": "2021-01-18T13:58:11.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "87548cf0-976c-4bd8-b1a7-96b8bd1e1f46", + "createdTime": "2021-01-18T13:58:10.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65014fcd-bc80-4766-a80f-9e24e0288138", + "createdTime": "2021-01-18T13:52:53.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18bd04ef-e0e1-4f80-8199-f7a5fbaa6eb3", + "createdTime": "2021-01-18T13:52:46.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42e2e8cc-86f0-4020-bcf4-68a720b4d5e3", + "createdTime": "2021-01-18T13:52:34.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb5eaf4d-6880-420b-b16b-9f59453b41d7", + "createdTime": "2021-01-18T13:52:30.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23286deb-bc92-42f8-9e07-5844aac40f6c", + "createdTime": "2021-01-18T13:52:08.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8828c9e7-fdd0-40d0-beb0-adfb8ac8b2fb", + "createdTime": "2021-01-18T13:51:21.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53698aae-9d2e-4c30-a438-ee37bcce8101", + "createdTime": "2021-01-18T13:51:12.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ffcd3c7-5964-422e-a173-712ddeb56dd4", + "createdTime": "2021-01-18T13:49:12.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f6d04bf-0ca4-4044-82be-49b224814f31", + "createdTime": "2021-01-18T09:14:55.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c784ab00-25b7-43aa-8983-8baec5725eac", + "createdTime": "2021-01-18T09:14:54.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed68bdf-5137-4c5f-9ebd-dd399f9fbecc", + "createdTime": "2021-01-18T09:14:54.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5199b0b3-38c1-45c6-ad91-a4f987ec1d9e", + "createdTime": "2021-01-18T09:14:53.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb73c8fc-aba8-43f4-b166-24b0b342012f", + "createdTime": "2021-01-18T09:11:06.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8705feb0-2eef-42cb-a11a-6e84db470088", + "createdTime": "2021-01-18T09:11:06.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdc048b-e7db-48e0-85d6-b58f9331fa1b", + "createdTime": "2021-01-18T09:11:05.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47d57fb3-beea-4927-87f2-cc786900b3f6", + "createdTime": "2021-01-18T09:11:04.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6de583b7-d744-42c9-a95f-18373f17e69c", + "createdTime": "2021-01-18T09:03:31.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "df968310-5768-4bc4-8dd7-fa25b12b35b5", + "createdTime": "2021-01-18T09:03:30.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0d6526a4-93ad-46f8-a5ce-d4c04284a0eb", + "createdTime": "2021-01-18T09:03:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6d0c2aa7-e6c0-4b43-8a0a-0ed5f881b602", + "createdTime": "2021-01-18T09:03:28.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "677dbba1-72e6-4588-bd29-7c47e4653edc", + "createdTime": "2021-01-18T08:59:33.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e0d199a-c8f1-4326-9681-05d43fe47e72", + "createdTime": "2021-01-18T08:59:32.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1c1d49a-7ccd-4423-b2ef-d6a9636f5b8e", + "createdTime": "2021-01-18T08:59:31.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8d3a1709-2e09-4360-804c-23c9b4ce377c", + "createdTime": "2021-01-18T08:59:30.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5517ff8-10ad-47eb-8fe6-2ba530d81f70", + "createdTime": "2021-01-18T08:46:02.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be8aeae6-7f0f-44f8-a4f9-f6acdbdac860", + "createdTime": "2021-01-18T08:46:01.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "228bf853-674f-4d16-9b4b-a570063993e3", + "createdTime": "2021-01-18T08:46:01.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f3fcda7-ed32-4b32-8e05-29d541378220", + "createdTime": "2021-01-18T08:46:00.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea88d538-9e1c-4924-929a-c53100df4206", + "createdTime": "2021-01-18T08:23:29.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25e2a34b-ac95-459c-bb8f-a64c70f60097", + "createdTime": "2021-01-18T08:30:27.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb886c9d-b5aa-4f9c-b783-578409ab5f64", + "createdTime": "2021-01-18T08:34:25.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "627aafa8-bda8-4625-ac59-31509ce0c770", + "createdTime": "2021-01-18T08:34:24.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1efc463-668a-49e9-99a6-0cec894843e1", + "createdTime": "2021-01-18T08:34:23.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8f363d7-eebe-4885-aea9-e9166d8dc177", + "createdTime": "2021-01-18T08:34:22.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed0f68f1-9e13-48ee-952d-9ddc03b27399", + "createdTime": "2021-01-18T08:30:26.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e9c5050e-a428-4310-8794-9d53690a69bc", + "createdTime": "2021-01-18T08:30:25.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37ed9442-ff91-4d11-abcf-f87ab6a2e30a", + "createdTime": "2021-01-18T08:30:24.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47cff8a8-e64a-4dec-93b0-7dda05cee693", + "createdTime": "2021-01-18T08:23:29.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ecdd2489-ae25-4e10-84ee-c9798d76728a", + "createdTime": "2021-01-18T08:23:28.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e3f8e935-4c5a-4dfb-a50f-93c2ebaa660e", + "createdTime": "2021-01-18T08:23:28.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35b63a75-6650-44f0-addb-560a613dd3e3", + "createdTime": "2021-01-18T08:20:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3d35f2e-291e-40f0-b592-1c5229d6026e", + "createdTime": "2021-01-18T08:20:08.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29bbcc1b-1762-459d-adfc-910d1cda2a52", + "createdTime": "2021-01-18T08:20:07.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fb1b6a20-723a-45ea-ab84-3381dc6b5c53", + "createdTime": "2021-01-18T08:20:07.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2322f66d-6b84-4b1f-9b1e-09bf91588e49", + "createdTime": "2021-01-15T22:48:03.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "34039686-a399-49ac-997e-1ac8b1b94a0d", + "createdTime": "2021-01-15T22:48:02.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "609bda38-1b68-4c7b-a1e3-3d1784b9c449", + "createdTime": "2021-01-15T22:48:02.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a00b1fd-c0c3-4d09-b3e3-4bbba74d1e48", + "createdTime": "2021-01-15T22:48:01.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "48b4e84a-18bd-4ca3-8b0d-995776a4ea0a", + "createdTime": "2021-01-15T22:48:01.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "76faffa1-8e1f-4c12-861c-d5c3824eff3c", + "createdTime": "2021-01-15T22:48:01.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "152125f8-2bc3-4438-b75c-1ac2384c1caa", + "createdTime": "2021-01-15T22:48:00.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30c56c19-6dd7-4616-aaf8-e23640ba2afe", + "createdTime": "2021-01-15T22:48:00.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7274c248-d35a-48cd-89e3-6befd9e81203", + "createdTime": "2021-01-15T22:48:00.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "45158b85-5a3e-4fdb-8dec-a6abeff4c49b", + "createdTime": "2021-01-15T22:47:59.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "229bd3b4-9e28-4972-aee3-c640b92cf481", + "createdTime": "2021-01-15T22:47:59.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1f64e0a9-0c5c-4ab4-bfd0-c7e8e9388e12", + "createdTime": "2021-01-15T22:47:58.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e0de04bc-bd2a-44d5-991d-2ee58b94fb62", + "createdTime": "2021-01-15T22:47:57.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f45de2d-abb7-4cfa-b4e5-c01f2b281c70", + "createdTime": "2021-01-15T22:47:57.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d72e4b9-0e98-4d7f-ae10-3077b19e0881", + "createdTime": "2021-01-15T22:47:56.725Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e11ec43-a324-4da6-8b06-1dc686ba13bf", + "createdTime": "2021-01-15T22:47:56.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d57bd594-b0cf-4d1b-8b49-8fd03b3239ab", + "createdTime": "2021-01-15T22:47:55.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "397d4b15-7bdd-489b-a06a-d876195d7220", + "createdTime": "2021-01-15T22:47:54.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4262b3c7-80fc-4b32-b4cd-ad6e7e666c3d", + "createdTime": "2021-01-15T22:47:54.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee93e2ef-f5e8-44e9-8e44-d171069ef989", + "createdTime": "2021-01-15T22:47:54.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "442bcfbc-74d3-46b2-9d06-0d9c0181bd4c", + "createdTime": "2021-01-15T22:47:53.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe6a74e5-ca30-4963-a9bf-27e7661b65d2", + "createdTime": "2021-01-15T22:47:52.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7da25cf-08a4-44f9-bdee-89e1515e9fed", + "createdTime": "2021-01-15T22:47:52.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1af594a3-8c12-4db4-8055-ee1a88fedd45", + "createdTime": "2021-01-15T22:47:51.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0386269a-594a-424d-8518-73c5d607dd07", + "createdTime": "2021-01-15T22:47:47.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e00afb46-54fd-4bb5-89b3-6d1b8b8729fe", + "createdTime": "2021-01-15T22:47:46.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "392289a1-45f2-4bb9-aca8-880ef5ef042c", + "createdTime": "2021-01-15T22:47:46.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a451c7bb-60c6-4c7b-b5f2-c631ec0bf9ac", + "createdTime": "2021-01-15T22:47:45.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1138b388-7541-4d92-9fde-b84c3064fe52", + "createdTime": "2021-01-15T22:47:45.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2c5014d1-e27d-478d-9cc1-b61c2ec62968", + "createdTime": "2021-01-15T22:47:44.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d7b511c-4864-49cb-a597-c46d5fb7f898", + "createdTime": "2021-01-15T22:47:41.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f036f2c9-2ccb-46c6-9c87-acec2b1afadb", + "createdTime": "2021-01-15T22:47:40.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e86da520-1142-49d0-8405-f2c0730011bd", + "createdTime": "2021-01-15T22:47:40.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5fab0592-45fb-466a-b865-7983ad8f084a", + "createdTime": "2021-01-15T22:47:39.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88727778-f4bd-4274-8715-49dcd54fbf88", + "createdTime": "2021-01-15T22:47:39.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "595d260f-840e-423e-92a4-eefc4aeeb52d", + "createdTime": "2021-01-15T22:47:38.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "201e8bac-b1cb-43d5-b6a3-e2438b009792", + "createdTime": "2021-01-15T22:47:32.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e85c7dc2-0464-4e83-97e2-c8599776ce43", + "createdTime": "2021-01-15T22:47:32.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3786674-fa01-4df4-8c10-14244f7cab96", + "createdTime": "2021-01-15T22:47:31.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c1a8408-c23a-48f5-b4a1-bd99bedeb6a3", + "createdTime": "2021-01-15T22:47:31.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "30a58028-c501-45f8-9ac9-4a200bdd806d", + "createdTime": "2021-01-15T22:47:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "10cbf709-0298-4b76-85ef-c13c306f025a", + "createdTime": "2021-01-15T22:47:29.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "883d8fea-983b-42fb-8fe3-479917733af5", + "createdTime": "2021-01-15T22:47:26.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "692d1728-f52e-49be-be09-c8c7242b10b3", + "createdTime": "2021-01-15T22:47:26.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1cb5f785-3ad7-4206-a462-7807d73151e7", + "createdTime": "2021-01-15T22:47:25.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "467e33b1-8021-4ec4-a1c4-85bebcd84bca", + "createdTime": "2021-01-15T22:47:24.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "171a466b-67d1-479c-9de6-1b6518cf89e4", + "createdTime": "2021-01-15T22:47:24.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b862ac66-7563-4200-9eb1-5bafa15a54ca", + "createdTime": "2021-01-15T22:47:23.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b02cd29-5635-44f4-b569-f6d31f4dbd6f", + "createdTime": "2021-01-15T22:46:52.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1e261a38-a863-4ebf-b39b-d57bc5afaf36", + "createdTime": "2021-01-15T22:46:51.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b7eba64-43e3-4baa-bc13-c608a197c955", + "createdTime": "2021-01-15T22:46:51.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6b13d336-f31b-4b2c-a08b-440ed8ac9389", + "createdTime": "2021-01-15T22:46:50.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e442a937-efe6-4a98-b9f1-9bd88bc21d45", + "createdTime": "2021-01-15T22:46:50.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e91cb59-4aa1-4e50-bc76-9f042cb2ca62", + "createdTime": "2021-01-15T22:46:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8ebc80f8-e193-4f8b-98e9-404a022ae87f", + "createdTime": "2021-01-15T22:46:48.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "afc70d81-a0e2-427e-b6bf-c1811b0b2c68", + "createdTime": "2021-01-15T22:46:47.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ed152-709f-4318-af69-abf429218c98", + "createdTime": "2021-01-15T22:46:47.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a46d9c7c-80ae-4bc6-b195-4f6341e365fc", + "createdTime": "2021-01-15T22:46:47.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd6fff20-7031-4efb-ba27-759b01a63dfd", + "createdTime": "2021-01-15T22:46:46.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8198d335-3d22-42ce-b24d-68bf75d93094", + "createdTime": "2021-01-15T22:46:46.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5c230f1-3b66-4304-a9b4-8583b929cbc3", + "createdTime": "2021-01-15T22:46:45.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8e5bee3b-a5e0-4be3-a4ae-e7e89df7c290", + "createdTime": "2021-01-15T22:46:45.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "facf5ab6-dd6c-41b0-919e-31be5d650064", + "createdTime": "2021-01-15T22:45:58.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4fc467-b67f-400a-b1fc-6df0063e37f2", + "createdTime": "2021-01-15T22:45:56.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b0c72571-34b7-4b63-bfa5-16a02145ac55", + "createdTime": "2021-01-15T22:45:56.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93c2e442-c339-4234-af1b-22ef9ef34f1a", + "createdTime": "2021-01-15T22:45:56.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "11513dcb-a253-409c-958a-6f3612d2360c", + "createdTime": "2021-01-15T22:45:55.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "755c07f5-d983-4cd5-8678-ad136ab216c1", + "createdTime": "2021-01-15T22:45:55.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0e1aabb-7e7c-4f8a-bcf1-9b8a8a17a2c9", + "createdTime": "2021-01-15T22:45:54.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "00b428e7-0d0a-4e54-b7b5-d82a4eac95f2", + "createdTime": "2021-01-15T22:45:54.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a785b03-d927-4f3a-92d2-045b19e3f40d", + "createdTime": "2021-01-15T22:45:53.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e8cd296b-3351-4956-b1e0-c1e195c1256f", + "createdTime": "2021-01-15T22:45:52.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03afa5d1-894a-491d-98de-a7e453371075", + "createdTime": "2021-01-15T22:43:49.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8a0973e5-1739-49cb-8dd9-651df370448d", + "createdTime": "2021-01-15T22:43:49.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fc2f2ac-5186-46de-88c6-795438472356", + "createdTime": "2021-01-15T22:43:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "300448ea-4a5e-4091-a9a3-5073fe1afb76", + "createdTime": "2021-01-15T22:43:47.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a2166a97-903e-44f6-a1de-7672052dd729", + "createdTime": "2021-01-15T22:43:46.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "da8714a6-73d6-447e-be24-c177a9d5ff2b", + "createdTime": "2021-01-15T22:43:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7356751a-a52c-47bc-9a1c-27b32fa92d56", + "createdTime": "2021-01-15T22:43:41.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ec5129d-2fca-4c4e-9a43-7e07f13d67b2", + "createdTime": "2021-01-15T22:43:41.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33caf257-38c0-4d8f-b35f-ee0966410209", + "createdTime": "2021-01-15T22:43:40.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cf980399-a0e1-4014-b8e9-46955787c3a3", + "createdTime": "2021-01-15T22:43:39.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "36f4daea-e8d7-40ec-a27e-6fd42d36ee80", + "createdTime": "2021-01-15T22:43:38.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cc1c720c-3614-4d5b-9bf7-137df82e39be", + "createdTime": "2021-01-15T22:43:37.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f77f947-d93d-462d-99f6-50a1caddce23", + "createdTime": "2021-01-15T22:43:06.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "524cecb3-f84e-4475-8a75-dd1d3881ecd6", + "createdTime": "2021-01-15T22:43:05.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a2adc0d-abeb-439d-b24c-b89681a03612", + "createdTime": "2021-01-15T22:43:04.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a7ccf72-6719-47bc-8921-78a0be67226a", + "createdTime": "2021-01-15T22:43:03.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9dcce235-49f1-45aa-8e3d-28f0ccaa9e6f", + "createdTime": "2021-01-15T22:43:02.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec024541-1804-4a80-8252-30bb0f8fcfda", + "createdTime": "2021-01-15T22:42:56.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b5fa1e9-589b-4bb1-9a7a-8779d131d3a0", + "createdTime": "2021-01-15T22:42:52.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5a913dd1-5f68-41b2-b99d-5696cd297950", + "createdTime": "2021-01-15T22:42:51.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4a11b61c-77cc-4cf0-98e1-64c55bb4d89b", + "createdTime": "2021-01-15T22:42:50.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1f5f4aaf-360a-4ce5-a232-5396c2cc170c", + "createdTime": "2021-01-15T22:42:49.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4b392d2-f500-4cd4-8d81-d64a541d9ea0", + "createdTime": "2021-01-15T22:42:47.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec98072a-bcde-43ba-a2da-ad4faf2ade08", + "createdTime": "2021-01-15T22:42:46.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a47c29-8419-4cfb-bcca-d7a9e2e4c88d", + "createdTime": "2021-01-15T22:40:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b176878f-b1f1-4994-b854-8efe96c0a014", + "createdTime": "2021-01-15T22:40:10.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8facb3f8-1794-4161-8ae7-139cb2c78859", + "createdTime": "2021-01-15T22:40:07.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d23d2352-b69c-469c-9eea-032152d2bd32", + "createdTime": "2021-01-15T22:39:55.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6437ec39-7689-4a43-9436-201f816a664e", + "createdTime": "2021-01-15T22:39:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1827f012-1895-47d5-b1f5-c5a4a8eeb379", + "createdTime": "2021-01-15T22:39:27.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f960e154-81c6-42ae-9074-9afc8ba21b2e", + "createdTime": "2021-01-15T22:36:16.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2b2d6a2-911e-46f5-860b-72a55792c2e5", + "createdTime": "2021-01-15T22:35:55.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee2cc2ad-aee9-4674-bd68-958d08b0a047", + "createdTime": "2021-01-15T22:27:56.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6527cedf-82be-49e1-8ab4-c94e4bc66686", + "createdTime": "2021-01-15T22:29:53.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "192e0c44-92bf-4745-9b16-a10648bad0fa", + "createdTime": "2021-01-15T22:29:51.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d95d2873-54ef-43e0-ab1c-720f405ce7f8", + "createdTime": "2021-01-15T22:27:49.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6889ba40-0beb-4810-8767-2b9636576321", + "createdTime": "2021-01-15T22:29:46.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ce582de-eda2-4327-a684-bfaa5df2d42b", + "createdTime": "2021-01-15T22:29:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d613855d-9fc6-49af-b760-0f6ac8092b12", + "createdTime": "2021-01-15T22:27:39.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cf01a009-dea2-459f-8f5d-db73829c5736", + "createdTime": "2021-01-15T22:27:32.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8bfd1ed0-32a1-40e0-afac-8ae53f8d67b8", + "createdTime": "2021-01-15T22:30:30.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ecf94ca1-3fb5-4a19-b150-ee4a6effc4cd", + "createdTime": "2021-01-15T22:30:23.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "088877ba-9607-466a-ace8-94af26579ac5", + "createdTime": "2021-01-15T22:27:17.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "da4f898f-73c4-4d01-82ac-f667d38f0450", + "createdTime": "2021-01-15T22:30:29.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12c4d1d1-2ff2-4483-971b-a8ddc825bf0a", + "createdTime": "2021-01-15T22:30:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f2e912c-bff8-43e7-a2ce-ea50f34a3bbb", + "createdTime": "2021-01-15T22:30:28.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4c36e3f7-410e-49ae-b62d-b1a06dce1c29", + "createdTime": "2021-01-15T22:30:28.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "204a1558-506d-474b-a24b-1c16742c46c8", + "createdTime": "2021-01-15T22:30:27.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1f8f335-469c-49f3-b839-f226bb1571bb", + "createdTime": "2021-01-15T22:30:22.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2869a7ac-5a54-4fbb-a478-0ebd0fbaf2ae", + "createdTime": "2021-01-15T22:30:22.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ecfbe245-0791-4263-b5fb-1fad5048a316", + "createdTime": "2021-01-15T22:30:21.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "52b0d652-9193-4ee8-ae59-94484906cf99", + "createdTime": "2021-01-15T22:30:21.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b0d411b-c23e-4eee-8d68-24b320996e96", + "createdTime": "2021-01-15T22:30:20.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4816673e-58a3-4a84-957f-288a102c647c", + "createdTime": "2021-01-15T22:29:52.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a652f3dc-5643-42b1-8a23-d7565d2c6484", + "createdTime": "2021-01-15T22:29:51.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a3fe2677-d098-49e8-b4dc-f5ee5bd36f7e", + "createdTime": "2021-01-15T22:29:51.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "32b4c722-6ebd-442d-b7cf-c907d8694448", + "createdTime": "2021-01-15T22:29:50.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f7475f9-fadc-4008-87af-890e07991126", + "createdTime": "2021-01-15T22:29:50.753Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "87f7236a-a2c6-4ce0-925e-8c42ab011d84", + "createdTime": "2021-01-15T22:29:50.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f01d9c72-ee19-4057-aa2e-3ed53be42d0e", + "createdTime": "2021-01-15T22:29:50.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aa99d3da-2a6a-4032-aab9-775485c83666", + "createdTime": "2021-01-15T22:29:49.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92f9c74b-3081-408f-b8f0-3c1d11493af8", + "createdTime": "2021-01-15T22:29:48.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0ac083b8-d7ad-4f7a-a447-8104ad579344", + "createdTime": "2021-01-15T22:29:47.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d67a2ef-9aa3-4353-a12a-ddacf212ad0c", + "createdTime": "2021-01-15T22:29:46.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a2e557-f9bd-488d-a1b1-cba2a7d4873c", + "createdTime": "2021-01-15T22:29:45.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8e9c66c4-3684-4075-a8c3-c0044fcdf526", + "createdTime": "2021-01-15T22:29:44.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f84f825b-125d-4327-9bc4-4fcdf67d14db", + "createdTime": "2021-01-15T22:29:44.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "167abeed-4e74-4e98-8d5c-b1010cd9661a", + "createdTime": "2021-01-15T22:29:43.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0f1d968a-64f3-457d-b29b-5a73751bd829", + "createdTime": "2021-01-15T22:29:43.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b601310-2243-4509-917f-c124890b8484", + "createdTime": "2021-01-15T22:29:42.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d4d694ab-d049-4bd5-bdab-ed400f970490", + "createdTime": "2021-01-15T22:29:42.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b8e582d5-74e4-41b1-9409-4e7b148b5d39", + "createdTime": "2021-01-15T22:29:41.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1df622c5-06fd-4f09-bf0c-cca9f5de8a94", + "createdTime": "2021-01-15T22:29:41.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce3dfb30-6715-44a3-8c1c-4676009d9d20", + "createdTime": "2021-01-15T22:27:55.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c361221-42d7-4657-920a-4ce1aaf35708", + "createdTime": "2021-01-15T22:27:55.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c95260e8-0634-4940-9719-d8408a289106", + "createdTime": "2021-01-15T22:27:54.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3830677-734d-422e-8c69-fd6cda51b7c6", + "createdTime": "2021-01-15T22:27:53.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9fc2bafb-57af-44a7-9db1-be78d9b2bd6e", + "createdTime": "2021-01-15T22:27:52.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f383d74-2218-48d5-a799-53d5ee17b2b7", + "createdTime": "2021-01-15T22:27:48.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e7530fc-4231-40c2-bfc9-b5a04c7ff4d1", + "createdTime": "2021-01-15T22:27:47.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b40ea32e-33e2-4262-bbf8-993de0462aa4", + "createdTime": "2021-01-15T22:27:47.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4a61487-ce43-4778-9213-0f8111f1ca1e", + "createdTime": "2021-01-15T22:27:46.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f968dda-01fb-48ae-89d4-06d90de9579f", + "createdTime": "2021-01-15T22:27:45.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b439d1a-51a5-426a-96f3-e82533e7094d", + "createdTime": "2021-01-15T22:27:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "13956631-d901-44cd-9b90-e73b3e1eba4f", + "createdTime": "2021-01-15T22:27:38.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "153ffb2e-f51a-4782-9350-69ad968f3442", + "createdTime": "2021-01-15T22:27:37.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4305f5ba-800e-431e-b727-b35e02265fd0", + "createdTime": "2021-01-15T22:27:37.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15a94f3c-8a59-4136-8934-f2a2dea70541", + "createdTime": "2021-01-15T22:27:36.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23af3c7c-fcee-42c8-b083-d6449157eab1", + "createdTime": "2021-01-15T22:27:31.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b8e650fe-9e57-4f35-8da7-e851f127b85a", + "createdTime": "2021-01-15T22:27:30.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fcc526a-8472-4f5f-b93b-a1126fe6658a", + "createdTime": "2021-01-15T22:27:30.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2c2456d8-8698-4b9f-b0f4-5bb46f8e9b31", + "createdTime": "2021-01-15T22:27:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "20555efd-a294-44e8-99f2-a75d437bee59", + "createdTime": "2021-01-15T22:27:28.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33b68261-4e8f-483a-b173-771773777292", + "createdTime": "2021-01-15T22:27:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e48c087-d880-4d71-a09b-1473d9eddfb7", + "createdTime": "2021-01-15T22:27:16.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e8895d6a-e48c-4359-834b-3ad70b31867c", + "createdTime": "2021-01-15T22:27:15.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d6c22672-6978-42b7-8260-04e69791fd62", + "createdTime": "2021-01-15T22:27:14.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "341eb9c6-f04f-45f1-86e8-474fa8c18824", + "createdTime": "2021-01-15T22:27:14.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d590e7b5-4193-400f-bf6d-ab148d1625ec", + "createdTime": "2021-01-15T22:27:10.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "744d82ed-ceb7-4941-93f5-80ec4e4eff78", + "createdTime": "2021-01-15T22:27:09.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e6b69137-7945-4e45-8baa-ef1f4fa2f6b2", + "createdTime": "2021-01-15T22:27:09.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "88838bca-732f-451e-8e09-5cd0554b8246", + "createdTime": "2021-01-15T22:27:08.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f120eb57-b097-4e6d-ba2f-9edea0845b74", + "createdTime": "2021-01-15T22:27:07.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee610d7f-ded0-4654-bcb2-d320b3bd13d8", + "createdTime": "2021-01-15T22:27:07.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f11260cd-a4ed-41a1-8f06-d3126ff5c5f3", + "createdTime": "2021-01-15T22:24:09.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "16f3a4c7-7877-410c-8411-3bda237af183", + "createdTime": "2021-01-15T22:24:09.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5323fc78-fcca-4a5b-89df-eef786f3ca7d", + "createdTime": "2021-01-15T22:24:08.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2bd4d0c-7e2d-429a-9df3-d49cc2c3b285", + "createdTime": "2021-01-15T22:24:07.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cec37f31-0301-412b-add2-d9cdf9f56de6", + "createdTime": "2021-01-15T22:24:07.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "52fd5e69-be1c-41d8-8e89-985bc13cdeec", + "createdTime": "2021-01-15T22:24:06.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1be3d46a-200b-4a80-ad22-4a445a94181a", + "createdTime": "2021-01-15T22:24:02.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bc21fa80-6a6b-4cd9-ba44-f3795dc0ef87", + "createdTime": "2021-01-15T22:24:01.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ef027498-bec1-4972-9766-eaa887467ffd", + "createdTime": "2021-01-15T22:24:01.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2f8a948-dcd2-487c-aed2-08417ac41bee", + "createdTime": "2021-01-15T22:24:00.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cbd48fd1-371f-4b24-9625-647bd4acc32e", + "createdTime": "2021-01-15T22:23:59.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d2f3f80-e1ec-49f6-b6ff-1e52cca7129f", + "createdTime": "2021-01-15T22:23:59.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b966d731-8e42-4ac5-a4c9-b637bc64ed9f", + "createdTime": "2021-01-15T22:23:04.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "456afc45-fc42-43c8-9155-f5d02d7cb1db", + "createdTime": "2021-01-15T22:23:03.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "19b0d49d-4c33-45bb-b331-4a776b4dcbfc", + "createdTime": "2021-01-15T22:23:02.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea565676-2b18-4f1b-803e-5d73d9d5b5a8", + "createdTime": "2021-01-15T22:23:02.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d16afae9-dffa-449b-a150-937272d8bbde", + "createdTime": "2021-01-15T22:23:01.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8871ced3-ae2b-429f-ae6f-abe4c16e7f28", + "createdTime": "2021-01-15T22:23:00.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1b2f921-b034-4b3b-8cb9-ee1cc51b45c6", + "createdTime": "2021-01-15T22:22:57.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f005f466-1805-482e-9339-3f726b46feb2", + "createdTime": "2021-01-15T22:22:56.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "906634c0-67db-43c3-97da-7dc95757300d", + "createdTime": "2021-01-15T22:22:55.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f64adc53-d7b2-4826-84fd-f95a5c45fd36", + "createdTime": "2021-01-15T22:22:54.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ccb30ec-d4bb-4e8a-8f6e-f45509e42a8f", + "createdTime": "2021-01-15T22:22:53.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "41d0d1ba-ad70-4247-a535-a97bc8f8dc42", + "createdTime": "2021-01-15T22:22:52.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2b44dc7-4ff0-4932-8bb2-5cbc6fea7d65", + "createdTime": "2021-01-15T22:21:36.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78938f62-6d33-4589-be27-a7fe49d52509", + "createdTime": "2021-01-15T22:20:51.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9850f294-a5c5-444c-818b-5926bbeed74f", + "createdTime": "2021-01-15T22:20:21.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0218e43-ce9e-4e56-a92c-0bed28e57c69", + "createdTime": "2021-01-15T22:19:30.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "faafec77-0462-4df8-990b-bf52453a5372", + "createdTime": "2021-01-15T22:19:03.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2fdd1e1b-0098-4a56-aef6-012a8244c8da", + "createdTime": "2021-01-15T22:18:44.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "38488033-40c7-4227-b3a5-46661dd43527", + "createdTime": "2021-01-15T22:16:54.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30186b33-7d3e-4b83-8dbf-15fa56d006f4", + "createdTime": "2021-01-15T22:16:10.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50caab4c-4bd7-434b-a31f-e753ad4fc52f", + "createdTime": "2021-01-15T21:21:19.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "29379133-fd21-49c5-9c42-1cab4ffcc3aa", + "createdTime": "2021-01-15T21:21:15.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d181e8dc-9159-4a2f-b8ca-394a8674d2b9", + "createdTime": "2021-01-15T21:21:46.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fc36bb1-8f73-4270-b258-d5eab1eb152a", + "createdTime": "2021-01-15T21:21:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6246631d-393f-4549-93f9-9a1d45fef618", + "createdTime": "2021-01-15T21:21:26.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "00205c92-3252-4d33-becb-cf8a3b1af284", + "createdTime": "2021-01-15T21:21:21.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6685c4b5-46ee-4f5d-86b9-40c2add4c02c", + "createdTime": "2021-01-15T21:21:20.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "07e7a179-30a4-4e74-bc62-0c228b9178dd", + "createdTime": "2021-01-15T21:21:45.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0fb52223-7d1f-4788-932a-e8f77e393aa3", + "createdTime": "2021-01-15T21:21:44.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b390c22c-a730-465b-a8b2-0950d15b0c1d", + "createdTime": "2021-01-15T21:21:44.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "59bb84cd-931c-47d4-b66d-55d2f4be0714", + "createdTime": "2021-01-15T21:21:43.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "213c7e14-714b-4431-802e-08436fa817e7", + "createdTime": "2021-01-15T21:21:42.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cf7383c-e00d-48a2-a5ac-13bf351feb46", + "createdTime": "2021-01-15T21:21:38.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "89b766c7-4b47-44eb-9055-eeb6cd92951f", + "createdTime": "2021-01-15T21:21:38.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "91d5d5aa-c826-4447-be14-90c3aeb9ab6a", + "createdTime": "2021-01-15T21:21:37.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2df737d5-7088-4fc2-a08b-d48036b68c07", + "createdTime": "2021-01-15T21:21:36.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "61288851-1522-4c0f-af1f-79083932281b", + "createdTime": "2021-01-15T21:21:35.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d133834b-2524-41f4-9e50-e0d1c46242bf", + "createdTime": "2021-01-15T21:21:25.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7833d544-41ed-4275-b297-bd2763c34543", + "createdTime": "2021-01-15T21:21:24.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aedac735-2f33-4a61-a949-d7636ddd81c0", + "createdTime": "2021-01-15T21:21:23.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "72759eac-2fc7-4594-99e8-2a073cc812e4", + "createdTime": "2021-01-15T21:21:23.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6080385d-8c09-4d9a-9e13-ce05d6b508c8", + "createdTime": "2021-01-15T21:21:22.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58321663-6fc1-46bc-86b0-2ff9f521ff2c", + "createdTime": "2021-01-15T21:21:20.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa64d1bc-2298-4d6b-bd25-bc412b26db41", + "createdTime": "2021-01-15T21:21:20.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "faeb07c1-430a-410e-895e-56cc828b5080", + "createdTime": "2021-01-15T21:21:19.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4a9324aa-385d-4ef8-b0d3-9d56f9cf97ae", + "createdTime": "2021-01-15T21:21:19.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2781eac5-20d2-4441-82dd-95396ec4a835", + "createdTime": "2021-01-15T21:21:19.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6108b3d5-93ea-4913-9562-a13b7bd3cac0", + "createdTime": "2021-01-15T21:21:18.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1ae6dd9f-5714-46a3-9aad-507a8142c6e9", + "createdTime": "2021-01-15T21:21:18.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a5d87ba3-cd51-4a7a-8641-aeee6114da84", + "createdTime": "2021-01-15T21:21:18.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d7065af4-06d8-4bc0-9c40-39edbd820282", + "createdTime": "2021-01-15T21:21:18.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d229c2aa-079a-4dd4-ac59-18c2632fedb0", + "createdTime": "2021-01-15T21:21:17.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "38084e22-009f-4c8f-9555-0833054156a2", + "createdTime": "2021-01-15T21:21:17.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32b38efb-268b-4a52-834e-90837664f7e9", + "createdTime": "2021-01-15T21:21:17.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad009ae3-38ce-4197-a58e-0bd850a29932", + "createdTime": "2021-01-15T21:21:16.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da5565cf-7771-4cdb-b3bd-903535f8e824", + "createdTime": "2021-01-15T21:21:16.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a71bae1b-90ea-4179-91bf-05a8e12e0ac0", + "createdTime": "2021-01-15T21:21:15.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2713b32c-0053-4a4b-b8ee-e0adfc8c7dfc", + "createdTime": "2021-01-15T21:21:14.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db14a0fb-4558-414e-be00-03efd3744d02", + "createdTime": "2021-01-15T21:21:14.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fd39b039-d113-4ce4-bf72-13c80b76826f", + "createdTime": "2021-01-15T21:21:13.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4ba8073-2e49-4dff-8c57-9cbd2a9491bb", + "createdTime": "2021-01-15T21:21:13.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "12359dc9-16ca-4480-92fa-027fdfe6a7ab", + "createdTime": "2021-01-15T21:21:12.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f7e269fa-c0ad-44cb-8562-d134c28075ed", + "createdTime": "2021-01-15T21:21:12.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1256b08c-5c14-45bf-ad3b-13543782db42", + "createdTime": "2021-01-15T21:21:12.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9f0ef92-e896-44fa-905b-d4d258464f00", + "createdTime": "2021-01-15T21:21:12.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9801053c-1edc-4c1c-8f50-9849e20ef7c2", + "createdTime": "2021-01-15T21:21:11.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8dedfa33-261e-453b-ae73-fef418f31956", + "createdTime": "2021-01-15T21:21:10.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fa129d3d-f263-458e-b7b7-ee0f7a47c4f8", + "createdTime": "2021-01-15T21:21:10.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8750b36e-e0e8-4ed9-ae91-b5821a4f81f1", + "createdTime": "2021-01-15T21:20:47.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f57780b6-9eba-472e-adee-57841ea45391", + "createdTime": "2021-01-15T21:20:46.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7a34f1-a492-48dc-a99f-b1cc5808b350", + "createdTime": "2021-01-15T21:20:46.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f09c7ad8-92ca-46df-b208-035a7cd8c7ee", + "createdTime": "2021-01-15T21:20:45.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eb431d6c-0712-42ce-a7cb-c8b57d54dc01", + "createdTime": "2021-01-15T21:20:44.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5905ba12-8871-4cd9-aaa4-bfa3e6940d6c", + "createdTime": "2021-01-15T21:20:43.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f9e9129-3137-4f9c-96f0-7ae673c58192", + "createdTime": "2021-01-15T21:20:40.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2b522df8-5254-462d-92e1-638a30f55f39", + "createdTime": "2021-01-15T21:20:40.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "07878fa0-b79c-4f2a-8961-dd3b46fba923", + "createdTime": "2021-01-15T21:20:39.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "921af42d-a735-4289-b40a-e98905997f17", + "createdTime": "2021-01-15T21:20:38.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6490fdc-9408-4248-8fa3-7b4f1424f3d6", + "createdTime": "2021-01-15T21:20:38.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c3fcc851-2acb-42ca-bcd2-72251b61b115", + "createdTime": "2021-01-15T21:20:37.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a603d128-d58f-4ae2-ae73-89420c8e209a", + "createdTime": "2021-01-15T21:20:04.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee729d6a-c31e-48ad-af1a-3c9f32db2123", + "createdTime": "2021-01-15T21:20:03.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0c6f6213-e21c-418e-83e5-3a81f090cf5a", + "createdTime": "2021-01-15T21:20:02.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2e7338aa-b7e6-4717-9c0e-8e5d5e2b98da", + "createdTime": "2021-01-15T21:20:01.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b99d3009-e6bc-4748-ba1d-7417b9bb8b49", + "createdTime": "2021-01-15T21:20:01.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a945e9dd-2d76-4db2-b27c-d3b2dfa6417e", + "createdTime": "2021-01-15T21:20:00.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4033a439-a1dc-475e-9b88-7e9818ad3660", + "createdTime": "2021-01-15T21:19:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a87351c9-9cdb-4660-a738-a2dbe490a876", + "createdTime": "2021-01-15T21:19:56.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a42124-674d-415a-bcc4-bcbb8df72f67", + "createdTime": "2021-01-15T21:19:56.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c74f78f-e3f5-4f00-aad2-9edca85f6b89", + "createdTime": "2021-01-15T21:19:55.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e5d3491d-9b8a-4d4a-a1ce-aaf1e70d88e8", + "createdTime": "2021-01-15T21:19:54.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee116711-1149-4f6f-ae42-48f9e40255d8", + "createdTime": "2021-01-15T21:19:52.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "11cc6f69-08f2-4abd-8639-fc04887d92e3", + "createdTime": "2021-01-15T21:18:28.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c0a5d6b1-70c9-4f55-b580-a30c2b8327af", + "createdTime": "2021-01-15T21:18:28.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea0c022b-fe16-4867-ad29-b4a3fcd9ae3f", + "createdTime": "2021-01-15T21:18:27.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6ec7d6c-e8ff-4fa9-99e5-e6178923e7e0", + "createdTime": "2021-01-15T21:18:26.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2552ba9d-65f0-42d7-b021-4063691a45b0", + "createdTime": "2021-01-15T21:18:25.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ce43bb6e-3770-4655-8ed2-08b6ef67162e", + "createdTime": "2021-01-15T21:18:24.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9369658e-9f25-431c-8eaa-3dffbe13417c", + "createdTime": "2021-01-15T21:18:21.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ab5444f0-d3d5-4160-ac42-6810a858944a", + "createdTime": "2021-01-15T21:18:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e33bc3ee-535b-4973-a905-b151bb6701c9", + "createdTime": "2021-01-15T21:18:20.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7665178b-4d28-4f19-af50-06f4b9bd7d2e", + "createdTime": "2021-01-15T21:18:19.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee21854a-71fc-4284-bca0-1e52e1f82aad", + "createdTime": "2021-01-15T21:18:19.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbb7b909-b563-43b4-b7c3-7cd130249ba5", + "createdTime": "2021-01-15T21:18:18.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "984448f7-6967-4412-a349-ef4e7216b3e2", + "createdTime": "2021-01-15T21:17:41.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8cba583-0b73-47dd-9e60-6f5963858867", + "createdTime": "2021-01-15T21:17:40.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "155b8778-06d4-45ca-bca0-df9502a1ba94", + "createdTime": "2021-01-15T21:17:40.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f35a8cc-4433-4d8a-bd78-466d14c9786b", + "createdTime": "2021-01-15T21:17:39.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e8e657b1-7564-4f20-b2e3-c6683285c105", + "createdTime": "2021-01-15T21:17:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6013748b-2de0-402d-a893-6682f07709d6", + "createdTime": "2021-01-15T21:17:36.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b75e0270-6d5a-462d-97a9-f70c0fbd6112", + "createdTime": "2021-01-15T21:17:32.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57cf32d7-0e7c-4fda-8091-0aabb9204253", + "createdTime": "2021-01-15T21:17:31.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2b5724f-ab14-4cf8-84ae-d8a95a432b86", + "createdTime": "2021-01-15T21:17:31.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c1ee1aea-9778-479a-a695-0331fe1c56c7", + "createdTime": "2021-01-15T21:17:30.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b4c3a28-d50a-4a44-a9da-6705df9aa822", + "createdTime": "2021-01-15T21:17:29.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4012cc9e-2775-4b82-8eb5-cf7d6a516cb0", + "createdTime": "2021-01-15T21:17:28.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b0f7727-cc58-493e-ac3b-2faee1f53f08", + "createdTime": "2021-01-15T21:13:03.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1325c1f4-2727-4020-8684-5e9e485ceaf1", + "createdTime": "2021-01-15T21:11:45.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a7513e-0ca8-43fb-8107-c5a6b84f34e1", + "createdTime": "2021-01-15T21:11:42.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f237882d-0899-421e-91f4-d96e1a702e1b", + "createdTime": "2021-01-15T21:11:24.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "962cf525-7130-4de1-bf0f-655a27386ed7", + "createdTime": "2021-01-15T21:11:03.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28683162-0564-45c3-84d3-7c0a6609bb32", + "createdTime": "2021-01-15T21:09:58.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16ab0427-e896-4daa-ac71-e78b262825cf", + "createdTime": "2021-01-15T21:08:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6545eacc-6183-45f1-8a6a-733676abf556", + "createdTime": "2021-01-15T21:07:40.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b66f4a70-4a07-44e5-8934-e666eaf76f62", + "createdTime": "2021-01-15T21:01:41.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "646b420d-d5b3-41d7-a131-8ffcdb4bfe96", + "createdTime": "2021-01-15T21:01:41.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "36f404c6-da9a-45a8-ae0f-eb3265d55f54", + "createdTime": "2021-01-15T21:01:40.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3d2bf09-6ee3-4bab-811d-08205c3a340b", + "createdTime": "2021-01-15T21:01:39.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7775a44a-09a9-4f37-9396-77ae57cdce96", + "createdTime": "2021-01-15T21:01:39.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3777a678-a302-40b1-8a0a-2c718d2ddb6b", + "createdTime": "2021-01-15T21:01:38.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e35dc22b-c2d5-4106-a37e-64d3bb37c197", + "createdTime": "2021-01-15T21:01:34.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "31606dbb-e032-410b-9d9c-2692b6adf9de", + "createdTime": "2021-01-15T21:01:34.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3febc422-77f0-4811-acfd-0cf1e063e13f", + "createdTime": "2021-01-15T21:01:33.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0594bdb7-06ee-4b7b-95e4-2f4f4eb6b065", + "createdTime": "2021-01-15T21:01:32.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c06d26d3-275d-4f12-9e18-1b67d7d1b179", + "createdTime": "2021-01-15T21:01:32.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "85c4165c-d2be-4059-b8c9-2ac3d782c21c", + "createdTime": "2021-01-15T21:01:31.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5ddf0a7-bf11-4e3b-a8b0-9459dd874f7a", + "createdTime": "2021-01-15T21:01:05.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b2ea45e0-8cd6-493c-9353-eefefcc49a9a", + "createdTime": "2021-01-15T21:01:04.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7322f64f-15fc-459c-8b0a-539b86d6c21f", + "createdTime": "2021-01-15T21:01:04.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "254414ac-d603-4f05-8507-64d7b09b8c56", + "createdTime": "2021-01-15T21:01:03.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6451c0a-09b6-4dee-a475-8e95702829e7", + "createdTime": "2021-01-15T21:01:02.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3fe63789-9aa6-4807-91f0-a81aa3ca5157", + "createdTime": "2021-01-15T21:01:02.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96b372a3-8e0f-4569-a81a-23751716e0e3", + "createdTime": "2021-01-15T21:00:58.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ea9c48fd-88ce-4922-82c8-a12f73ed10e9", + "createdTime": "2021-01-15T21:00:58.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db63900a-be0c-409d-9301-e12bb95138e6", + "createdTime": "2021-01-15T21:00:57.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7609d759-67ca-427b-8437-0fbec9169f92", + "createdTime": "2021-01-15T21:00:57.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cfcac3cd-6fd1-424f-a49e-53453bb66528", + "createdTime": "2021-01-15T21:00:56.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "623d62ae-57e4-4ada-85d0-7464e7464c6e", + "createdTime": "2021-01-15T21:00:55.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba161c90-8d7e-4f5c-9ddb-ef1c3f9f1091", + "createdTime": "2021-01-15T21:00:40.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ed775661-0071-45b1-8782-b5fec6c45b18", + "createdTime": "2021-01-15T21:00:39.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6d93736-0243-4b03-baea-1bf9a0ce0ec5", + "createdTime": "2021-01-15T21:00:39.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44cafa71-aa3c-4df9-8fba-8727c6561c1a", + "createdTime": "2021-01-15T21:00:38.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba74221e-dd32-4e5c-8dd0-a692a1db2a54", + "createdTime": "2021-01-15T21:00:37.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbfe8a84-17c0-4107-97f7-e1cf9759b8e1", + "createdTime": "2021-01-15T21:00:37.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0d72c31-5998-46de-a228-9fa0fbe2d17d", + "createdTime": "2021-01-15T21:00:33.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d716eb27-aae6-43d6-bf96-f3424304decc", + "createdTime": "2021-01-15T21:00:32.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ad9b9-2376-45d5-8bf1-4c23b79dcd68", + "createdTime": "2021-01-15T21:00:32.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "369af7b9-3cb8-498e-8590-fcad9c781a2b", + "createdTime": "2021-01-15T21:00:31.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba743cff-7e9d-4e6e-8dd1-f8f9ba9d0112", + "createdTime": "2021-01-15T21:00:30.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3294cf53-cc82-461c-be63-913c991e15a3", + "createdTime": "2021-01-15T21:00:30.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64e0a7e3-9ed4-4d90-b131-538553ede9d4", + "createdTime": "2021-01-15T21:00:14.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6c6e7070-96eb-4bd0-95ba-a3b3514af65f", + "createdTime": "2021-01-15T21:00:13.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7fc93be-01be-4f09-a3f2-b3fd56c99545", + "createdTime": "2021-01-15T21:00:13.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0979b8e2-b8c2-4c71-8791-6b035df222d4", + "createdTime": "2021-01-15T21:00:12.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad1432fe-0bad-4764-b6d2-63aec3f4bc3c", + "createdTime": "2021-01-15T21:00:12.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "abc2c956-bb77-4795-ac00-6a7661e27851", + "createdTime": "2021-01-15T21:00:11.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d64d96a6-9a3c-43ff-9ecb-475f48a1c86f", + "createdTime": "2021-01-15T21:00:08.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "58fa266f-fc14-4cb0-bef3-b9e317c85228", + "createdTime": "2021-01-15T21:00:08.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7b91d4bf-5273-4069-8f86-1a8102fcfdd3", + "createdTime": "2021-01-15T21:00:08.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a9382df-cd09-432f-88c9-6df9ceeeefa6", + "createdTime": "2021-01-15T21:00:07.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ca12e774-2b32-4f1e-b9c9-873838aba69c", + "createdTime": "2021-01-15T21:00:07.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3054833-6fea-4291-b7a1-b89731091f55", + "createdTime": "2021-01-15T21:00:07.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "664da0b3-3090-41d0-910f-81c511f9b4b2", + "createdTime": "2021-01-15T21:00:07.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2a2dc035-ef4a-45dc-ba4b-7dd49b14edf8", + "createdTime": "2021-01-15T21:00:06.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e68476e-f4d0-4dc5-8b31-14b2793dfb65", + "createdTime": "2021-01-15T21:00:06.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cc89b87e-7f55-4ceb-b1b3-fbbf067705e6", + "createdTime": "2021-01-15T21:00:05.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2744844-ab16-4b12-8b61-b4489b11eee4", + "createdTime": "2021-01-15T21:00:05.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "05472e9f-77f5-45a9-aebe-c026e84b973f", + "createdTime": "2021-01-15T21:00:05.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cacccd4d-a0f1-44fa-88f6-6295534e5bec", + "createdTime": "2021-01-15T21:00:03.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0bb3c1c4-d603-4de3-87bc-c348ce4d1bb6", + "createdTime": "2021-01-15T21:00:02.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9763192f-777d-4cc1-aa9c-54c577f0db39", + "createdTime": "2021-01-15T21:00:02.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "78babee7-0eb7-45f5-9e06-f15d1a7342bb", + "createdTime": "2021-01-15T21:00:02.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23daa9ad-e44d-476e-9346-5a2b6473becc", + "createdTime": "2021-01-15T21:00:01.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acdf2d5d-6b6e-45fe-ac75-23b46c5e52c2", + "createdTime": "2021-01-15T21:00:01.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9bfb6913-11b1-471e-a7ae-4a13d2edfb92", + "createdTime": "2021-01-15T21:00:01.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b27bafef-d7ff-4175-9711-3e96680eaa31", + "createdTime": "2021-01-15T21:00:01.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2b72bd2a-081f-4163-a4d1-c38bcc62ca83", + "createdTime": "2021-01-15T21:00:00.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "da4dd496-5bea-4ac6-b5a7-b0a6a707eebc", + "createdTime": "2021-01-15T21:00:00.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d8f62ab7-36a0-4a66-9991-1b738ca96007", + "createdTime": "2021-01-15T20:59:59.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3e386a1c-8fdf-4ff2-9103-5f05f34d69c8", + "createdTime": "2021-01-15T20:59:59.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3cabb89-d51f-4ee1-98f0-da3c5c47a6f2", + "createdTime": "2021-01-15T20:59:55.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b95cbeff-d386-4817-9213-61c2f80c012b", + "createdTime": "2021-01-15T20:59:54.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "17a68111-a06b-452d-a26a-dbc36e3cae6d", + "createdTime": "2021-01-15T20:59:53.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5f3789fe-e5d3-4ab7-a7f1-12ca8af43fc7", + "createdTime": "2021-01-15T20:59:52.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "22726465-67d7-414d-92af-56c4e906243b", + "createdTime": "2021-01-15T20:59:52.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8f1bc795-857a-4ff6-8382-1e52fd4bec38", + "createdTime": "2021-01-15T20:59:51.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b31ce7f9-f772-471c-94ce-acf416a83705", + "createdTime": "2021-01-15T20:57:01.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cc5b5ea4-adcf-4d3e-b88e-88117573cfb3", + "createdTime": "2021-01-15T20:57:00.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "890f75bd-4652-442a-8408-d2ee2af8aa6c", + "createdTime": "2021-01-15T20:56:59.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "137969f3-350a-4e2a-9b85-86a706ed2655", + "createdTime": "2021-01-15T20:56:59.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "87a1781a-784b-48e2-bf40-1c557962bfe4", + "createdTime": "2021-01-15T20:56:58.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "140fc26d-eb47-4075-bd9a-999790b490ba", + "createdTime": "2021-01-15T20:56:57.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd5f831c-5b9f-4aea-adb3-44af20352a9b", + "createdTime": "2021-01-15T20:56:54.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "48296885-603b-4f99-8e77-b33360b86eca", + "createdTime": "2021-01-15T20:56:53.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "455ab152-2520-4b56-9834-96ef9e73d509", + "createdTime": "2021-01-15T20:56:52.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "439026f6-fedf-4960-a8c4-d46e51a9e025", + "createdTime": "2021-01-15T20:56:52.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c2c8b2d9-265b-4874-819d-8a75632fab5a", + "createdTime": "2021-01-15T20:56:51.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f46ad627-73ba-4d09-9080-5800bdfeca41", + "createdTime": "2021-01-15T20:56:51.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "184413cd-723b-48cf-be93-4648ab020bcd", + "createdTime": "2021-01-15T20:56:40.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3c62d529-1735-48f5-b898-222330bd9c9c", + "createdTime": "2021-01-15T20:56:40.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fc6eae13-4a8f-49a1-be6b-f86fcaccd07e", + "createdTime": "2021-01-15T20:56:39.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bbfee62f-80e9-4754-9772-e86602a0c2dc", + "createdTime": "2021-01-15T20:56:39.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0c2b0d1b-1eab-413b-b197-4e4d3ad88ea3", + "createdTime": "2021-01-15T20:56:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b6f950e-cba0-4971-a720-d88280f0882c", + "createdTime": "2021-01-15T20:56:37.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "44f0947f-e777-446a-9681-7ae63d4c69ef", + "createdTime": "2021-01-15T20:56:33.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8bd978c-9c6c-4def-abff-5ffb3f3de052", + "createdTime": "2021-01-15T20:56:32.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db2b2f1d-ecf4-4a8d-a0a8-56445995b32f", + "createdTime": "2021-01-15T20:56:32.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad33773c-d624-48f2-9164-1ed9157c250b", + "createdTime": "2021-01-15T20:56:31.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bab4f452-2ca4-491c-a89d-4563c3bcf5c0", + "createdTime": "2021-01-15T20:56:30.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4c0f3596-7fc6-4205-ada0-8f4e20da15e3", + "createdTime": "2021-01-15T20:56:30.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ec9dcca-3b86-4a44-bd74-6e8b66a9c7e3", + "createdTime": "2021-01-15T20:53:16.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "463eccb5-0b8c-4da1-842a-7d0c49a538b1", + "createdTime": "2021-01-15T20:52:54.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6f00969-f029-4e84-8d8e-e4c845ab7b12", + "createdTime": "2021-01-15T20:52:33.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1156199-c9ac-442e-a425-83ee7ebc8285", + "createdTime": "2021-01-15T20:52:28.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fb163fe7-6e22-499d-ab8e-fced5798aa4d", + "createdTime": "2021-01-15T20:52:23.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffe2606-d260-4b4a-a789-67882f9bec3e", + "createdTime": "2021-01-15T20:51:50.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17853ede-715e-44ac-9609-7cdbfff8d35f", + "createdTime": "2021-01-15T20:49:29.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28b6afba-9b6d-4e32-87fd-6bc5f3bf7e33", + "createdTime": "2021-01-15T20:49:00.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f9a88bc-1803-4a56-a0bf-e6242cd686f3", + "createdTime": "2021-01-15T20:43:47.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f073e44b-abb2-4475-b73a-3e7ea7f5d6b5", + "createdTime": "2021-01-15T20:43:47.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ed06583-fed9-4d35-88ec-342ace3d8c77", + "createdTime": "2021-01-15T20:43:46.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b4590ed-b812-4325-a5e0-186e79be9f97", + "createdTime": "2021-01-15T20:43:46.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4622b93-c462-4f92-abe6-11028a724408", + "createdTime": "2021-01-15T20:43:45.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a73ef12f-3d32-4005-abd3-0d22117a793e", + "createdTime": "2021-01-15T20:43:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a15930e-01cb-4fd6-b6c2-e5fbe3a9e4e8", + "createdTime": "2021-01-15T20:43:42.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3ab3b635-117a-49d1-9180-6e951f108d2a", + "createdTime": "2021-01-15T20:43:41.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e0dccd6-9143-4f86-993f-e93982aa8188", + "createdTime": "2021-01-15T20:43:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95e967f2-32af-4cb3-b943-a7fc9cd48971", + "createdTime": "2021-01-15T20:43:40.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a855f7a-b495-403c-ac80-3206be50c44b", + "createdTime": "2021-01-15T20:43:40.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8e5f3c2b-4094-40c1-9e23-a655c292f527", + "createdTime": "2021-01-15T20:43:39.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc68d3ac-907b-4af5-924f-ffb09205b003", + "createdTime": "2021-01-15T20:42:30.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23ee8b52-1b77-4298-a22f-c9d6e23c042b", + "createdTime": "2021-01-15T20:42:29.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa5f4df4-dcdb-4d28-8d5e-3fc20b23a884", + "createdTime": "2021-01-15T20:42:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "21487945-470a-41f6-b716-2d4590a77c3a", + "createdTime": "2021-01-15T20:42:28.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "963ff9a9-0c4f-4109-8094-66a09f07e43a", + "createdTime": "2021-01-15T20:42:28.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9c8f9e81-0806-4d78-b960-cb92a01ec4a1", + "createdTime": "2021-01-15T20:42:27.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c6efd48-027d-4a21-84a5-b83153e6fb69", + "createdTime": "2021-01-15T20:42:25.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6e719dbe-c4bf-4c63-91e3-f10a743641bd", + "createdTime": "2021-01-15T20:42:24.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "14925443-e703-4e75-a770-8ab7104a332e", + "createdTime": "2021-01-15T20:42:24.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33d58a77-f026-4d1a-a194-83d38fae4ade", + "createdTime": "2021-01-15T20:42:23.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0698d3a4-57ca-4af7-9fea-0483c11d5e1a", + "createdTime": "2021-01-15T20:42:23.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82c649ad-35f9-4794-9d14-bdaf75aec5c6", + "createdTime": "2021-01-15T20:42:22.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2943830a-3782-49b5-bd83-5cf7676848eb", + "createdTime": "2021-01-15T20:42:02.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22061768-0d66-48ca-b413-6b5f7437cefc", + "createdTime": "2021-01-15T20:42:01.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02abcfb3-0d4a-4c06-9fb4-b7fd76eb6324", + "createdTime": "2021-01-15T20:42:01.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "520fa2f8-4c9f-4cfa-bde6-070289f51f3d", + "createdTime": "2021-01-15T20:42:00.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "17bbc28a-b38b-4bc0-9207-c92baf06cd98", + "createdTime": "2021-01-15T20:42:00.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15e6c9ef-5f78-4e16-aa3e-b90afc41aae9", + "createdTime": "2021-01-15T20:41:59.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06906aa7-12ce-49cf-b07d-6920ce8a7f52", + "createdTime": "2021-01-15T20:41:57.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "84cf7fe8-0adc-49df-afb4-cc186efbd76c", + "createdTime": "2021-01-15T20:41:57.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "76fb6744-4033-4312-a9e4-980fe8a74c2a", + "createdTime": "2021-01-15T20:41:56.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d57c9954-a9a3-4e67-b72f-513345f7dde7", + "createdTime": "2021-01-15T20:41:56.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98228d58-8a56-4211-ad01-fed869bb2298", + "createdTime": "2021-01-15T20:41:55.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "79aa11d7-c364-44ee-a595-12f66c222faf", + "createdTime": "2021-01-15T20:41:55.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53bf2296-f0f8-42ba-a327-68cefa66d25b", + "createdTime": "2021-01-15T20:41:26.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "21653add-a9e1-411c-a436-26d5dbb0c52f", + "createdTime": "2021-01-15T20:41:26.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6d94fc2e-ba18-4c0b-86b4-1b0a12788e0e", + "createdTime": "2021-01-15T20:41:25.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "792413b8-987a-4eed-b821-0ed23b75cad6", + "createdTime": "2021-01-15T20:41:24.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fb89322f-67f2-4cc0-a38b-e7818755b39a", + "createdTime": "2021-01-15T20:41:24.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f5ac3cd-4f75-493f-ad81-19f7837169ba", + "createdTime": "2021-01-15T20:41:23.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d046b962-3054-42c0-b775-69b61253b020", + "createdTime": "2021-01-15T20:41:23.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cf9f4ab-70fc-46a1-93bf-97bb5eddeab7", + "createdTime": "2021-01-15T20:41:22.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a283146-0f2e-4817-9cfb-917dac5c32c4", + "createdTime": "2021-01-15T20:41:22.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "067d7e08-f058-456b-a572-22ee2246335b", + "createdTime": "2021-01-15T20:41:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8c6c4d1e-bb0d-4470-91bf-6ff3298f4fed", + "createdTime": "2021-01-15T20:41:21.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a13be996-4723-415f-a898-649a58d3fd0c", + "createdTime": "2021-01-15T20:41:21.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0534b514-3469-4961-9acd-4f88431e4c99", + "createdTime": "2021-01-15T20:41:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4846ac06-81d4-4bb4-b0c7-ca2999fd295f", + "createdTime": "2021-01-15T20:41:20.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e11e4cbf-4a55-4bf4-a791-94aee68d7989", + "createdTime": "2021-01-15T20:41:20.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce7226f1-f3d9-480a-a577-1414bf84b350", + "createdTime": "2021-01-15T20:41:20.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7809639b-de9d-4d9f-a77d-0670961459cb", + "createdTime": "2021-01-15T20:41:19.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cde4d7f1-73fa-4e9c-9d65-d187426933f2", + "createdTime": "2021-01-15T20:41:18.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d4a37c5-5d31-4f7f-9a1f-5fdf35f64655", + "createdTime": "2021-01-15T20:41:17.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c4d9135-f938-4290-8e5c-89dcda52f862", + "createdTime": "2021-01-15T20:41:16.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d1118ef5-5d78-4835-b53b-8aca67494ea6", + "createdTime": "2021-01-15T20:41:15.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0dd5ab3-1cd4-4509-bd9b-647e0e1adb51", + "createdTime": "2021-01-15T20:41:14.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "76803282-c4ff-4ba9-a430-baba5ee48982", + "createdTime": "2021-01-15T20:41:14.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b50b78c1-d486-4fdd-87dc-8ed10a0bcefd", + "createdTime": "2021-01-15T20:41:13.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b369ac47-5aa7-4716-bcf0-879c65eebafa", + "createdTime": "2021-01-15T20:41:13.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7c46382c-ad7c-4196-8c2d-37a97f28ee8c", + "createdTime": "2021-01-15T20:41:12.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b684da94-b6d4-4b06-8176-9852a19250e6", + "createdTime": "2021-01-15T20:41:12.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f91e380e-e281-4d8e-9a51-519be5c75cfe", + "createdTime": "2021-01-15T20:41:11.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa56a3c5-b18e-4db5-9437-b32493f6ae60", + "createdTime": "2021-01-15T20:41:10.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e4356ed-6890-407b-95b1-04674b2ce9ec", + "createdTime": "2021-01-15T20:41:10.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b05e3fee-ceee-40f3-8e32-eb986e41c248", + "createdTime": "2021-01-15T20:41:06.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f42a21b0-b25d-4ecf-8eae-dfc622d2d6b5", + "createdTime": "2021-01-15T20:41:06.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ac1d0ff8-84a9-4550-a9ee-09669e6a94ba", + "createdTime": "2021-01-15T20:41:05.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95a178d8-5464-4b63-8826-cc664c281ad3", + "createdTime": "2021-01-15T20:41:04.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f099c281-d864-4839-ad45-f9628811744d", + "createdTime": "2021-01-15T20:41:03.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "49b6808b-edca-483d-8b16-be1060f1e68c", + "createdTime": "2021-01-15T20:41:02.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39b23c65-3d68-4f09-8c4e-9f6ca1dafd32", + "createdTime": "2021-01-15T20:38:38.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c197421c-e2e9-498e-907f-7dc68b0e5470", + "createdTime": "2021-01-15T20:38:37.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ace42c9c-c6b0-404d-9acb-7ca4bbb0d0f5", + "createdTime": "2021-01-15T20:38:36.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e8632c7-c07a-4774-bcfd-ed20e4482143", + "createdTime": "2021-01-15T20:38:35.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8167c5a2-3d6d-4f23-be47-2178493d10a7", + "createdTime": "2021-01-15T20:38:35.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "91faf3f3-3da5-4077-9bb8-ef47cdc0e85e", + "createdTime": "2021-01-15T20:38:34.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62714bf9-ebee-4acb-a2d0-5b0625eec10d", + "createdTime": "2021-01-15T20:38:30.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a0caa006-0e77-4bd5-a63a-38a4f5cc4bb7", + "createdTime": "2021-01-15T20:38:29.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0a5736f-20bd-4829-a337-3530045bd75b", + "createdTime": "2021-01-15T20:38:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85dc2c9d-ac42-426a-b398-09e5b3f84db3", + "createdTime": "2021-01-15T20:38:28.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b96ef778-dca8-4b35-8d97-e8b4496b2aee", + "createdTime": "2021-01-15T20:38:27.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "48ca47f9-d97c-4581-80f2-f183c97c0910", + "createdTime": "2021-01-15T20:38:26.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba66e806-8daa-4cdd-a100-2e6447647e48", + "createdTime": "2021-01-15T20:38:01.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f58339ce-b1da-4cea-9a33-abd81f4b157d", + "createdTime": "2021-01-15T20:38:00.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12a81aff-14a4-46be-9d77-a313ba0a0c83", + "createdTime": "2021-01-15T20:38:00.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "246e4492-dca5-4d95-a84c-0efea4d335f0", + "createdTime": "2021-01-15T20:37:59.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "83cdd240-deed-4579-b309-608132ff83ae", + "createdTime": "2021-01-15T20:37:58.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0af4ef4-845e-4ce3-aa2d-00e32676b905", + "createdTime": "2021-01-15T20:37:58.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4b97c7cd-5c53-4e04-9d04-7775f6bd8118", + "createdTime": "2021-01-15T20:37:54.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "beedec76-5b0f-4687-bafd-315114bc97be", + "createdTime": "2021-01-15T20:37:54.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4d4011a4-02b6-4bf3-849d-f579b12d1377", + "createdTime": "2021-01-15T20:37:53.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9d815056-ccce-4446-aaf8-83112e1f4e78", + "createdTime": "2021-01-15T20:37:52.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "242a70ff-f220-41ca-aba0-8a2861a5a0d0", + "createdTime": "2021-01-15T20:37:52.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b9912ceb-1543-498f-907b-11e02288ca1b", + "createdTime": "2021-01-15T20:37:51.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d3243cb-93e9-4f49-b110-c01af7edae60", + "createdTime": "2021-01-15T20:37:35.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a8d1b0f-97ce-471d-95f1-8887f7038bcc", + "createdTime": "2021-01-15T20:35:03.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fcb4876-f324-4e0b-a9c0-543a13fd7bdf", + "createdTime": "2021-01-15T20:34:36.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "640024be-5957-493f-8cda-2fb7c397f3ca", + "createdTime": "2021-01-15T20:33:43.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b386acb1-9b07-4192-878a-66833befc234", + "createdTime": "2021-01-15T20:32:56.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d5370165-a9d6-4f0a-9cfd-cfe70ae9a9a1", + "createdTime": "2021-01-15T20:32:54.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75215d40-feea-4488-b032-e76d171af34a", + "createdTime": "2021-01-15T20:30:19.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2dce8de-7790-498d-a5b3-af5046fbd989", + "createdTime": "2021-01-15T20:30:11.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59b38131-8405-4179-9c99-d40e57fb9c6f", + "createdTime": "2021-01-15T20:12:03.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "028e386d-2ecd-4470-8927-e7036e5916f0", + "createdTime": "2021-01-15T20:19:02.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "59804b52-a97e-42cb-a8b7-078e0af90b43", + "createdTime": "2021-01-15T20:19:56.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e146df2-28b1-49c0-af05-1b4a09e597ef", + "createdTime": "2021-01-15T20:19:56.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57e01edf-3e6c-457c-b68b-c4031ed626a4", + "createdTime": "2021-01-15T20:19:55.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "860ff57e-2d16-4a10-a913-d970293603da", + "createdTime": "2021-01-15T20:19:55.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0af1ea52-23b5-453e-8c85-696f6ec1f97d", + "createdTime": "2021-01-15T20:11:52.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "179ddc4e-e6b3-4023-be2a-dd4313204ca5", + "createdTime": "2021-01-15T20:12:44.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "65cf3795-191b-4491-8a29-28358d53bc37", + "createdTime": "2021-01-15T20:13:29.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7cd923b-9867-4f8e-acd3-2f2a67f6928f", + "createdTime": "2021-01-15T20:19:02.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9edfa2ae-0fe2-445c-a97f-36c5c058dc6a", + "createdTime": "2021-01-15T20:19:01.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f85d023e-61d9-4a94-a1e7-ec3afb7f2d82", + "createdTime": "2021-01-15T20:19:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ecc0371-9eb7-48b2-aa45-875aa3e7072e", + "createdTime": "2021-01-15T20:13:29.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "464f7688-c448-434a-b913-322daf41dd20", + "createdTime": "2021-01-15T20:13:28.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "de7686d9-6dfa-4c04-aaa7-5224c174fcbe", + "createdTime": "2021-01-15T20:13:28.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b9b0bfc-7586-4514-918a-54932e1b8396", + "createdTime": "2021-01-15T20:12:46.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d286241c-0e0d-451a-ae38-32390c4c8222", + "createdTime": "2021-01-15T20:12:43.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d1ac0223-d82b-4a25-bf2c-0768d8fba703", + "createdTime": "2021-01-15T20:12:42.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a09d0429-93a8-4e13-b715-eed74edac0eb", + "createdTime": "2021-01-15T20:12:03.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "898c088e-ae1b-4661-91a6-ef178006aa21", + "createdTime": "2021-01-15T20:12:02.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "25d92240-de48-4cf9-9dd3-ea1934c0ef51", + "createdTime": "2021-01-15T20:12:02.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f649883-3888-4cb4-8bba-23cd2e8e8a59", + "createdTime": "2021-01-15T20:11:52.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b7b1cb7b-7469-4c96-bad1-0da264e7c0b8", + "createdTime": "2021-01-15T20:11:51.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0661310c-4e73-41e3-80ff-b09f3d19d5ca", + "createdTime": "2021-01-15T20:11:51.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab269a33-e9eb-4135-90b8-4e88822e0294", + "createdTime": "2021-01-15T20:11:40.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "400930e5-7f7b-4327-9f88-c4f899cd8aa7", + "createdTime": "2021-01-15T20:11:39.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ddfd0502-3f12-43b5-8879-8005d6965e8f", + "createdTime": "2021-01-15T20:11:39.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5816f8d3-584e-4a46-a78e-dbde22379abd", + "createdTime": "2021-01-15T20:11:38.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c4c087c-a028-4ad8-9628-e129522bb68d", + "createdTime": "2021-01-15T19:06:34.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7a95a58d-4734-4318-993b-70c52f916285", + "createdTime": "2021-01-15T19:06:23.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "87133b15-78ed-42b6-bfcb-4deff7a019ab", + "createdTime": "2021-01-15T19:03:19.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30b746b4-39a9-4307-b372-9bac88a8bf46", + "createdTime": "2021-01-15T19:06:18.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22d4d197-27eb-461e-86c8-8ad393c50419", + "createdTime": "2021-01-15T19:06:11.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae8018c-211f-4044-bda5-8c27166e6db0", + "createdTime": "2021-01-15T19:06:05.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c62f191-f549-40ef-a528-268315ce5534", + "createdTime": "2021-01-15T19:06:02.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a3a8cee5-6477-4528-aefc-e8a3e6a602f1", + "createdTime": "2021-01-15T19:05:58.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1aa7940c-d00d-4b01-a23b-b06458c94048", + "createdTime": "2021-01-15T19:06:57.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f1feb65-628b-46b1-84c4-13158673eb5d", + "createdTime": "2021-01-15T19:05:57.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8fd4ef8d-a469-4709-9996-8fa5080ee894", + "createdTime": "2021-01-15T19:05:53.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1145c8da-8a96-4beb-af6b-ea38ac50bd91", + "createdTime": "2021-01-15T19:05:52.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae392bc-4ac3-47ca-b134-aa870e8d2bae", + "createdTime": "2021-01-15T19:06:51.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1ab8443f-4f55-4775-9980-c880fe08d8d5", + "createdTime": "2021-01-15T19:05:47.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5be16cf0-fe27-416e-8972-d6888d7518b1", + "createdTime": "2021-01-15T19:06:40.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "36be5df5-faf3-4a64-841f-2f2fce7cf33d", + "createdTime": "2021-01-15T19:06:57.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803244b8-a76a-489c-8281-d5f81e19fc3a", + "createdTime": "2021-01-15T19:06:56.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f4f0747-17d8-4ca0-9924-de94e5a272a2", + "createdTime": "2021-01-15T19:06:55.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7e26c14-f6e9-40ec-9c02-e29c5243c56b", + "createdTime": "2021-01-15T19:06:55.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "47eb3cb8-8d23-4523-9db5-6f4fb04f18f8", + "createdTime": "2021-01-15T19:06:54.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9705723-d4de-43ad-a0e5-2024320d37a9", + "createdTime": "2021-01-15T19:06:50.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5abfa6f-470d-4abb-ad9d-fa4ff90f7e92", + "createdTime": "2021-01-15T19:06:49.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d8b1cf6c-61ad-4ec1-8064-9839954d5b76", + "createdTime": "2021-01-15T19:06:49.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c4fd830e-4162-48ed-9089-01be2196f2d9", + "createdTime": "2021-01-15T19:06:48.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7b7d389-5d11-405e-8137-32f5bc5f9ecd", + "createdTime": "2021-01-15T19:06:48.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17c8e446-f41d-4b5f-b9bc-c6ba5a426533", + "createdTime": "2021-01-15T19:06:40.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "010b9216-1d70-47c6-ac0e-45a11ff4b598", + "createdTime": "2021-01-15T19:06:39.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cf355b8-a82e-4599-891c-eb7bd8238b7d", + "createdTime": "2021-01-15T19:06:39.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b4fbaed-cda9-43d2-8dc5-94ab866e86a9", + "createdTime": "2021-01-15T19:06:38.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f67935b-0099-4a59-abe3-404a01d98203", + "createdTime": "2021-01-15T19:06:37.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5d56ebb-59ad-4829-95f8-0b44a3735d87", + "createdTime": "2021-01-15T19:06:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c9d6abc-ad8e-4cd9-8297-56a07555ec92", + "createdTime": "2021-01-15T19:06:33.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1665b5d-058f-4d5d-9841-fee3bc57ec12", + "createdTime": "2021-01-15T19:06:32.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bcbbf1d2-0968-4d9b-8033-5136aacdd8ad", + "createdTime": "2021-01-15T19:06:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0481f298-2f78-41e5-85e7-b496b6aac908", + "createdTime": "2021-01-15T19:06:31.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c64673c5-d61a-486c-aec0-8c93acdcb4f0", + "createdTime": "2021-01-15T19:06:22.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5373eaf6-d07d-4d6d-ada3-05dc43b0e951", + "createdTime": "2021-01-15T19:06:22.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "947cbf4f-941d-430d-ae68-717da4798dd4", + "createdTime": "2021-01-15T19:06:21.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "de943b97-52e9-49c0-822d-7ef6cbb19581", + "createdTime": "2021-01-15T19:06:21.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4710b8f2-c582-4a2b-a997-c5bbcc61481a", + "createdTime": "2021-01-15T19:06:20.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d318eafd-883e-4abd-a4a2-dfd1cb23c652", + "createdTime": "2021-01-15T19:06:18.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c696cf50-9e2e-48d8-ad61-7a6e26ed4e4d", + "createdTime": "2021-01-15T19:06:17.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "812db430-f5f0-4296-bf13-3b52b152de21", + "createdTime": "2021-01-15T19:06:17.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "14dee22f-e899-49b2-8835-781f87a2df54", + "createdTime": "2021-01-15T19:06:16.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7d2b0a9b-31eb-4045-b9bc-9bcb1ecc773d", + "createdTime": "2021-01-15T19:06:16.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "505ed816-5801-4d70-881c-94a842f60560", + "createdTime": "2021-01-15T19:06:10.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c223bc12-f85e-4f30-a5cb-0d681221ce97", + "createdTime": "2021-01-15T19:06:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "47ed1ecd-d71a-4f9b-a572-3fb8654e74d3", + "createdTime": "2021-01-15T19:06:09.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b3fdb13a-e469-49dc-9a3a-e242f659d8bd", + "createdTime": "2021-01-15T19:06:09.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7ac2ed59-1fca-4522-a378-7bb82248535e", + "createdTime": "2021-01-15T19:06:08.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "08e84b17-97aa-424b-a204-4581885b97a8", + "createdTime": "2021-01-15T19:06:04.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c70809cc-d4bd-481f-b950-2d7a65503e3c", + "createdTime": "2021-01-15T19:06:03.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe153242-bfa7-4499-8f1d-f6f145391368", + "createdTime": "2021-01-15T19:06:03.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "49977dde-7cae-49de-a160-6f5ebe5e8bef", + "createdTime": "2021-01-15T19:06:02.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8349e2d7-2fe7-4c59-9f6c-271bea0f2a0e", + "createdTime": "2021-01-15T19:06:02.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5f05bd7-d667-4d59-bfc6-a9716bd02020", + "createdTime": "2021-01-15T19:06:01.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2bca6d53-e8a5-44cb-ba46-93262b247502", + "createdTime": "2021-01-15T19:06:01.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "70f9f2e4-b3a8-48b7-8dd5-64e0aed36278", + "createdTime": "2021-01-15T19:06:00.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "10de23c3-a12d-406e-a55c-f77f3327f2df", + "createdTime": "2021-01-15T19:06:00.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "902bb3b8-71c2-443d-9954-85715b0930ce", + "createdTime": "2021-01-15T19:05:59.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4c740f3-8761-4fce-bb13-386c4ad768ed", + "createdTime": "2021-01-15T19:05:57.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c51483db-dfab-4799-8015-8edadf446fc2", + "createdTime": "2021-01-15T19:05:57.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d309153b-69e2-4ec4-a1a9-0b59bb83a15e", + "createdTime": "2021-01-15T19:05:56.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "673a7297-4a24-4044-b8eb-9bbcd929b6ff", + "createdTime": "2021-01-15T19:05:56.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ef6d6ff1-1691-48d8-b729-eb6216912e88", + "createdTime": "2021-01-15T19:05:56.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ab3017a8-dba7-4326-a2e1-d373ea7d8dc4", + "createdTime": "2021-01-15T19:05:55.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ddde456b-8fc9-447a-a12b-204c29b562fe", + "createdTime": "2021-01-15T19:05:55.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "15581959-d7cb-4fff-8e99-6ed4da88b8d1", + "createdTime": "2021-01-15T19:05:55.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c627704f-15b0-4390-ba55-233b70cd81e5", + "createdTime": "2021-01-15T19:05:54.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d7db8aef-3366-41c2-a749-32cac63e11a7", + "createdTime": "2021-01-15T19:05:54.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f8208cb-c754-48f6-8d41-7dfa61160378", + "createdTime": "2021-01-15T19:05:53.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "032e152e-6f4e-4870-9d6f-842ece3c8511", + "createdTime": "2021-01-15T19:05:52.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d6974d2-ed3d-4496-9187-b7e6b4c8cacb", + "createdTime": "2021-01-15T19:05:52.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0cad8e40-89ab-43c4-a5ff-1b1afcf5baaf", + "createdTime": "2021-01-15T19:05:51.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c70becba-f005-4e39-880e-eaae756edf96", + "createdTime": "2021-01-15T19:05:51.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33cf2dd8-d495-43f4-81be-d84c4be1ef26", + "createdTime": "2021-01-15T19:05:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8c219499-653f-4319-addd-96e11c9b6fab", + "createdTime": "2021-01-15T19:05:51.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "068cad20-4f87-44d7-a21c-42b24703f799", + "createdTime": "2021-01-15T19:05:50.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f65de20-3ed6-4429-a363-ce399f245359", + "createdTime": "2021-01-15T19:05:50.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6a8ad5e4-85a2-4d6e-94df-041ff42c3f31", + "createdTime": "2021-01-15T19:05:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06768d22-86a8-4e35-8601-b58cb3eb4c49", + "createdTime": "2021-01-15T19:05:46.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "72d05582-49db-46d5-b5a2-27d4c65721ce", + "createdTime": "2021-01-15T19:05:45.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afcb69b2-038c-4f9f-90c1-e072bd8299ae", + "createdTime": "2021-01-15T19:05:45.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ebc93928-9e4c-4772-b9ed-8bb8146d1bec", + "createdTime": "2021-01-15T19:05:44.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5cbd48e8-822a-4798-8a39-6ab835c63b8e", + "createdTime": "2021-01-15T19:05:43.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d41bfcc-103a-4778-95ce-9cb241472816", + "createdTime": "2021-01-15T19:03:18.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "768714bf-7165-4e7c-82b3-834113795848", + "createdTime": "2021-01-15T19:03:17.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b19867b8-40e9-460e-838a-19a2017ba09f", + "createdTime": "2021-01-15T19:03:16.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d429a387-30d5-4981-b9c3-dd0ed614b3ff", + "createdTime": "2021-01-15T19:03:16.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4cedd1d5-0d33-4755-81d6-5dd684b0aa76", + "createdTime": "2021-01-15T19:03:15.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05f76a20-1aaa-4e33-bf0b-db0812828692", + "createdTime": "2021-01-15T19:03:12.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bf4ef598-cf98-42cd-8bf4-a88fe601d5f1", + "createdTime": "2021-01-15T19:03:12.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c2b1991f-b609-40c6-bc72-5341e94f0b8d", + "createdTime": "2021-01-15T19:03:11.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "316483c7-ec2a-47ef-a4f4-f4ddb64c70db", + "createdTime": "2021-01-15T19:03:11.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0618aa4-ead2-4725-add1-a6a96acb7f4b", + "createdTime": "2021-01-15T19:03:10.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "aff9fda2-e93e-4f9c-969b-472dec12f3e8", + "createdTime": "2021-01-15T19:03:09.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1b6226f-ea48-4a24-9833-ee8c1b636d19", + "createdTime": "2021-01-15T18:56:17.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e414d98d-6234-4520-ab51-26e268584017", + "createdTime": "2021-01-15T18:55:11.022Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "486ba0a3-27a5-4d86-8a8e-c5c66383c0e8", + "createdTime": "2021-01-15T18:55:09.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea608bfa-8310-467c-a81e-c6df9f48a260", + "createdTime": "2021-01-15T18:54:43.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "844c8911-74b1-4312-b3ba-6ece98dd76f2", + "createdTime": "2021-01-15T18:54:42.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "52082120-dded-43e9-93bd-5a407b641bb8", + "createdTime": "2021-01-15T18:54:35.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baf86bdc-c48c-4b57-a8b7-63d32a0b6ed2", + "createdTime": "2021-01-15T18:53:49.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a66ce9-124a-49fe-b9ff-6d0ba5f73535", + "createdTime": "2021-01-15T18:52:00.075Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7afcc970-66fa-4643-b8d0-b0729be06861", + "createdTime": "2021-01-15T13:58:35.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d126569a-1dfb-4bf6-adf0-04841eeac30e", + "createdTime": "2021-01-15T13:59:33.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "372eaafe-2ed8-4ae0-bdb9-16d38a168047", + "createdTime": "2021-01-15T13:58:30.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1d1d8d67-46b8-41a7-992e-3f62c5fdc37c", + "createdTime": "2021-01-15T13:59:28.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "461ba9fa-f394-4daf-a183-78860203c0e8", + "createdTime": "2021-01-15T14:01:27.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f55a14bb-1d04-47d0-90c2-7170619c5c9a", + "createdTime": "2021-01-15T13:59:26.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "de2cab3d-61dd-4172-a48a-37d809c1af30", + "createdTime": "2021-01-15T14:01:22.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "01e2f04c-5427-43a6-a23d-980ecb2546cd", + "createdTime": "2021-01-15T13:59:20.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "24884131-7770-4e83-8bf2-bdc4c87043a7", + "createdTime": "2021-01-15T14:01:18.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3bc227f5-307e-47dd-a9f9-1768f2bb5ed5", + "createdTime": "2021-01-15T14:01:12.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b3081549-8c02-4f32-8ce9-06fb93236fe5", + "createdTime": "2021-01-15T14:01:51.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ed32d6d-6dc3-4c23-aa50-6bdd7584c08e", + "createdTime": "2021-01-15T14:01:50.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e031d433-c1ed-44f8-a9cf-ab17aff19ada", + "createdTime": "2021-01-15T14:01:50.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5497d5c5-1c1a-4274-a4de-a97f91f8f2ae", + "createdTime": "2021-01-15T14:01:49.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3004d827-45d4-49d4-827c-aa8770896ace", + "createdTime": "2021-01-15T14:01:48.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d9777865-a8fb-4816-a1ce-c1980169d1a1", + "createdTime": "2021-01-15T14:01:48.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e994c408-4491-4913-9ecf-b738cfab38d7", + "createdTime": "2021-01-15T13:55:44.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30084d3f-8ad2-41ef-b37f-9c1e6e4f199b", + "createdTime": "2021-01-15T14:01:45.46Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d77dc8e9-75e9-42ef-97eb-09c0109dc0d8", + "createdTime": "2021-01-15T14:01:44.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "75a9bbd4-7857-45cd-b8fd-62df63413115", + "createdTime": "2021-01-15T14:01:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03020e70-d9fe-4b4c-af7b-b4b5a9bb0088", + "createdTime": "2021-01-15T14:01:43.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c03ffda6-036a-4072-9132-9a421e32a502", + "createdTime": "2021-01-15T14:01:43.094Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "39204ed8-d633-4d9a-b629-18e805525358", + "createdTime": "2021-01-15T14:01:42.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f73608e2-7806-4c87-9f9a-8b859985b749", + "createdTime": "2021-01-15T14:01:27.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f4275696-e0a4-444a-86ba-cd865d67974f", + "createdTime": "2021-01-15T14:01:26.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "713282c5-2474-4dab-95d5-444f98d43f9f", + "createdTime": "2021-01-15T14:01:26.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9ab4ed0b-f1cc-4021-8e85-1f3d65410faf", + "createdTime": "2021-01-15T14:01:25.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c2bc97da-0719-45b3-bcd7-daaceca3fcb2", + "createdTime": "2021-01-15T14:01:25.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df34e81d-abc2-4f1c-baa9-084c9223f841", + "createdTime": "2021-01-15T14:01:22.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1b25096-8a4f-4213-83df-e21fdc053f90", + "createdTime": "2021-01-15T14:01:21.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "472709b7-e8f2-46fe-ba0c-ca38d43914d1", + "createdTime": "2021-01-15T14:01:21.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6f49e787-646c-4561-b572-2a9f5c150694", + "createdTime": "2021-01-15T14:01:20.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe597f73-0473-47b9-8faa-e25caf515631", + "createdTime": "2021-01-15T14:01:19.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "992dc115-064e-4829-824a-bf48fa705761", + "createdTime": "2021-01-15T14:01:18.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9f01017b-4436-4307-8ac7-7918cd80a759", + "createdTime": "2021-01-15T14:01:17.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a6315eef-78a0-4faf-8de3-dfc851a4d2d1", + "createdTime": "2021-01-15T14:01:17.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a479045-16c0-4efe-a5d9-41dd9a5b655b", + "createdTime": "2021-01-15T14:01:16.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81461f56-f804-4f4a-9f8d-0652664e3d3e", + "createdTime": "2021-01-15T14:01:15.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "972e6721-9d44-4acb-be2b-cd518d55bafc", + "createdTime": "2021-01-15T14:01:12.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6e5e42ba-d59c-4b0b-af18-86080e22a1b0", + "createdTime": "2021-01-15T14:01:11.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "483b54bd-e877-4132-b704-f7ebaff1efcb", + "createdTime": "2021-01-15T14:01:11.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ac7ddef-7cb2-49f7-a7da-59a0441187cc", + "createdTime": "2021-01-15T14:01:10.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d340b3ec-03a4-4fa5-8bee-5a844d2eb018", + "createdTime": "2021-01-15T14:01:10.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f8e5435-e190-40a9-a8da-aac65891bf0f", + "createdTime": "2021-01-15T13:59:32.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "887dc187-6b31-4137-9a71-9bbb1a37cda5", + "createdTime": "2021-01-15T13:59:32.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b800d43-ee6e-47f5-a858-5b107c4c0200", + "createdTime": "2021-01-15T13:59:32.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3122ecbc-04d4-4c94-8929-9a5a3db208c9", + "createdTime": "2021-01-15T13:59:31.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5308d8ab-1913-43fa-94c9-202cf7ec7994", + "createdTime": "2021-01-15T13:59:30.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "078c1ec1-3c56-464d-b419-5f0b1b95d5ed", + "createdTime": "2021-01-15T13:59:28.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a471b7f8-adb2-4461-90bd-4d7c95f203f5", + "createdTime": "2021-01-15T13:59:27.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd1dcfe2-385e-435e-a9c3-0de08088851a", + "createdTime": "2021-01-15T13:59:26.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee7346ac-2e2a-4448-a59a-6172b4a8c70b", + "createdTime": "2021-01-15T13:59:26.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "08706471-76f3-43e3-bce0-7469bf713c13", + "createdTime": "2021-01-15T13:59:25.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55b7100e-a6cb-4189-ad4c-7bc101a6d405", + "createdTime": "2021-01-15T13:59:25.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f67abce7-ca22-4ebb-9ff2-4ee1bc528103", + "createdTime": "2021-01-15T13:59:24.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7d7d0d-90ad-475f-ae5b-670f42786598", + "createdTime": "2021-01-15T13:59:24.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "01c8a7a8-73de-42a0-8aa3-77864f78201a", + "createdTime": "2021-01-15T13:59:23.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "faec74f0-8e87-485d-bc25-10397e079f06", + "createdTime": "2021-01-15T13:59:23.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62d6418e-58e8-430b-96f6-c3f04258410a", + "createdTime": "2021-01-15T13:59:19.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bb1794e-7ebc-4c74-a0d5-d1b3d7b707b0", + "createdTime": "2021-01-15T13:59:19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "98662986-ba2d-40c8-b66f-8b25c18d64f2", + "createdTime": "2021-01-15T13:59:18.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "125de8c2-e79e-4c76-8528-857e7ff13381", + "createdTime": "2021-01-15T13:59:17.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cafa95b3-affd-43f7-bfa4-cc8af5a16b9f", + "createdTime": "2021-01-15T13:59:17.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edee361a-5bde-4f4c-8d2e-a340940896b1", + "createdTime": "2021-01-15T13:58:35.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bfa40072-02df-4bd4-b3cb-9d57f56a5fa3", + "createdTime": "2021-01-15T13:58:34.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b422bb6f-0c49-4090-b3de-6246d4408c56", + "createdTime": "2021-01-15T13:58:33.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8bb314c8-79bd-4eab-b4ec-85fed81c5a5c", + "createdTime": "2021-01-15T13:58:33.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0517bb42-3d63-4eaf-9516-f8f3e22ac952", + "createdTime": "2021-01-15T13:58:32.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "feb1103a-8958-446b-b716-44639f20e5a8", + "createdTime": "2021-01-15T13:58:29.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6964f1ec-fb25-46e3-9cc2-40b3f2b63108", + "createdTime": "2021-01-15T13:58:28.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bb38434a-729f-4f41-82b4-342b139c26b5", + "createdTime": "2021-01-15T13:58:28.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0e96ec5b-40d8-47a5-a6b7-4cc25d6a6633", + "createdTime": "2021-01-15T13:58:27.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2a31d68d-32b5-477f-9b13-2cdcb5597ca5", + "createdTime": "2021-01-15T13:58:27.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "359496af-a317-4983-aa9e-90d7684dbfdb", + "createdTime": "2021-01-15T13:55:43.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1adde86-8c4b-47d8-bc48-35e806c8efde", + "createdTime": "2021-01-15T13:55:43.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54879c77-06cf-4744-8494-03611a865825", + "createdTime": "2021-01-15T13:55:42.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "093eb28b-7da0-4d0c-80a4-e5323638799c", + "createdTime": "2021-01-15T13:55:41.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f319ee84-bcf1-49f9-bf35-505ff132ab63", + "createdTime": "2021-01-15T13:55:41.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30812f05-e147-4afe-98c7-bf342878b76c", + "createdTime": "2021-01-15T13:55:37.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f941b35d-a45b-4c45-9d48-7b61629bb44c", + "createdTime": "2021-01-15T13:55:36.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "783604df-8899-4b5e-86ee-dae65aefbf22", + "createdTime": "2021-01-15T13:55:36.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "716ec527-44e1-4f9a-8683-10a53f05199a", + "createdTime": "2021-01-15T13:55:35.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0f22f498-11ab-412f-925f-03516d2226af", + "createdTime": "2021-01-15T13:55:34.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "30be140a-9b01-4cdc-adab-2a44ee58e3c3", + "createdTime": "2021-01-15T13:55:33.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b964cf9c-b015-473c-98ea-c39775f65265", + "createdTime": "2021-01-15T13:53:39.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d25cbf7-c115-47c1-9064-cf05b877051a", + "createdTime": "2021-01-15T13:53:19.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c3cce8b-54cc-4b5c-b57b-2041993fd6fd", + "createdTime": "2021-01-15T13:52:57.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a1d7427-0fc0-4d25-bcab-2b6a65775851", + "createdTime": "2021-01-15T13:50:56.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12a050da-da72-4be5-92e6-f7e18b87dd77", + "createdTime": "2021-01-15T13:50:20.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d955a69-6f82-4829-bf39-62e9ea23ca2f", + "createdTime": "2021-01-15T13:49:30.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dfa50be7-83c6-461a-81a2-f67fba5269c4", + "createdTime": "2021-01-15T13:48:15.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2806c530-6588-4adf-90aa-c0b6a8299d9b", + "createdTime": "2021-01-15T09:16:03.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad3485fa-5175-41e5-bf75-340e23d2822c", + "createdTime": "2021-01-15T09:16:02.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8f5e0d70-d41f-4e5b-ad22-31448740153c", + "createdTime": "2021-01-15T09:16:02.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "93ebc5c7-c3bc-4618-917c-caf70b7f2f95", + "createdTime": "2021-01-15T09:16:01.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57062d89-11ce-4e5f-ae29-1f3e0639f913", + "createdTime": "2021-01-15T09:12:12.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ab65de02-9fc6-4d96-a1e0-3d638b3dae95", + "createdTime": "2021-01-15T09:12:11.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c1ead2b-7b18-4874-8394-3abd2a9f3d01", + "createdTime": "2021-01-15T09:12:10.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f60a05a-bd50-4d71-b9cc-3d86431175b2", + "createdTime": "2021-01-15T09:12:10.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbfe8d6e-bec0-4acd-8a4f-565af8542a7f", + "createdTime": "2021-01-15T09:05:21.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ce861e50-8f3e-48ff-baca-550ec25a4084", + "createdTime": "2021-01-15T09:05:20.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b39c9fdd-1fc2-419e-8e6a-1a44259ee231", + "createdTime": "2021-01-15T09:05:20.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "98faee57-f828-492f-a9e3-50d7171bda64", + "createdTime": "2021-01-15T09:05:19.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eef8960c-521b-494e-91a6-632b3ecd9a55", + "createdTime": "2021-01-15T09:01:23.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41575b95-c21d-49bc-8998-50ee8cbe9d4d", + "createdTime": "2021-01-15T09:01:22.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35f66bb3-cbb7-47d8-baa3-d9764f7d0007", + "createdTime": "2021-01-15T09:01:21.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb79d206-5494-414c-b502-f17d82951e4b", + "createdTime": "2021-01-15T09:01:21.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ecf14bec-6682-4f78-969d-8b411fe9405c", + "createdTime": "2021-01-15T08:47:08.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "338e416b-11a1-4c6b-9310-3cc7b8956f66", + "createdTime": "2021-01-15T08:47:07.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "547d037c-34b0-487c-8632-530ed5183254", + "createdTime": "2021-01-15T08:47:07.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf5ed8ab-660d-4244-9022-40454c9ac66b", + "createdTime": "2021-01-15T08:47:06.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "226cc709-4df3-4c5b-a0ed-944d97cfd547", + "createdTime": "2021-01-15T08:41:30.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "62c31ae0-c267-41c0-849e-75980efa1ff3", + "createdTime": "2021-01-15T08:41:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d16a90c-9fac-41b7-a1b2-55af5b7a08b6", + "createdTime": "2021-01-15T08:41:28.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f395e21-5466-4a51-ab59-399aceb19839", + "createdTime": "2021-01-15T08:41:27.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b904950-c3ba-42f9-85cb-2468105f7d34", + "createdTime": "2021-01-15T08:24:01.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "61601be6-8e0c-4239-acb5-58cc5d47834c", + "createdTime": "2021-01-15T08:35:50.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5ea9b864-168b-4b1a-8bd3-2b49548e0f64", + "createdTime": "2021-01-15T08:40:41.034Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c1b7dcd-386a-4c8f-8b08-d3a71dd6684d", + "createdTime": "2021-01-15T08:40:40.119Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0446b1b5-d167-40fc-855a-7891b22e49ee", + "createdTime": "2021-01-15T08:40:39.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60e79bd4-e261-4b1b-9548-333dfb086978", + "createdTime": "2021-01-15T08:40:38.252Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9aabab7-d67b-4706-b124-7d2ee007a896", + "createdTime": "2021-01-15T08:32:04.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f71639d0-aa4e-4b1b-87ea-7f8debdcaf69", + "createdTime": "2021-01-15T08:35:49.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05109794-faf4-4c22-b271-51cb094f5596", + "createdTime": "2021-01-15T08:35:49.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96f07200-0d18-4b16-bb8d-3c086f31e501", + "createdTime": "2021-01-15T08:35:48.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65fef6d2-aaf4-4068-aba3-10a6d0f3d005", + "createdTime": "2021-01-15T08:32:04.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bed71064-bb8d-49c4-b894-ddf4a0eb7874", + "createdTime": "2021-01-15T08:32:03.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b902bc0-7d64-45b2-8e0f-5bbdccb8085d", + "createdTime": "2021-01-15T08:32:03.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5be25d9-6310-4432-b7dd-692027ba640c", + "createdTime": "2021-01-15T08:24:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2f4f7a03-22d1-4a45-8413-0c8f2b920366", + "createdTime": "2021-01-15T08:24:00.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0ea1667e-732d-403b-b7ad-d6f225aa6e97", + "createdTime": "2021-01-15T08:23:59.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4dddd10d-4144-4ea2-997f-c7f686900b8c", + "createdTime": "2021-01-15T08:20:31.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8ca0e293-5a34-4566-aa04-fb179477888e", + "createdTime": "2021-01-15T08:20:30.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "efca5a2d-76c3-405e-accc-08e4c68af66a", + "createdTime": "2021-01-15T08:20:30.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a89c5bf-479b-4e53-9382-e620066bbb71", + "createdTime": "2021-01-15T08:20:28.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c689a13-fd26-46e0-90c6-daf733ae7f37", + "createdTime": "2021-01-15T06:18:44.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bd06452d-a327-4aaf-b852-95a97b923e76", + "createdTime": "2021-01-15T06:18:46.101Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6c70d3cb-f56c-48b3-ad66-f2e8f1016573", + "createdTime": "2021-01-15T06:18:43.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ede4f21b-5bc7-48db-8367-87f42092a7a3", + "createdTime": "2021-01-15T06:18:42.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee0b241d-53dc-4fd9-be6a-a9931fc25e07", + "createdTime": "2021-01-15T06:17:47.476Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cc4f455e-b40c-4326-877e-19f47256d982", + "createdTime": "2021-01-15T06:17:46.563Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "068818fb-b2c7-4e60-9971-192d6f9c2e2f", + "createdTime": "2021-01-15T06:17:45.557Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "66c19bc5-9cd8-45fe-8dbd-bd48e5ed475f", + "createdTime": "2021-01-15T06:17:43.784Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d9e8a99-99ba-4bd2-8629-62ceb1bfd574", + "createdTime": "2021-01-15T00:52:24.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "eaa06967-d778-44fd-8482-2384327b8f83", + "createdTime": "2021-01-15T00:52:23.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "363e3643-169d-42c1-a9f2-d881d3682556", + "createdTime": "2021-01-15T00:52:23.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "10764e2a-e81e-4589-acc3-a797ff1a20a7", + "createdTime": "2021-01-15T00:52:22.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "77f6c86a-084e-45c7-ba71-33f3aae3ea3f", + "createdTime": "2021-01-15T00:52:21.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ed854604-2add-4b03-9c62-702eda237d99", + "createdTime": "2021-01-15T00:52:21.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c6b2892e-6450-40f5-9344-7cbf947b4c9d", + "createdTime": "2021-01-15T00:52:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3402ea17-278e-40e1-8c04-d99508503fd7", + "createdTime": "2021-01-15T00:52:17.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4dbc1f44-0f52-44d0-97c8-b3b0481ca3e6", + "createdTime": "2021-01-15T00:52:17.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "96dba8d3-d9c7-4487-9716-c8eb08143678", + "createdTime": "2021-01-15T00:52:16.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "63c1a356-955a-4b45-bfff-c33c42cf36f3", + "createdTime": "2021-01-15T00:52:16.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "267cfaba-c2a1-4329-a72f-7b86482e6c0d", + "createdTime": "2021-01-15T00:52:15.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8223bd6-811e-40a6-afd1-f50c2c3f6361", + "createdTime": "2021-01-15T00:46:44.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0fcbcf72-d4b4-4a43-a2e9-d466d46c5435", + "createdTime": "2021-01-15T00:35:07.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8d6383b7-756e-4a4b-8ea9-7b3c39c713d3", + "createdTime": "2021-01-15T00:33:49.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7abb7266-cb13-4826-a6cf-e1d4e7d0adc5", + "createdTime": "2021-01-15T00:36:48.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d959f662-f73d-4f26-a3f8-7b1f7f9d08da", + "createdTime": "2021-01-15T00:34:47.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "91a41921-128c-44df-83cf-b8ab1c888747", + "createdTime": "2021-01-15T00:32:44.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7dffc1ad-b156-4445-b71f-c2b438335ded", + "createdTime": "2021-01-15T00:33:42.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1edd897b-1448-4bd5-bb14-a4c2a79fd82e", + "createdTime": "2021-01-15T00:36:41.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d2869702-0d77-42b2-91d2-32ec51af91b4", + "createdTime": "2021-01-15T00:34:40.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b84f3ca-01ee-4a0a-8d1b-1094bd761b74", + "createdTime": "2021-01-15T00:35:29.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2c205f6e-02ce-4e25-8994-2ec87522b49e", + "createdTime": "2021-01-15T00:35:22.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f7e9e1c2-fe14-460a-8b0e-79103431067e", + "createdTime": "2021-01-15T00:37:19.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d8152dad-6430-45ee-9f48-0b3ad552c0e5", + "createdTime": "2021-01-15T00:37:19.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2bb30a8-a994-4cf9-a80e-eb770450c800", + "createdTime": "2021-01-15T00:37:18.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c0ee0ec-c128-4e46-9bff-1e703be06b3a", + "createdTime": "2021-01-15T00:37:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8ef7ecf0-ff8b-43ca-bdcd-ab89e6fbff0d", + "createdTime": "2021-01-15T00:37:17.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fc9eb64e-ff79-45e2-9dfd-74cee97c5b1a", + "createdTime": "2021-01-15T00:37:16.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9cd5d346-7b1d-4f5a-b383-e68c49ef481e", + "createdTime": "2021-01-15T00:35:13.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4fa2b406-8d3f-4880-8681-90bffb4b8bb3", + "createdTime": "2021-01-15T00:37:13.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4feaf397-b9bd-447e-8ae1-28c323eaebd7", + "createdTime": "2021-01-15T00:37:13.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f15ec22a-09f1-4a8d-93f4-fd596940a90c", + "createdTime": "2021-01-15T00:37:12.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803c6917-0d22-4d69-9397-b0397846599c", + "createdTime": "2021-01-15T00:37:12.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "31f9f9a2-a784-4e19-8e05-7eef9b40017f", + "createdTime": "2021-01-15T00:37:11.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82ca0013-70cb-4d3f-909c-5743daaf9e75", + "createdTime": "2021-01-15T00:37:10.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b62a316f-e147-4214-83aa-abe7c9a30696", + "createdTime": "2021-01-15T00:36:47.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02d04707-66a7-45f0-b867-c54a4891eac8", + "createdTime": "2021-01-15T00:36:46.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "34b2aa74-4f01-4724-b7c3-edc2d37a4c79", + "createdTime": "2021-01-15T00:36:46.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "897c1fd2-bcb7-4b3f-9147-8069d33f0b48", + "createdTime": "2021-01-15T00:36:45.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c616bd5b-2b3f-40e2-b036-42b2864a274f", + "createdTime": "2021-01-15T00:36:44.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "567026e0-8a31-4fd9-b1bd-10b09fe9aa17", + "createdTime": "2021-01-15T00:36:40.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7287381a-838e-4ce1-8660-3c1444bfe2a8", + "createdTime": "2021-01-15T00:36:40.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1647dcbf-e605-433b-8545-199aaa4b7c24", + "createdTime": "2021-01-15T00:36:39.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2b781d3-c987-4e92-aa48-ff597f7c4596", + "createdTime": "2021-01-15T00:36:39.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d3b36aaa-288a-4842-b219-2b3df6af5cd7", + "createdTime": "2021-01-15T00:36:38.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "179f0777-97c2-476f-b4b9-7fd39021e009", + "createdTime": "2021-01-15T00:35:28.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4392d86e-0d88-478b-8eb5-4aaf8be3ebcf", + "createdTime": "2021-01-15T00:35:28.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67fd414b-176a-4df5-b8de-f51aa4a273ce", + "createdTime": "2021-01-15T00:35:27.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9093540c-088e-4745-8399-680b4a8197f6", + "createdTime": "2021-01-15T00:35:26.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4196f6cd-0d9b-4b9c-a126-0503541b9485", + "createdTime": "2021-01-15T00:35:26.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a0f3614-145b-4ec0-8a3a-6badb184b33a", + "createdTime": "2021-01-15T00:35:21.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a583e232-3329-4493-b342-498273a92d28", + "createdTime": "2021-01-15T00:35:21.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33676a74-1ce1-4fa4-93b1-e983e30a1ec7", + "createdTime": "2021-01-15T00:35:20.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6621aba3-c0d4-49cd-afac-a353454ddf7c", + "createdTime": "2021-01-15T00:35:19.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3dc46692-ae05-4a35-8817-bbfecc40b980", + "createdTime": "2021-01-15T00:35:19.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f962c24-8beb-422a-adf5-82637d60603b", + "createdTime": "2021-01-15T00:35:13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3721f93-b300-464d-b1e2-9a1e58892dcd", + "createdTime": "2021-01-15T00:35:12.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff462a4-fda0-45da-a0ca-3cc50cad35c7", + "createdTime": "2021-01-15T00:35:11.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4e5681f-64e0-4ff0-8bf6-1cf6e7e91616", + "createdTime": "2021-01-15T00:35:11.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "73db4976-921c-43f3-924f-a958e53eb537", + "createdTime": "2021-01-15T00:35:10.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d2d8250-1545-4c3a-8797-90f31846a78d", + "createdTime": "2021-01-15T00:35:07.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3c9e26e-2b34-4f8d-8987-f00343a640c7", + "createdTime": "2021-01-15T00:35:06.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9ae0c504-7cd0-4220-b2ff-207383140dc1", + "createdTime": "2021-01-15T00:35:06.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b7d0e2f-c1bd-4b53-83f5-ef5c5bd9daff", + "createdTime": "2021-01-15T00:35:05.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a891b38f-0405-43c8-966b-76ea494f66c7", + "createdTime": "2021-01-15T00:35:04.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f2b0b0c-3c00-4fb2-a29c-1d2523d09c61", + "createdTime": "2021-01-15T00:34:46.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0c24af4-be2c-4e07-8d02-92356d4b93b1", + "createdTime": "2021-01-15T00:34:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3d2037e-50e0-4bff-968d-915f85b59bde", + "createdTime": "2021-01-15T00:34:45.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6edd97cd-942d-47ab-bcd3-3854d6c529d7", + "createdTime": "2021-01-15T00:34:44.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c9fcf996-15a9-45d5-bdb7-ebab03967644", + "createdTime": "2021-01-15T00:34:44.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6902d281-18df-4074-a008-b242c987c782", + "createdTime": "2021-01-15T00:34:40.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95370b46-5024-428a-a87d-7c76497fc6e8", + "createdTime": "2021-01-15T00:34:39.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8c24c9b0-f475-4a97-becd-e9210ad52980", + "createdTime": "2021-01-15T00:34:38.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1587d0e7-575b-4277-904a-8d8e5e25fadc", + "createdTime": "2021-01-15T00:34:38.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "deda3e13-d19f-4569-980c-55b50945d1c8", + "createdTime": "2021-01-15T00:34:37.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79109ad9-fbef-4513-98ce-e0a290c512f8", + "createdTime": "2021-01-15T00:33:48.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acb117be-3b56-481b-856d-1a5079e2b368", + "createdTime": "2021-01-15T00:33:47.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1dbde4a9-abe4-4f53-bc8e-a1e106c7e3cc", + "createdTime": "2021-01-15T00:33:47.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c68b1707-96bd-4f26-b5fc-665310a2fec8", + "createdTime": "2021-01-15T00:33:46.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "015b3307-6463-4bd0-8aa2-b94363bf01b0", + "createdTime": "2021-01-15T00:33:46.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "174f3729-3ddb-4290-bd37-07e9832c0faf", + "createdTime": "2021-01-15T00:33:42.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28fff6b7-9767-413a-b545-4f443677e049", + "createdTime": "2021-01-15T00:33:41.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6f6bc036-067a-4ac9-9e89-c90dff2704d5", + "createdTime": "2021-01-15T00:33:40.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43cb4bb4-221b-45f1-be46-6095d1af46b6", + "createdTime": "2021-01-15T00:33:40.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4f04b312-528f-43de-aade-6d6a46644f05", + "createdTime": "2021-01-15T00:33:39.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba5178ee-5d42-46e7-b4fc-8f40f8066243", + "createdTime": "2021-01-15T00:32:43.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a565d335-ab91-4eeb-9859-54ba829f55d3", + "createdTime": "2021-01-15T00:32:42.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "de80b484-a926-4089-a507-23903201bc5f", + "createdTime": "2021-01-15T00:32:42.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98067a81-1f73-4fbb-a1b1-ef23c0413e93", + "createdTime": "2021-01-15T00:32:41.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "837f6ba1-9b70-4f2b-9f4e-73d9adee1604", + "createdTime": "2021-01-15T00:32:41.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5db9b4f-4831-4bc7-be4a-9d46375c4ec0", + "createdTime": "2021-01-15T00:32:37.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1a1be7ce-e9b7-42e1-a8ec-28b833878e34", + "createdTime": "2021-01-15T00:32:36.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7829c81-8d11-4264-9b55-027c38537a52", + "createdTime": "2021-01-15T00:32:36.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2417bcf4-c292-4944-82a4-5381a7250a06", + "createdTime": "2021-01-15T00:32:35.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a3064ba-5f5b-417c-8017-abd4613673d4", + "createdTime": "2021-01-15T00:32:34.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1a4d2ff1-d102-42b2-b370-ed995b924b9e", + "createdTime": "2021-01-15T00:32:33.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bca89a7a-f4bd-44c4-84bb-7e21195d1808", + "createdTime": "2021-01-15T00:29:00.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2e7c9c9-9a95-4093-bd46-2b0c19ea9ae4", + "createdTime": "2021-01-15T00:27:56.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51e31a6d-53fa-47ed-a080-43fd85b18f60", + "createdTime": "2021-01-15T00:27:00.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03c20569-bb32-4f3d-b92c-87aaed959a21", + "createdTime": "2021-01-15T00:26:51.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9993875d-c733-4a3e-be46-973c329ffb36", + "createdTime": "2021-01-15T00:26:36.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ce0357d-9dbd-4d5d-8090-c463c2025398", + "createdTime": "2021-01-15T00:25:00.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02bcc115-e1b6-4158-bee1-3aa4d105bcc2", + "createdTime": "2021-01-15T00:24:15.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc4c8b98-482e-471c-8171-cc30b27bf571", + "createdTime": "2021-01-14T20:10:05.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "41dad869-bbce-4ffe-bac1-4a839cda301a", + "createdTime": "2021-01-14T20:11:02.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce46ff4-ce36-4d11-98f9-d957029cc8e5", + "createdTime": "2021-01-14T20:14:00.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1e186f63-5ee6-42dd-bdb9-61a483af2aef", + "createdTime": "2021-01-14T20:14:51.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "42433eb2-e841-40d8-90d2-5e2251cec442", + "createdTime": "2021-01-14T20:10:39.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "baa439a0-b440-4624-84bc-c5642aacb8ec", + "createdTime": "2021-01-14T20:16:32.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2d64667b-8754-4f8f-b5b5-dc8a659ccf0c", + "createdTime": "2021-01-14T20:16:32.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7869c585-c283-4e82-8d99-8280be90dda2", + "createdTime": "2021-01-14T20:16:32.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0dae039e-af52-4740-9009-e8f0b2ac83a6", + "createdTime": "2021-01-14T20:16:31.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7994335-3a0b-4f5b-8c27-b62a2c0e6478", + "createdTime": "2021-01-14T20:14:51.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "26e4edbe-7dfc-4fe1-9c65-564110268c4d", + "createdTime": "2021-01-14T20:14:50.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2fabc4b4-da2b-48ea-ab79-0bc4b60ef921", + "createdTime": "2021-01-14T20:14:50.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff87d87-0271-4f01-8d9d-7d4ea6c4a211", + "createdTime": "2021-01-14T20:14:01.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2eafddc3-4265-4eef-a8b6-2e41a8a73de5", + "createdTime": "2021-01-14T20:14:00.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "84a05b04-6ed8-4532-8cdd-84fa0fe7c6fe", + "createdTime": "2021-01-14T20:14:00.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1cfb571-d994-43a9-abf6-625b38eb991e", + "createdTime": "2021-01-14T20:11:02.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9ce7294-2689-4726-9625-ca594960b283", + "createdTime": "2021-01-14T20:11:01.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bde83fe3-70e2-4f74-aa9c-5b34cd40b129", + "createdTime": "2021-01-14T20:11:01.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff69d416-6993-4538-8715-7ad09d1f21a0", + "createdTime": "2021-01-14T20:10:40.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0742de03-38ad-4fc1-ac95-c87452a4351b", + "createdTime": "2021-01-14T20:10:38.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cbb90eec-ad6f-4ce2-b630-8a8d8564e316", + "createdTime": "2021-01-14T20:10:37.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34214102-36f3-447b-afd5-0689f81d1742", + "createdTime": "2021-01-14T20:10:05.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f84f5c23-4063-407c-afd4-5035160b7f9c", + "createdTime": "2021-01-14T20:10:04.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9647343d-b57a-4972-b50c-03940967cfe3", + "createdTime": "2021-01-14T20:10:04.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "addf8f2e-dfe4-40ab-b06f-db05b807619b", + "createdTime": "2021-01-14T20:10:04.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f63bdad-c05e-44ad-bf75-ab60e2dc774a", + "createdTime": "2021-01-14T20:10:03.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f1b584ec-0438-4692-89dc-24d2b9cac6f4", + "createdTime": "2021-01-14T20:10:03.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adf83345-27a3-4d6f-9740-42218174b87b", + "createdTime": "2021-01-14T20:10:02.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc67dc7-d2e6-456d-9b37-4b7ec22c4ba7", + "createdTime": "2021-01-14T14:07:15.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72506e97-520b-429c-88bd-9beffb542070", + "createdTime": "2021-01-14T14:07:14.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3177ddc-6e45-4c5d-9ef5-be14ebe2d41c", + "createdTime": "2021-01-14T14:07:14.332Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1a10ce3a-616f-4cba-b032-6005733d0150", + "createdTime": "2021-01-14T14:07:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05b0615a-220b-4b48-9b4f-3851353ccb08", + "createdTime": "2021-01-14T14:04:22.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "204a1e6d-90a3-4cd9-8d69-b8122e6341dd", + "createdTime": "2021-01-14T14:04:21.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4389fa05-d197-4eb0-b269-83edad5a4c56", + "createdTime": "2021-01-14T14:04:21.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce2f964d-e3dd-46df-bb1a-284fad50a4fb", + "createdTime": "2021-01-14T14:04:20.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58422070-5db9-4555-9689-190108678a00", + "createdTime": "2021-01-14T13:56:32.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abf281af-9678-4519-8b3f-87d373de90b9", + "createdTime": "2021-01-14T13:56:31.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f507a07b-acfb-4a33-b426-818809a955e4", + "createdTime": "2021-01-14T13:56:31.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a0395af-87b3-4896-ad65-1ef15cde7aef", + "createdTime": "2021-01-14T13:56:30.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3382c221-2472-4505-8a71-0a242a61ff4e", + "createdTime": "2021-01-14T13:53:47.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d3d90b-5637-48a4-9c9f-c584028d3a78", + "createdTime": "2021-01-14T13:53:46.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ebeefc6b-29a3-4ebb-a8eb-fc5c41b418ad", + "createdTime": "2021-01-14T13:53:46.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e25b9b7e-d239-45dd-b58a-6a014e309af1", + "createdTime": "2021-01-14T13:53:45.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33c77229-2a27-422a-84e3-fb8885342c25", + "createdTime": "2021-01-14T13:44:09.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "50acafb8-1440-4a29-87cb-22d23a97db5f", + "createdTime": "2021-01-14T13:44:09.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea156fb5-03b9-4e12-939a-8e7600034d7a", + "createdTime": "2021-01-14T13:44:09.114Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "559ac852-6593-480c-8210-30c2e8253995", + "createdTime": "2021-01-14T13:44:08.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bcce751c-7277-4a4d-8da9-221e93b76ec2", + "createdTime": "2021-01-14T13:27:35.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27b61c3d-d8ae-488d-bc0f-b0dce6cc20bd", + "createdTime": "2021-01-14T13:31:26.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ee5a642f-b4d5-4fb8-91ec-52513b6d28f7", + "createdTime": "2021-01-14T13:19:53.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f1de6f89-b6d8-4c7a-b76a-45743030a99d", + "createdTime": "2021-01-14T13:31:26.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3b7e14f-0ce5-405b-aec4-6cce4452320d", + "createdTime": "2021-01-14T13:31:25.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "846f8e0f-e9b8-4a18-9505-5a69783f0da8", + "createdTime": "2021-01-14T13:31:24.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a6a630a7-d9de-4f80-becb-f8ca45c040cb", + "createdTime": "2021-01-14T13:27:34.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6c6f5569-f6f6-40eb-9a12-99bc8b80f8d1", + "createdTime": "2021-01-14T13:27:33.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a93ed1ef-a36b-4ca6-99b2-1e597d6fb961", + "createdTime": "2021-01-14T13:27:33.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e94f1011-8777-4149-aab3-8a7eafbd75dc", + "createdTime": "2021-01-14T13:19:53.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35b5da12-07bb-4229-8b4a-ae60e864491d", + "createdTime": "2021-01-14T13:19:52.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47ab17ad-80bc-4243-bafe-66c2c291de7b", + "createdTime": "2021-01-14T13:19:52.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c8bfda1-c96f-4fb9-9f4c-0d7897172390", + "createdTime": "2021-01-14T13:17:19.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd9a08b2-b7c2-472f-a955-ecbc1f368c19", + "createdTime": "2021-01-14T13:17:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff3bef5e-c13f-40c4-84d4-4c9fd1958507", + "createdTime": "2021-01-14T13:17:18.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f89290a-6ec9-47cd-b8f9-4294e38ba6ed", + "createdTime": "2021-01-14T13:17:16.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a44a3b15-bd45-44f4-9e9b-8bb1705d8061", + "createdTime": "2021-01-14T09:16:44.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51a61aec-f0c7-4f33-ac46-dd2838a84ee4", + "createdTime": "2021-01-14T09:16:43.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc9da33-b3d5-4034-a851-16bca08fb434", + "createdTime": "2021-01-14T09:16:42.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdd0b114-d49d-409b-a646-9750678f29ce", + "createdTime": "2021-01-14T09:16:41.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82d43c13-fb3b-4a1a-a182-a9b5f9029571", + "createdTime": "2021-01-14T09:13:02.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cb90ba3d-9dc4-4cb1-9514-041a2f65e4a7", + "createdTime": "2021-01-14T09:13:01.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac1d34c4-9c2e-4203-9194-ae5a9a304322", + "createdTime": "2021-01-14T09:13:01.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "32ae669b-57ac-4aaa-b187-c062a596357a", + "createdTime": "2021-01-14T09:13:00.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85ebf416-453a-4d41-b191-8073d612fc04", + "createdTime": "2021-01-14T09:03:56.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36d0c56a-fafd-4388-ade5-62738479f87d", + "createdTime": "2021-01-14T09:03:56.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63869f25-f4fc-40c2-bd14-3f8a99be160c", + "createdTime": "2021-01-14T09:03:55.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c499d4ec-b5d0-4015-aa0c-b19c15a2a7d5", + "createdTime": "2021-01-14T09:03:54.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b6b8476-20b9-422d-a1cf-385fab8352ee", + "createdTime": "2021-01-14T09:00:02.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e2ff7c2-4165-4e63-a116-fef43c713bc3", + "createdTime": "2021-01-14T09:00:02.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b3791fa-8f7b-4d59-8459-3d70e674d0e9", + "createdTime": "2021-01-14T09:00:01.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "546dc581-df7d-4fc6-8431-a58881d7817f", + "createdTime": "2021-01-14T09:00:01.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29780d2c-7fa5-4e67-978b-13176b391812", + "createdTime": "2021-01-14T08:48:04.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "05325a2a-4b10-4f7c-92ab-b2939d8beb3c", + "createdTime": "2021-01-14T08:48:04.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "79858130-ed4a-4da6-904b-630b7fe7cbd9", + "createdTime": "2021-01-14T08:48:03.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da275a4f-0fbf-44a0-8d5d-b356145b3bf8", + "createdTime": "2021-01-14T08:48:02.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4520cf58-c8bf-466a-bba5-cf96b064d8b0", + "createdTime": "2021-01-14T08:31:36.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "70b5517b-c6b7-41ef-886c-181c38a21110", + "createdTime": "2021-01-14T08:35:25.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d412faf3-bca7-411f-a9d8-7dfb544c3c39", + "createdTime": "2021-01-14T08:24:12.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "56cad88e-5a5c-43c4-92f5-8fbbb9ae1e17", + "createdTime": "2021-01-14T08:35:25.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b6d9bb2-f5a7-4f66-838e-f9d8ab8bdcfe", + "createdTime": "2021-01-14T08:35:24.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dfd94085-d973-4b2b-b62a-0bbb07a2e97f", + "createdTime": "2021-01-14T08:35:23.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69e94fdb-cb3c-4bd7-ab9a-2845a0dc6177", + "createdTime": "2021-01-14T08:31:35.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8dfc7e44-c084-49ac-94ff-6ab7a9af00a8", + "createdTime": "2021-01-14T08:31:34.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0b590c54-d2f3-4ff2-80f2-662ef0741a1f", + "createdTime": "2021-01-14T08:31:33.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83f7954f-9af8-429a-994b-8f3c2df648b9", + "createdTime": "2021-01-14T08:24:11.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf85b5c5-2882-449d-a2be-c2a4457353bb", + "createdTime": "2021-01-14T08:24:10.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9c55f25-a13a-4344-b815-4fba2b85878a", + "createdTime": "2021-01-14T08:24:10.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f93e1c0c-827b-4312-8b84-e7a883f97964", + "createdTime": "2021-01-14T08:20:22.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88394bd8-0b7a-452f-ac70-f869614b831f", + "createdTime": "2021-01-14T08:20:21.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "783eb848-972c-4acc-8e4e-90a8d268929a", + "createdTime": "2021-01-14T08:20:20.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5178eb44-213b-47f2-b477-67b74b4ebe1e", + "createdTime": "2021-01-14T08:20:19.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b1a2407-809e-48c7-99a0-741ede4b2634", + "createdTime": "2021-01-14T00:10:17.186Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d86a8fb-0e6a-4722-8c1a-a34ec07bd17c", + "createdTime": "2021-01-13T20:06:06.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9edc0dc9-579a-4a67-a5b0-bc0e8663aa47", + "createdTime": "2021-01-13T20:05:02.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64da1d5a-aa33-40e1-8f6e-42188feda23a", + "createdTime": "2021-01-13T20:05:47.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6b6eb7c-e85e-4aa0-8af2-8f16b11fd84a", + "createdTime": "2021-01-13T20:11:46.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f351e58-a0c7-47fa-9974-ba29dae7c74c", + "createdTime": "2021-01-13T20:07:38.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cb75c9dd-97d5-41e4-9839-164880ad773b", + "createdTime": "2021-01-13T20:10:17.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0f50131-61a3-44e4-b73d-293e8f847cec", + "createdTime": "2021-01-13T20:11:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "15a490c0-dd73-4adf-84cd-9b3f4a2c8634", + "createdTime": "2021-01-13T20:11:46.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "58086ab8-b9fa-4987-b495-f2d65b8e0da4", + "createdTime": "2021-01-13T20:11:45.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdbd6a2a-38fe-4ef0-bda4-a5d71371c0c3", + "createdTime": "2021-01-13T20:10:17.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1525a401-0615-43ba-b92d-4af1f0a03a5b", + "createdTime": "2021-01-13T20:10:16.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "85f34a6b-b7da-4e97-926e-365aac3ec15d", + "createdTime": "2021-01-13T20:10:16.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17103415-b297-40d0-afbd-5cfe0c995b1e", + "createdTime": "2021-01-13T20:07:38.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0569647b-e517-4073-a656-42d9d937b45e", + "createdTime": "2021-01-13T20:07:37.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "156a2d5d-90b8-433c-b97f-a7ec6581e074", + "createdTime": "2021-01-13T20:07:36.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00539d0a-fd16-4765-a4b6-3a67d9acbb1f", + "createdTime": "2021-01-13T20:06:07.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "48ba9c73-e5ae-4542-b662-49b5eb48d75a", + "createdTime": "2021-01-13T20:06:05.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5d1ef766-ba03-4108-b4d0-4500c0da46aa", + "createdTime": "2021-01-13T20:06:05.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f27dc93-b970-40e9-b6bd-229691849877", + "createdTime": "2021-01-13T20:05:48.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cdc234e4-4043-4bbe-9c31-394213b46266", + "createdTime": "2021-01-13T20:05:46.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "863a66a9-d98e-43d9-9f78-72f3587d6558", + "createdTime": "2021-01-13T20:05:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c26aa392-fde3-4a78-8814-4c86fdeed3f6", + "createdTime": "2021-01-13T20:05:02.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "17daea4e-8b29-4465-9a00-0646c47894e7", + "createdTime": "2021-01-13T20:05:01.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e7133435-efa0-483c-9ac1-ee94b3486ae9", + "createdTime": "2021-01-13T20:05:01.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77a0296a-eb2d-4527-8a04-2727481f950d", + "createdTime": "2021-01-13T20:04:43.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "97f9d203-dd2b-4577-8f98-a3426f14927f", + "createdTime": "2021-01-13T20:04:42.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8d6523bd-5e94-4702-ae46-8e5110229acc", + "createdTime": "2021-01-13T20:04:41.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dade334d-c5f6-4562-a003-b5addc534f0b", + "createdTime": "2021-01-13T20:04:41.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "156cdbdd-cef6-44a7-9471-751254243939", + "createdTime": "2021-01-13T09:21:50.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9c7a23ab-723a-4b27-b5f2-c27c721ccb1b", + "createdTime": "2021-01-13T09:21:49.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aeeddbda-08bf-417a-8751-4b6861f91797", + "createdTime": "2021-01-13T09:21:49.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3dbe83ca-8b6f-4d40-b8f1-33967f17fbeb", + "createdTime": "2021-01-13T09:21:48.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e4bcc4bf-3136-4403-bfa0-ba9638f77d6e", + "createdTime": "2021-01-13T09:18:11.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c4469a5-cfa1-49eb-875c-2ce834516232", + "createdTime": "2021-01-13T09:18:11.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fdd72891-c238-4eb4-990e-add2bc445594", + "createdTime": "2021-01-13T09:18:10.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "83b7742f-b705-4ac3-8ff0-2f00c26170bc", + "createdTime": "2021-01-13T09:18:10.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e22d7f1-9365-4e97-a30f-e2537fe296d9", + "createdTime": "2021-01-13T09:02:42.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5b46393f-57ed-4298-8376-a12727711852", + "createdTime": "2021-01-13T09:02:41.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca2e2e4-0d4b-400c-b8ca-c3e16f6860d8", + "createdTime": "2021-01-13T09:02:40.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad218fc6-272d-43d2-87a5-eec8afc8443a", + "createdTime": "2021-01-13T09:02:40.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a4e6a6-9985-49f3-aced-4ce63e373f75", + "createdTime": "2021-01-13T08:58:44.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d61939-3dc8-46d3-a05a-00d75e705883", + "createdTime": "2021-01-13T08:58:43.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3d7ad22-3938-4f37-8601-af698741a89a", + "createdTime": "2021-01-13T08:58:42.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "18d64506-1188-4800-9402-17ad9653d5dc", + "createdTime": "2021-01-13T08:58:41.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6978006d-0c6b-45c8-a1c0-e678183559f9", + "createdTime": "2021-01-13T08:45:22.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8aa1d17d-8f7f-4b60-a9c7-5f952cf1006e", + "createdTime": "2021-01-13T08:45:21.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "341c08ef-2976-4db9-bdc0-9b0ed2c3fe74", + "createdTime": "2021-01-13T08:45:21.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42e0ad85-d761-41fb-b899-6a86b4cbfd2c", + "createdTime": "2021-01-13T08:45:20.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75bdcf11-a72d-474c-a578-5eca304b9e3d", + "createdTime": "2021-01-13T08:31:26.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf5faa8d-7b10-4229-8cd1-e219478c8a1d", + "createdTime": "2021-01-13T08:35:19.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03f0a27a-2759-414d-909a-8ac54c7773ac", + "createdTime": "2021-01-13T08:24:14.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acad6a6c-9773-44f6-8b21-53e23f9e0613", + "createdTime": "2021-01-13T08:35:19.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b90de78-b8b9-40fd-a8e8-79e65f67f861", + "createdTime": "2021-01-13T08:35:18.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "925a304b-5353-4a3c-88e6-a5207734c111", + "createdTime": "2021-01-13T08:35:18.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8420003e-47d8-4052-95a7-e7847733f659", + "createdTime": "2021-01-13T08:31:25.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a7570520-1879-4e46-8fcd-eef51beaf7ae", + "createdTime": "2021-01-13T08:31:24.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "212d5424-ac2c-4871-81e3-509f575a53fa", + "createdTime": "2021-01-13T08:31:23.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57d78186-2a4b-4194-a26f-8529c68e2898", + "createdTime": "2021-01-13T08:24:13.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e1fdfbe-35b3-4fdf-8d58-e9e466670012", + "createdTime": "2021-01-13T08:24:13.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b9d9b1a8-42e6-48c1-8059-ef94ae2509d6", + "createdTime": "2021-01-13T08:24:12.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "393fedb0-ac33-490e-81db-577a8baed38d", + "createdTime": "2021-01-13T08:20:30.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6d039c48-45c6-4df2-bfd4-421e16f3b590", + "createdTime": "2021-01-13T08:20:28.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e1a68ddf-23ed-4ba9-abe0-e71036fd32ba", + "createdTime": "2021-01-13T08:20:28.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "07f54ed0-a6c7-4568-bea5-c710422c1018", + "createdTime": "2021-01-13T08:20:27.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67da7875-78b2-41c8-9845-20168baab347", + "createdTime": "2021-01-12T20:31:13.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "77dac7a3-576c-4668-9056-33a5f45984c8", + "createdTime": "2021-01-12T20:26:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c46df5dd-b68e-4872-bc6e-8008c8b9cbae", + "createdTime": "2021-01-12T20:24:49.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "86e41ea3-9506-4100-8f60-b8c6a29bac49", + "createdTime": "2021-01-12T20:25:45.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06bcfdc8-5970-4385-855a-ecac8c688c75", + "createdTime": "2021-01-12T20:24:42.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5cb50aa-5c83-4030-8c4c-d6acb38471ef", + "createdTime": "2021-01-12T20:28:38.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d21cee2c-0cad-43f8-a7b9-e54197c4ad20", + "createdTime": "2021-01-12T20:31:14.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57eb5f5a-7fb4-4de7-acb2-80728e67701d", + "createdTime": "2021-01-12T20:31:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eebf1270-6fd5-4f29-b4ae-994097445191", + "createdTime": "2021-01-12T20:31:12.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88852ec-782f-48d6-ad00-e44cb29b5a89", + "createdTime": "2021-01-12T20:28:38.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c7c68435-0504-48ed-b0aa-8d641134aa81", + "createdTime": "2021-01-12T20:28:37.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d5f9fd7f-b28e-47b1-bef7-4ca56d512748", + "createdTime": "2021-01-12T20:28:37.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da1ec863-9d5f-4664-a927-5bc2e52785d2", + "createdTime": "2021-01-12T20:26:09.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0efb79bf-85bf-444e-ba4a-26d173f7613a", + "createdTime": "2021-01-12T20:26:08.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "950f860e-eb03-46c6-9459-70c1175fc9be", + "createdTime": "2021-01-12T20:26:08.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaf9fa35-cbae-4ed7-b376-dbeb9081e94b", + "createdTime": "2021-01-12T20:25:46.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "093581ff-81b0-4e97-92fd-f137e64f86d8", + "createdTime": "2021-01-12T20:25:44.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "db0ac784-b338-4e65-a715-08a724c1d78a", + "createdTime": "2021-01-12T20:25:43.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d34b778-66ce-4185-9541-f8ee73acb339", + "createdTime": "2021-01-12T20:24:49.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6a5bd429-b865-4b58-8237-dd1b27cb4f93", + "createdTime": "2021-01-12T20:24:48.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5f64ebb1-4d15-4903-898b-93841233de74", + "createdTime": "2021-01-12T20:24:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3156ddb8-6167-4bc2-bdce-c65abc80773a", + "createdTime": "2021-01-12T20:24:42.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4af3489-16b8-49a6-97c1-8bbd61590c6f", + "createdTime": "2021-01-12T20:24:41.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6749bbdd-f898-48cc-b90b-3ef6bb37b2b8", + "createdTime": "2021-01-12T20:24:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3355a0b9-a496-4be6-97c0-337e6f3fe157", + "createdTime": "2021-01-12T20:24:36.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e5121794-205d-4ae3-83a5-919ac47ee579", + "createdTime": "2021-01-12T20:24:35.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a8bf3867-85ca-43f5-b841-a2a11d002c2e", + "createdTime": "2021-01-12T20:24:34.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1fbc6f65-c4a9-47b4-aaf2-9b5659626f5b", + "createdTime": "2021-01-12T20:24:34.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10281834-0a41-480e-a032-99ee1f31dee9", + "createdTime": "2021-01-12T09:12:38.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b864efdd-840a-4c70-ba8a-2d79a04ac8f1", + "createdTime": "2021-01-12T09:12:37.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82d5d899-de40-46eb-8f8e-9bb9fb841135", + "createdTime": "2021-01-12T09:12:36.294Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "adb370d6-f4c0-4ff9-9857-2222625e5aba", + "createdTime": "2021-01-12T09:12:35.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9b397339-0e01-4751-8f4f-08ad019c1806", + "createdTime": "2021-01-12T09:08:50.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2fd120c4-5d04-428a-a643-9f33e2f3eb0f", + "createdTime": "2021-01-12T09:08:49.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "94522b17-806c-455e-8776-a96f5c58288c", + "createdTime": "2021-01-12T09:08:49.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eee53610-7ce7-4554-a881-cab47647f587", + "createdTime": "2021-01-12T09:08:48.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed5a5f0e-f74f-4988-a3d4-ad405263bbb8", + "createdTime": "2021-01-12T09:01:28.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0c2ccfae-4b1b-4508-b316-6635abc425d9", + "createdTime": "2021-01-12T09:01:27.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b1231b8-67df-44d7-85f4-56a0b051fb33", + "createdTime": "2021-01-12T09:01:26.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "254ecccf-61b6-43b9-be45-4260ffffc1b0", + "createdTime": "2021-01-12T09:01:25.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62688ffe-bf44-4f26-bbc3-773ea08fcbd4", + "createdTime": "2021-01-12T08:57:42.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3c0215e0-8070-4b97-b40f-d0907b0eef83", + "createdTime": "2021-01-12T08:57:40.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "83215345-deb7-42c5-a8e8-be0e475ac027", + "createdTime": "2021-01-12T08:57:40.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6c82d5-2756-4649-9c99-f149aad528b8", + "createdTime": "2021-01-12T08:57:39.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a5e34d2-384a-4ae7-8bef-e2798d16bce4", + "createdTime": "2021-01-12T08:48:21.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57bf4025-90b5-4770-89dc-3c4c3821db1f", + "createdTime": "2021-01-12T08:48:20.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "54de3543-5452-4732-ac01-82613f2ee850", + "createdTime": "2021-01-12T08:48:20.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69923da8-30f9-4f66-8377-06cdf4e1a37c", + "createdTime": "2021-01-12T08:48:19.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03004e90-7a85-4d27-b44e-1d7d144f702a", + "createdTime": "2021-01-12T08:37:12.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d886da2-8cd2-4815-b591-dce36e9f1ae3", + "createdTime": "2021-01-12T08:37:12.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b2502657-a041-49fd-8ffb-bc9b0bb1c4ff", + "createdTime": "2021-01-12T08:37:11.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7fbf0cc-db9f-4f3c-aafb-cfd90e9187ea", + "createdTime": "2021-01-12T08:37:11.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdfa9909-9ca7-4568-aa45-9393cc2c58d0", + "createdTime": "2021-01-12T08:33:27.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a99e56d6-d34a-416d-a6af-eea195a4e282", + "createdTime": "2021-01-12T08:24:05.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dcf9c02-88ea-4842-b084-72bdacdb5a1b", + "createdTime": "2021-01-12T08:20:26.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e639bdbf-adfc-4ce8-8889-be99d870fcbc", + "createdTime": "2021-01-12T08:33:26.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "628e46f9-44c4-4ea0-a457-46a7a252219d", + "createdTime": "2021-01-12T08:33:25.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a913202-a024-4eda-971c-136e6a17c697", + "createdTime": "2021-01-12T08:33:24.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71325e8f-0854-47ac-8166-79f7f9c6dd47", + "createdTime": "2021-01-12T08:24:05.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5791f964-4f03-490a-a515-a91f7d2bc6c7", + "createdTime": "2021-01-12T08:24:04.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd483a6c-82c6-49b8-ab1e-cd8203c57701", + "createdTime": "2021-01-12T08:24:04.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9dd6c345-825d-4451-9105-e4697d626e2b", + "createdTime": "2021-01-12T08:20:25.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c373ca0-0a78-4db9-8031-95a5763efc27", + "createdTime": "2021-01-12T08:20:24.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1428dd7b-eb68-4d1f-9bf2-19c4fa68c0c5", + "createdTime": "2021-01-12T08:20:23.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a853b3eb-4292-4389-91bd-e0bab3aee981", + "createdTime": "2021-01-11T22:43:02.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "53d8c1fc-4bc8-41e0-89a1-f6bd9fe42fd1", + "createdTime": "2021-01-11T22:43:01.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28b1d568-2b7f-473d-b196-7378f6653128", + "createdTime": "2021-01-11T22:43:01.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "adcc8390-b5cd-4b89-85f4-e2d84fb404d5", + "createdTime": "2021-01-11T22:43:00.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f65a7328-3220-4236-ae45-adaf0ab59f5d", + "createdTime": "2021-01-11T22:43:00.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "31df969b-14ca-408e-9e7c-68482712d9b2", + "createdTime": "2021-01-11T22:42:59.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f683e57-5d49-4cd0-925e-08089bea7f70", + "createdTime": "2021-01-11T22:35:54.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b53982f-333e-4f55-a291-63461479769a", + "createdTime": "2021-01-11T21:34:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "746e4eeb-6f3f-4c39-9e3d-1e67a08815c8", + "createdTime": "2021-01-11T20:28:25.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ba3b8aad-3ca9-4788-aae0-dc36130659cf", + "createdTime": "2021-01-11T20:24:16.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9f9c554a-a5aa-41fd-be49-ad858557498b", + "createdTime": "2021-01-11T20:28:15.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "69c44822-17ee-486c-9d3d-886da3075c46", + "createdTime": "2021-01-11T20:24:50.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3ac53867-44bc-4b44-818a-19f2c34bb526", + "createdTime": "2021-01-11T20:31:46.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57a976f3-2b67-421a-8c3d-5ea33ad6ee83", + "createdTime": "2021-01-11T20:31:45.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5f2e8f8-e49f-4166-a22c-985ac4dc4392", + "createdTime": "2021-01-11T20:31:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cfdb985b-0e4c-4b7a-9802-23a4bcb80a78", + "createdTime": "2021-01-11T20:31:44.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17d063ab-aee4-488d-8f88-500f4efb1306", + "createdTime": "2021-01-11T20:24:26.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "deea8700-a580-48e0-af50-bc98c8db3c11", + "createdTime": "2021-01-11T20:28:26.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7f838b66-08da-444a-850f-307788f19543", + "createdTime": "2021-01-11T20:28:24.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8fbcfc9c-a67d-48ec-b1bb-cb70e929575c", + "createdTime": "2021-01-11T20:28:24.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d38d7767-016f-4c59-99fb-c548f18bfb19", + "createdTime": "2021-01-11T20:28:16.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a9f6030e-d9a9-4833-ac76-b5385d903223", + "createdTime": "2021-01-11T20:28:15.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3ca9e0bb-bf36-49cc-8411-2b488455b446", + "createdTime": "2021-01-11T20:28:14.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81380cfd-35b3-4dfb-95dd-a39681d02566", + "createdTime": "2021-01-11T20:24:51.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3d84aa09-1730-4b5b-9c45-5b16b9b4085d", + "createdTime": "2021-01-11T20:24:49.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5c29b18-5089-4f18-bee4-ad6f5e66799e", + "createdTime": "2021-01-11T20:24:49.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9bb89c01-b6a3-46ef-b95a-fbf2aa4e13a1", + "createdTime": "2021-01-11T20:24:28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5d46f766-b07b-482e-bc36-c4b42a929c77", + "createdTime": "2021-01-11T20:24:25.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a594e7e2-8fcf-4fdf-bbd2-9f61c560ecb4", + "createdTime": "2021-01-11T20:24:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3da237bf-f79a-437d-b533-72b344197be9", + "createdTime": "2021-01-11T20:24:17.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "81b5a08c-2d22-46fc-91e2-b05e3cadbba0", + "createdTime": "2021-01-11T20:24:15.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "447b063b-6b44-4974-9905-4a223f6e7f0e", + "createdTime": "2021-01-11T20:24:14.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86053b46-fa0a-40b4-aa67-6cbffba5eedc", + "createdTime": "2021-01-11T20:23:58.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f9e1fc3-b433-48ab-bdef-2afc5fd970a6", + "createdTime": "2021-01-11T20:23:58.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "598941c1-7b07-4852-a0e8-1e0f9f3437b7", + "createdTime": "2021-01-11T20:23:57.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2aacafd4-704a-48db-87eb-0d7b4e150ec2", + "createdTime": "2021-01-11T20:23:57.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f99601b8-b678-4aef-a99c-4fd3e76f2bc1", + "createdTime": "2021-01-11T09:17:26.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9f16da08-01fe-4445-9948-704159d05203", + "createdTime": "2021-01-11T09:17:25.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf5ed19-4cf1-4553-8fe4-1a6e430b4d26", + "createdTime": "2021-01-11T09:17:24.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3fc9463f-7a76-48e0-a492-1a1575be7c59", + "createdTime": "2021-01-11T09:17:23.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bb3d070f-090c-42b8-b04a-b6a318904db9", + "createdTime": "2021-01-11T09:13:47.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c85b2b0-b975-4077-bc92-390afd7a883f", + "createdTime": "2021-01-11T09:13:46.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e54a6fd-b234-4091-87cf-3bf76497c683", + "createdTime": "2021-01-11T09:13:46.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "583b3ed0-988b-47c5-8fb3-dba49a0f1018", + "createdTime": "2021-01-11T09:13:45.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4441117c-b154-47d2-930d-c37df93f2b1e", + "createdTime": "2021-01-11T09:00:20.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c714fab-ff92-43e4-bb35-45caec9a79c3", + "createdTime": "2021-01-11T09:00:19.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "349af338-e5f9-4e29-b13d-dfff96a61fdb", + "createdTime": "2021-01-11T09:00:19.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f9116904-3cb5-4948-a18c-b1e2af87363f", + "createdTime": "2021-01-11T09:00:18.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b582e4b1-0c37-454d-a53e-ddfe6bc5f75f", + "createdTime": "2021-01-11T08:56:29.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86b501d7-270e-463a-a975-9b63ef1f4cf3", + "createdTime": "2021-01-11T08:56:28.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf40e1d8-723e-4e57-a54a-79a72c97119d", + "createdTime": "2021-01-11T08:56:28.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62335039-2fc8-4497-83f6-56e106415c82", + "createdTime": "2021-01-11T08:56:27.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e223f769-4174-4954-8f0d-440a2f1e9423", + "createdTime": "2021-01-11T08:47:30.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8bfc164-2b65-414f-b6ac-8f12e8cfaef1", + "createdTime": "2021-01-11T08:47:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1eecc29-8577-4cc8-ba0c-5bd8953d1e58", + "createdTime": "2021-01-11T08:47:28.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e0b2840-beae-45ed-810b-3a4049ce37e4", + "createdTime": "2021-01-11T08:47:27.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edff630e-08a1-4b2d-b72e-e0e3ac43a188", + "createdTime": "2021-01-11T08:37:02.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "65cb94de-060b-4bee-9696-081bf002445d", + "createdTime": "2021-01-11T08:24:42.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bbc812f9-2a22-488d-a393-1ea2fa9ff997", + "createdTime": "2021-01-11T08:33:15.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "34446c09-bef4-4bd9-96da-cb344e622a87", + "createdTime": "2021-01-11T08:37:01.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95c812d4-eb69-4573-a576-777b3469a631", + "createdTime": "2021-01-11T08:37:00.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54eeb8d3-fa62-46db-a37f-988715691398", + "createdTime": "2021-01-11T08:37:00.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "deeb63c2-dd3e-4530-a2ab-521b8a7086c3", + "createdTime": "2021-01-11T08:33:15.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1af443c8-ae1e-4984-9002-2f35a1999b44", + "createdTime": "2021-01-11T08:33:14.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6df835a9-9870-4b69-8c23-1ff2bc7a7056", + "createdTime": "2021-01-11T08:33:13.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be9a8817-bb63-4442-98d1-5761edebf7f8", + "createdTime": "2021-01-11T08:24:42.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e884e87-a410-4f3e-a339-6cf7c084514c", + "createdTime": "2021-01-11T08:24:41.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "402fd3ea-c38f-4d2f-9805-b159d46526e0", + "createdTime": "2021-01-11T08:24:40.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a16ce83-1fa0-4233-938c-31726fafe7d9", + "createdTime": "2021-01-11T08:20:52.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e907fd7d-cd6e-4432-aba7-ef2cab3acda2", + "createdTime": "2021-01-11T08:20:51.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b35997f-7fa2-4a19-9c6d-1b40bc6d45c5", + "createdTime": "2021-01-11T08:20:51.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "72cab1a7-e2a6-465a-83b1-186e764fce20", + "createdTime": "2021-01-11T08:20:50.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee199779-dcb8-46fb-8146-5a3ab72a93e7", + "createdTime": "2021-01-08T20:08:25.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b280b149-c573-4a2e-bcfe-75b9ae68a3b8", + "createdTime": "2021-01-08T20:10:58.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3a650755-1022-41ec-a242-d4a9202791fa", + "createdTime": "2021-01-08T20:06:57.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4c65b3a1-56f3-4124-bd78-2150e79267d9", + "createdTime": "2021-01-08T20:06:56.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d9f2fdcb-1ea7-4fab-bd75-e7696d20a1bc", + "createdTime": "2021-01-08T20:07:47.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b0a22122-4604-484b-8b3a-1564ffd09328", + "createdTime": "2021-01-08T20:12:26.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "437baf03-f0e2-4de6-b1fd-fc6f58ac6171", + "createdTime": "2021-01-08T20:12:27.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "511d28a7-c9f9-41c7-ae03-ce42036303ff", + "createdTime": "2021-01-08T20:12:26.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0c7b7f-a1af-49e1-9907-1ac3495a1b44", + "createdTime": "2021-01-08T20:12:25.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa8b5713-9e08-4d86-9b49-52859a64e744", + "createdTime": "2021-01-08T20:10:59.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4da5974-6eeb-4af0-8c49-0d18cb6c1237", + "createdTime": "2021-01-08T20:10:58.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bafda377-cf59-4a0e-b68d-6741f305e646", + "createdTime": "2021-01-08T20:10:57.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c5a3a50-252e-4a76-8814-26cf269691d4", + "createdTime": "2021-01-08T20:08:26.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8df83580-8853-409d-98ce-a02e8ba6ac57", + "createdTime": "2021-01-08T20:08:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4434103-2df6-48d7-a5e5-681c1414482e", + "createdTime": "2021-01-08T20:08:24.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfa30ebc-c6c2-43ae-be9a-e45142e18569", + "createdTime": "2021-01-08T20:07:48.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e03dcd5b-56b7-498a-80af-a0fb7cb44f78", + "createdTime": "2021-01-08T20:07:46.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "840a4a5a-b3ca-43c5-936b-da2ea7f0a86a", + "createdTime": "2021-01-08T20:07:45.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17f5e327-4365-4a06-9007-d25575eb7f63", + "createdTime": "2021-01-08T20:06:58.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a7c67fc4-892f-48d9-ab94-3cbc73f33b55", + "createdTime": "2021-01-08T20:06:57.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b09e4dd4-5932-4fb3-afee-5d3f5fa6e9fb", + "createdTime": "2021-01-08T20:06:57.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3996f23e-e00f-42c0-a6a9-4eb2799ca2de", + "createdTime": "2021-01-08T20:06:56.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bfe1e98-91a5-4a83-8480-a5e25f3babae", + "createdTime": "2021-01-08T20:06:56.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f52aa4df-104e-498d-94e0-34688d374d88", + "createdTime": "2021-01-08T20:06:55.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2f4353d-354b-4695-8c06-a7f3cfb26ce0", + "createdTime": "2021-01-08T20:06:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f689cc20-0f9a-4f56-ae1a-28297ca1803f", + "createdTime": "2021-01-08T20:06:33.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "25e48dc3-c368-40b7-b3a1-82eccac9dcbf", + "createdTime": "2021-01-08T20:06:33.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1577fc73-4aee-431d-b2d1-748bf6887600", + "createdTime": "2021-01-08T20:06:32.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d9805e1-53a6-4c01-b373-d2618766bf7b", + "createdTime": "2021-01-08T09:15:06.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "940f494f-7424-4326-9a54-e8619239996e", + "createdTime": "2021-01-08T09:15:05.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7355d19b-74a9-47c5-872c-3af939100099", + "createdTime": "2021-01-08T09:15:05.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5014a9a-c18f-43b3-bfae-f709eb0395b3", + "createdTime": "2021-01-08T09:15:04.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d9062b5-1cbf-40c3-b068-33df32720bde", + "createdTime": "2021-01-08T09:11:25.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5fc8df59-9d23-496c-ab0b-edaf5d98ffab", + "createdTime": "2021-01-08T09:11:24.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a4a7ee2-6114-4f77-a11f-6adffcd40ce2", + "createdTime": "2021-01-08T09:11:23.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a012d2ce-0a6d-4dbe-b7a7-0cbae9c1236a", + "createdTime": "2021-01-08T09:11:23.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e494622a-c43d-4a25-aca9-3f90510ea560", + "createdTime": "2021-01-08T08:58:51.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9097b46d-3876-4108-88da-7bfe61e0624a", + "createdTime": "2021-01-08T08:58:50.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9edc5f6f-fed9-4911-bbc0-c0b98e685ac3", + "createdTime": "2021-01-08T08:58:49.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42a01786-d66b-49bf-9010-aa09f40d93e4", + "createdTime": "2021-01-08T08:58:49.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33cd4c8-dd98-4ee2-97ad-45be1c16c3f7", + "createdTime": "2021-01-08T08:55:26.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db61131e-cbdf-470a-bde3-ebf825c58b4d", + "createdTime": "2021-01-08T08:55:25.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9a20f70-cce1-4bc3-b272-bb2d333afc6b", + "createdTime": "2021-01-08T08:55:24.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f5837e6-39ea-4d0f-8531-3de78eceb9dd", + "createdTime": "2021-01-08T08:55:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f678ab8-936f-4bf0-9c96-2d5fbf67a837", + "createdTime": "2021-01-08T08:46:33.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72f1c81f-b8f7-4703-aa42-01a82ed5980b", + "createdTime": "2021-01-08T08:46:33.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd9eb62f-8fc1-4330-abc2-953b565a9991", + "createdTime": "2021-01-08T08:46:32.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "771dbe08-65da-488e-96b8-8896f4c8dac3", + "createdTime": "2021-01-08T08:46:32.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bc3bddd1-7e84-49ee-8590-bef9b040ec4d", + "createdTime": "2021-01-08T08:24:04.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d8f5a0-c32c-4f6f-a960-993512daec6d", + "createdTime": "2021-01-08T08:31:05.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66ac0de6-786a-46ca-953f-ecc744452f7d", + "createdTime": "2021-01-08T08:34:43.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c04bcd54-1ca3-4724-aced-28f7bccda553", + "createdTime": "2021-01-08T08:34:42.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43feb29e-15e8-47bb-b30b-5a4c89238128", + "createdTime": "2021-01-08T08:34:41.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6bddd586-e820-4a20-b23a-00b440ee3715", + "createdTime": "2021-01-08T08:34:40.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3c65c2b-8898-428d-bace-8373d04a1075", + "createdTime": "2021-01-08T08:31:05.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a7a7514-536f-47cc-aa2b-c1ed199716ea", + "createdTime": "2021-01-08T08:31:04.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62c4563b-165f-4c53-a6d5-cc818a6b2d58", + "createdTime": "2021-01-08T08:31:03.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c1c3a7b-e961-4cf0-a017-a0c2d2a1dbd9", + "createdTime": "2021-01-08T08:24:03.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "37e6d2ae-b8be-4c9b-bc15-94409a75a76c", + "createdTime": "2021-01-08T08:24:03.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0aaf1452-6196-4b20-9943-9e1fa0f65ae0", + "createdTime": "2021-01-08T08:24:02.676Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5642370a-8f06-48b3-9ba4-b411786341a4", + "createdTime": "2021-01-08T08:20:27.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "46e0b1a4-6060-43c4-be06-f61eac335332", + "createdTime": "2021-01-08T08:20:27.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "34165f68-9651-4b93-b439-175e59742b42", + "createdTime": "2021-01-08T08:20:26.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db900127-085d-4015-b00d-8e903fae1abb", + "createdTime": "2021-01-08T08:20:25.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c200cb0-b64a-4d88-b273-189f2ef383ef", + "createdTime": "2021-01-07T20:32:34.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5375094-3375-4f29-a462-aef497ef688f", + "createdTime": "2021-01-07T20:31:27.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "731c57a9-bf59-4d58-b633-5c42035e0c2d", + "createdTime": "2021-01-07T20:31:00.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a3a2fa75-8647-4d89-8d36-666456ae9248", + "createdTime": "2021-01-07T20:37:58.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4778511-4c1b-42fd-9bc5-7ea1c824f599", + "createdTime": "2021-01-07T20:37:57.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b462f0c-69ca-4cde-8a32-e8a5a838d006", + "createdTime": "2021-01-07T20:37:56.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4a8ee4c-75a2-4c73-b33d-a6b01323dea2", + "createdTime": "2021-01-07T20:37:56.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe52092e-c14c-4a23-af30-3355ca35d1e8", + "createdTime": "2021-01-07T20:30:44.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "47009bb6-8bbc-46c9-ac99-8e07f5348701", + "createdTime": "2021-01-07T20:34:37.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b4163ca-7b37-4644-bb13-d1a2da37efd6", + "createdTime": "2021-01-07T20:34:37.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfb438bc-33b4-40a2-925c-43477d1b8166", + "createdTime": "2021-01-07T20:34:36.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0bfda9de-8f70-4fdf-8928-0c3cfc5b08ca", + "createdTime": "2021-01-07T20:34:35.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3a36b14-634f-44f0-8ab4-0ce84c53598c", + "createdTime": "2021-01-07T20:32:35.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1abf8598-9c59-4e74-9af4-5512d3af3c9c", + "createdTime": "2021-01-07T20:32:34.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6270b3be-17d3-4e6f-9442-2f9d58f788f1", + "createdTime": "2021-01-07T20:32:33.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b545b63-adea-4f4c-b2ac-498550fd60f8", + "createdTime": "2021-01-07T20:31:28.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "59d62a3c-1a0f-48cc-9aeb-30f72d9b9f8a", + "createdTime": "2021-01-07T20:31:27.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70200b3a-97fd-43fe-8f69-2b2751138b45", + "createdTime": "2021-01-07T20:31:26.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be557bac-f974-440c-9f0d-936117a34816", + "createdTime": "2021-01-07T20:31:00.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ceaa184b-e803-411b-a512-74a443ad3f6c", + "createdTime": "2021-01-07T20:30:59.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "75e47d24-1dac-4e5b-b4f9-93143e989cbb", + "createdTime": "2021-01-07T20:30:59.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fea3df2-81ab-44d5-900f-99b80693ea1f", + "createdTime": "2021-01-07T20:30:45.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c58646fc-68ba-4f35-9d2f-f7925c47609e", + "createdTime": "2021-01-07T20:30:44.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0394c7-42d5-4f3f-bf6d-454df504e599", + "createdTime": "2021-01-07T20:30:43.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b43c4b78-499e-4cd7-8b37-16f2b3602830", + "createdTime": "2021-01-07T20:29:52.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "009adfe8-76f4-4073-ab1c-a86bee525c6c", + "createdTime": "2021-01-07T20:29:51.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ce356f97-6328-4f59-9f3e-49ca8bf04fe2", + "createdTime": "2021-01-07T20:29:51.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "99575c51-9f43-49e7-b2ee-edfb41718a11", + "createdTime": "2021-01-07T20:29:50.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e74fe55-d337-473b-8366-f5af9da6cfc2", + "createdTime": "2021-01-07T16:33:57.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e1dc8518-68dc-489e-b398-e4be3eacabd5", + "createdTime": "2021-01-07T16:43:59.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "baaf7319-0946-4616-b851-5ec22c147301", + "createdTime": "2021-01-07T16:47:33.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8f5c7147-54a4-4191-9aa7-05c92035176d", + "createdTime": "2021-01-07T16:47:32.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a2b82963-d5f0-4ebd-a9d7-a9bb438687a2", + "createdTime": "2021-01-07T16:47:31.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "233c721e-1349-49c3-8379-f281d933a3e4", + "createdTime": "2021-01-07T16:47:30.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df87eb9-1f3f-4943-a101-8ce18777ab88", + "createdTime": "2021-01-07T16:43:58.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "70b4d19f-02ad-4c38-a679-2ed7da213600", + "createdTime": "2021-01-07T16:43:58.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e9ab0f5-71b2-4dfa-a694-37604230e0f3", + "createdTime": "2021-01-07T16:43:57.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c58732b4-dcc9-46d8-baad-afc8080dcc3f", + "createdTime": "2021-01-07T16:33:57.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9de406b9-3386-4a10-b723-e674571c60bc", + "createdTime": "2021-01-07T16:33:56.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e4c987db-ba9d-44a4-b364-ed14d37b714f", + "createdTime": "2021-01-07T16:33:56.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c88af87a-6f6e-4f18-8190-13db70a53587", + "createdTime": "2021-01-07T16:30:50.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d1017176-83c7-4143-ab8b-3dfb6a8069b0", + "createdTime": "2021-01-07T16:30:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29c988f5-893c-42e6-b8c6-aa839375b232", + "createdTime": "2021-01-07T16:30:48.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2a140a60-1e77-44c7-ad58-6b6375f3d8e5", + "createdTime": "2021-01-07T16:30:48.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f96929c-67c8-464b-b19b-0bcde1bca9c0", + "createdTime": "2021-01-07T09:17:24.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa706dfa-12dc-4a1a-9565-e7afc81d93d3", + "createdTime": "2021-01-07T09:17:23.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67ce7331-d98e-439a-95a4-71048dc09ef2", + "createdTime": "2021-01-07T09:17:22.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "746bc147-d7a0-4046-a5ea-c3043b006bd6", + "createdTime": "2021-01-07T09:17:21.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33ed75c-d76d-4c99-93f1-f7e94e03c6cc", + "createdTime": "2021-01-07T09:12:15.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5dbe11ac-1bf8-40f9-b8df-f5b57864e9cd", + "createdTime": "2021-01-07T09:12:14.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cfadf8a7-bf8e-414f-9211-ef2c88745fa0", + "createdTime": "2021-01-07T09:12:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3faf39b7-c6dc-42d6-8264-592d45acab9a", + "createdTime": "2021-01-07T09:12:13.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83b94647-9148-4492-8a5d-556c505f9870", + "createdTime": "2021-01-07T09:02:17.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f4e792c6-bc77-4c9f-92db-9077aace6121", + "createdTime": "2021-01-07T09:02:17.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c3502e3-15a5-4ed2-8db8-13d627ecbae2", + "createdTime": "2021-01-07T09:02:16.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "391850fe-1642-440e-93d8-1ecc6faf3a4a", + "createdTime": "2021-01-07T09:02:15.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "975777f6-0665-4961-874b-a4662d4bb658", + "createdTime": "2021-01-07T08:58:36.172Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b709192-fb5a-47f5-93f3-82bbadf8b8d9", + "createdTime": "2021-01-07T08:58:35.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64377cf8-2dc1-4a2a-ba51-4b2c8e75559b", + "createdTime": "2021-01-07T08:58:34.404Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c7dc766-38c6-4f47-8f72-ab6b905eb109", + "createdTime": "2021-01-07T08:58:33.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4092e3a6-3a91-4e02-8294-43671ac04f8c", + "createdTime": "2021-01-07T08:48:40.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "87fd7dcb-ccd3-4fdd-b086-5d8b18e24f80", + "createdTime": "2021-01-07T08:48:39.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "710f1cc6-ed0f-46f5-8a8d-3fb2290779e6", + "createdTime": "2021-01-07T08:48:38.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "373d3fe6-f2d0-4dcf-8c8b-85cd2a71feff", + "createdTime": "2021-01-07T08:48:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8ab0ac8-40eb-494a-8b03-5e1cc66e9000", + "createdTime": "2021-01-07T08:34:26.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "82b00b92-bb64-4a07-895b-d615b3b4e01f", + "createdTime": "2021-01-07T08:38:21.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24fecac1-6c6a-4ff4-bbee-9f5fe5efa7eb", + "createdTime": "2021-01-07T08:27:13.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "086e37af-2f8f-44ef-a76b-01c3ecd72755", + "createdTime": "2021-01-07T08:38:20.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4b77e2b9-d109-4921-b4ed-99496c6741b5", + "createdTime": "2021-01-07T08:38:19.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "702e6948-2c78-49a4-a000-1f347e89c03c", + "createdTime": "2021-01-07T08:38:18.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93de05b1-a95d-44c9-af31-86dccdbaf8e2", + "createdTime": "2021-01-07T08:34:25.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b1c7a320-4487-400b-a18a-dd6b95548f5c", + "createdTime": "2021-01-07T08:34:24.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ef9cd63-ad30-4480-aa79-b1c22101c788", + "createdTime": "2021-01-07T08:34:23.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "13c54a4f-7059-49d4-b58a-7044e4e870ea", + "createdTime": "2021-01-07T08:27:13.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fc0cbe70-008c-4e82-848c-c31a67ff2053", + "createdTime": "2021-01-07T08:27:12.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "85b5f815-87f5-4412-bede-3335967cadfa", + "createdTime": "2021-01-07T08:27:12.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f655c99-5101-4cd1-a52d-e28865a03d5c", + "createdTime": "2021-01-07T08:23:42.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fbcf17de-927f-4439-b7e2-fa2de31d646b", + "createdTime": "2021-01-07T08:23:41.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5cc8067-fcda-44bb-ac75-0602a046d03e", + "createdTime": "2021-01-07T08:23:40.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5973202d-5fd8-4c28-8f00-f0c353a252cd", + "createdTime": "2021-01-07T08:23:39.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c306480c-3e2f-4f93-b474-b546643ce6d8", + "createdTime": "2021-01-06T20:11:31.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9cbd2e9c-6dd9-463a-92f4-4642c9d76720", + "createdTime": "2021-01-06T20:10:07.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "db9dec9c-43b4-4df1-8335-d7a2484c963c", + "createdTime": "2021-01-06T20:04:04.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "330e0973-1733-4f2f-aab3-9d8e628ced39", + "createdTime": "2021-01-06T20:06:04.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06b204be-8a1b-41f6-81c2-8ea65466f519", + "createdTime": "2021-01-06T20:04:52.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "306c872b-86af-477d-93d7-b5a574e715f4", + "createdTime": "2021-01-06T20:05:40.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b76f3df8-b3fe-4a4c-9d54-5a387f24b4e8", + "createdTime": "2021-01-06T20:11:31.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "41bea400-29ce-49e4-98bd-598c0b42feda", + "createdTime": "2021-01-06T20:11:30.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "679b4fe3-a5fa-48a1-84d5-380035d53dfd", + "createdTime": "2021-01-06T20:11:30.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d409f116-5019-4209-8d49-dbb53a5eb1b3", + "createdTime": "2021-01-06T20:10:08.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "36b3b079-6643-4d2a-b093-b9537e4c3075", + "createdTime": "2021-01-06T20:10:07.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ef19a07-7da3-4046-b39e-192fd1352e7e", + "createdTime": "2021-01-06T20:10:06.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbd1997b-0040-4b42-b603-d99419559ab8", + "createdTime": "2021-01-06T20:06:05.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "df627e4c-d183-429b-990b-576fa76f44be", + "createdTime": "2021-01-06T20:06:04.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4d84b45b-4c8c-4f5b-bbe8-9f47506734c2", + "createdTime": "2021-01-06T20:06:03.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc3f8d9-c8b7-4072-beee-07f0a2cc9e19", + "createdTime": "2021-01-06T20:05:41.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "eae8da1c-a9f7-411c-a286-3577ef09ad3f", + "createdTime": "2021-01-06T20:05:40.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c10a9c0c-f2fc-49f3-80ae-470bcd0c5a5f", + "createdTime": "2021-01-06T20:05:39.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e34ff20-aa1c-4db7-a39d-2e67b91177fa", + "createdTime": "2021-01-06T20:04:53.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5beefbc3-2e08-4d6a-b662-4042cf87cec2", + "createdTime": "2021-01-06T20:04:52.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60293fb8-f1af-4726-b5d5-f3e3bd2380b5", + "createdTime": "2021-01-06T20:04:51.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73b96542-6162-4b80-8ca5-8d00c273bd71", + "createdTime": "2021-01-06T20:04:05.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f68141b7-1303-4907-af78-cebed40ed5ad", + "createdTime": "2021-01-06T20:04:04.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2e37eb2d-fc0f-4257-ad1c-2b23f5c673de", + "createdTime": "2021-01-06T20:04:03.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd8f29d3-46c4-45b7-98e7-3ed35a3c84a1", + "createdTime": "2021-01-06T20:04:02.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a173a5ea-ff49-4ece-975d-a2d54eacf72c", + "createdTime": "2021-01-06T20:04:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6047b56-f182-4660-9177-beebb4039da0", + "createdTime": "2021-01-06T20:04:01.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "51097fe3-8fb4-42bc-847b-bf1b40b7402e", + "createdTime": "2021-01-06T20:04:00.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "403f1e86-ad93-472c-88ed-3dd5eab80a17", + "createdTime": "2021-01-06T09:12:47.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8061eeb2-e08d-4667-af76-9f7d0e7d22fd", + "createdTime": "2021-01-06T09:12:46.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a97e5e9-3457-44c7-8394-e56e960b8d13", + "createdTime": "2021-01-06T09:12:45.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d4610f0f-dcd3-48ca-a330-86df5960081e", + "createdTime": "2021-01-06T09:12:45.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61781ae4-57ef-424f-808e-051ba64c2f6c", + "createdTime": "2021-01-06T09:09:06.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f9c3196-9cc4-4060-8d25-def5953e89a9", + "createdTime": "2021-01-06T09:09:05.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09dc38d6-2b83-4b5e-9648-78d45fe0226d", + "createdTime": "2021-01-06T09:09:05.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3a904ff7-4b7f-4dab-8d2e-9ff52a501ff2", + "createdTime": "2021-01-06T09:09:04.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "01f14b17-a73f-4a60-8aa0-45836666334b", + "createdTime": "2021-01-06T09:01:57.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "15dc4aff-c7b4-4e46-9728-12a233523a2c", + "createdTime": "2021-01-06T09:01:56.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1965ecb-1021-4772-8d48-d3f30eed3194", + "createdTime": "2021-01-06T09:01:56.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c391b8e-6280-4527-9f49-5147ee595254", + "createdTime": "2021-01-06T09:01:55.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0588ce5a-42ca-41cc-99d3-72db10a5f281", + "createdTime": "2021-01-06T08:58:14.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eda40fcc-c557-49a5-883f-63b1340247a3", + "createdTime": "2021-01-06T08:58:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95fc0025-7b59-4d87-9ec9-983a0d4ec1d3", + "createdTime": "2021-01-06T08:58:13.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c226c1e-a929-4cb3-9bad-2ec33f237d94", + "createdTime": "2021-01-06T08:58:12.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "99612ded-53c6-4f4a-ab4d-91b9707643db", + "createdTime": "2021-01-06T08:49:11.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "16f05f71-8c93-4ac8-b5b2-07c496eb123b", + "createdTime": "2021-01-06T08:49:11.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9fb3f47-14fd-4b80-a41a-bd0fe9c8eeda", + "createdTime": "2021-01-06T08:49:10.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fee91e3a-e57c-473d-af57-4a61f47c6268", + "createdTime": "2021-01-06T08:49:09.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2f9f990-d516-4ca7-90cd-43dd061fd8cf", + "createdTime": "2021-01-06T08:35:31.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa94b870-2e1e-48b7-b153-e2f867a77ea1", + "createdTime": "2021-01-06T08:39:28.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92bf4cb1-4231-407d-b46a-85fa85b2c86c", + "createdTime": "2021-01-06T08:28:20.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "81911393-c70d-4657-8e56-9447791ca354", + "createdTime": "2021-01-06T08:39:27.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5092c6c-6500-423d-857f-b293032ca481", + "createdTime": "2021-01-06T08:39:26.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "99dba31c-4383-48e5-afbf-a0581d406c38", + "createdTime": "2021-01-06T08:39:25.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "68a5153d-d171-4023-a17a-150bbcd039ac", + "createdTime": "2021-01-06T08:35:30.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd262c7-8e03-43f9-a350-ef75a9e06b1c", + "createdTime": "2021-01-06T08:35:30.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5088b1a1-f880-4c32-8a3b-144c84f6b1e7", + "createdTime": "2021-01-06T08:35:29.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a9572a0-10c0-46de-9693-57fa316986f8", + "createdTime": "2021-01-06T08:28:19.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fd7217a7-558b-4c71-bacf-5e6d11597766", + "createdTime": "2021-01-06T08:28:19.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dca03f60-f9f2-4fac-88c3-8eeb97872a88", + "createdTime": "2021-01-06T08:28:18.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8320ec-4fda-42db-84c1-952f3455bff0", + "createdTime": "2021-01-06T08:23:01.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ba7e1d-1c5f-4f60-8621-dd765fa238f5", + "createdTime": "2021-01-06T08:23:01.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ca1b8e7d-e9a9-473d-8fc6-389425b241a8", + "createdTime": "2021-01-06T08:23:00.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7e5ec12c-abea-49a1-8358-e0139acf4595", + "createdTime": "2021-01-06T08:23:00.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d8c4e11-d796-4b8b-a429-9757dac9a42b", + "createdTime": "2021-01-05T20:05:48.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6901cca4-201b-480d-a927-e71ee2f68d0f", + "createdTime": "2021-01-05T20:06:39.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1ba1506c-1988-483d-a326-031ca2b7f2b4", + "createdTime": "2021-01-05T20:12:32.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5ddea8f-042b-4090-af63-8a334243ce60", + "createdTime": "2021-01-05T20:05:19.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "adbc06d9-d686-4040-b4f8-ff737ad09ef2", + "createdTime": "2021-01-05T20:07:09.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4a3d3217-fbc7-45b2-8fec-f2dacbc96c88", + "createdTime": "2021-01-05T20:12:59.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "066cea83-9d22-4442-ac69-88209f5f6eca", + "createdTime": "2021-01-05T20:12:59.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "143bb02b-8959-4e99-b0a3-d6717d29d302", + "createdTime": "2021-01-05T20:12:58.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4ba2718c-dec0-43c0-8f3d-a8e51c1fe32b", + "createdTime": "2021-01-05T20:12:58.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86a0943c-4879-4e74-b95f-b5dcd4d9657d", + "createdTime": "2021-01-05T20:12:33.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c2c0a85c-0cf9-4f55-a52d-9e382dc9ea61", + "createdTime": "2021-01-05T20:12:32.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f6ad566d-ba90-4ea5-94ac-213b108d59d6", + "createdTime": "2021-01-05T20:12:31.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "117b2caa-76c5-4cfe-b326-9cf708d8599c", + "createdTime": "2021-01-05T20:07:10.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6fcefd5b-d519-46be-9eac-569b10f1daa8", + "createdTime": "2021-01-05T20:07:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "784fdb55-97d0-402c-a4e0-6d0793eea60c", + "createdTime": "2021-01-05T20:07:08.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3bc7750-7124-45c1-b5a9-d2f382087435", + "createdTime": "2021-01-05T20:06:40.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fee82735-493a-4210-ac33-dea0acfab036", + "createdTime": "2021-01-05T20:06:38.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adaa52d4-17b2-4067-b478-2018fd685f63", + "createdTime": "2021-01-05T20:06:37.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d02b463-6de2-48ae-83ab-bcfd6afc1924", + "createdTime": "2021-01-05T20:05:49.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "774e5149-ea51-4d02-b111-20bafb0002c4", + "createdTime": "2021-01-05T20:05:48.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70c87b28-71d9-4c20-929f-db07296a77bc", + "createdTime": "2021-01-05T20:05:47.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de292309-30e6-4b9f-857c-7fe2eaee3549", + "createdTime": "2021-01-05T20:05:19.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0a2a4c69-c50c-4b28-886f-db71781a5e8e", + "createdTime": "2021-01-05T20:05:19.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b2bd50a7-cccf-4035-a7ad-154dd06693f0", + "createdTime": "2021-01-05T20:05:19.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68c956d8-8cf2-4e6a-b020-5ac8222ed5fd", + "createdTime": "2021-01-05T20:05:18.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "04ca474e-cf0a-4d3d-a71d-d790360d6336", + "createdTime": "2021-01-05T20:05:18.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fa8c8fcf-c393-4e78-84fc-14c7b155c196", + "createdTime": "2021-01-05T20:05:18.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae90d862-cf01-4ca9-9686-48891f6e17e3", + "createdTime": "2021-01-05T20:05:18.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b88b9e65-7d7f-4caf-ba78-888f58ad12da", + "createdTime": "2021-01-05T09:15:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25949c34-f8a6-4d76-b415-eefaae7d74bc", + "createdTime": "2021-01-05T09:15:48.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9968bc0-bcc9-4746-a9f6-c9bc9f5f1921", + "createdTime": "2021-01-05T09:15:48.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "60bed383-d8b9-4af0-b41d-137631787a18", + "createdTime": "2021-01-05T09:15:47.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a12fb560-04d5-461a-bc57-2c16391f8a78", + "createdTime": "2021-01-05T09:12:11.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17446967-da54-47a7-ae09-a461a3703559", + "createdTime": "2021-01-05T09:12:10.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b0bf7cf-f840-4fbe-bc54-c616e6f3e98a", + "createdTime": "2021-01-05T09:12:09.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6bbe1c-9a79-478d-aaf7-9405add570f2", + "createdTime": "2021-01-05T09:12:09.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cbba494-7d47-46f1-9ce7-3de9d1209995", + "createdTime": "2021-01-05T09:00:18.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d597e9f4-6a4e-4a0f-a25f-cb4d179371ce", + "createdTime": "2021-01-05T09:00:18.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b42c5609-051b-4a91-b89a-69942df91b7b", + "createdTime": "2021-01-05T09:00:17.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ad099b7-6af9-4d4b-8b5c-c9da0c6c83dd", + "createdTime": "2021-01-05T09:00:17.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a13fa93f-83d9-48aa-9c0f-cf33e9c050a0", + "createdTime": "2021-01-05T08:56:48.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88532c49-1246-4bee-aa38-a3f0597d760f", + "createdTime": "2021-01-05T08:56:48.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a19e986a-6237-41b1-af77-cb6832eb98bb", + "createdTime": "2021-01-05T08:56:47.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "581eb52c-23c1-4652-b213-9ed53d38368a", + "createdTime": "2021-01-05T08:56:46.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a1bca85-da6c-4ebf-b95d-596accf0b80f", + "createdTime": "2021-01-05T08:47:15.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c07695e-6cf3-418c-972e-adb5058590c0", + "createdTime": "2021-01-05T08:47:14.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea238045-781c-4224-a4e2-a40647bf5ccb", + "createdTime": "2021-01-05T08:47:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "502f2afd-4c49-43d7-bdc7-9483684f5d97", + "createdTime": "2021-01-05T08:47:13.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88525102-d45c-4cff-89bd-082d4de2001d", + "createdTime": "2021-01-05T08:31:34.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4c1811b7-0bf7-4fee-8143-0a1811caa46d", + "createdTime": "2021-01-05T08:35:17.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ca6bf768-576b-4e4f-97a0-bbc8b1fe7956", + "createdTime": "2021-01-05T08:24:09.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8caa343b-843d-425d-bfda-1a6cef555b48", + "createdTime": "2021-01-05T08:35:17.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff207966-4313-4e61-9d42-4459aeb5489c", + "createdTime": "2021-01-05T08:35:16.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4898d21e-a84a-451c-87d0-865ea5097413", + "createdTime": "2021-01-05T08:35:15.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2b54bdb-5dfa-4ef9-9caf-73eed2d4c823", + "createdTime": "2021-01-05T08:31:34.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1e49d61-8270-408d-9e0f-11a849da1a71", + "createdTime": "2021-01-05T08:31:33.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a0c582a6-f39c-409f-964c-79400b0ad771", + "createdTime": "2021-01-05T08:31:32.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47471a55-e9f3-43f0-94bf-b4b10d65f118", + "createdTime": "2021-01-05T08:24:08.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe7f029a-646d-4927-ad8a-84ab36eaf87c", + "createdTime": "2021-01-05T08:24:08.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06b9448c-ec6b-4c34-94f3-4dc6fb9ff864", + "createdTime": "2021-01-05T08:24:07.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18af88bd-3812-4380-8997-890ff1f73963", + "createdTime": "2021-01-05T08:20:31.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "29ceb2ed-c53b-4099-ac33-5990889f26b0", + "createdTime": "2021-01-05T08:20:30.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e0bd0eb-5c0a-4531-881e-969918812006", + "createdTime": "2021-01-05T08:20:29.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3efa88b3-3bc1-49bb-87f8-3ca3232393cd", + "createdTime": "2021-01-05T08:20:28.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fcfcb359-8f07-42aa-9f8a-96ef50fc66bb", + "createdTime": "2021-01-04T20:10:12.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e9244948-7645-4967-a292-3ef19041542a", + "createdTime": "2021-01-04T20:09:02.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "76fbc739-5978-4afe-acf6-0bb14822b458", + "createdTime": "2021-01-04T20:08:47.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b84163ab-cdd5-473d-81d6-6e861ca68e98", + "createdTime": "2021-01-04T20:08:37.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "868e70e1-a242-4e1e-b544-4c045f7598c5", + "createdTime": "2021-01-04T20:08:24.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "60d28e8f-bcdd-4d6a-8161-0de1b58c7314", + "createdTime": "2021-01-04T20:13:20.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1bcfff35-2d4f-4770-a11c-cc5e4374a62c", + "createdTime": "2021-01-04T20:13:21.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be905caf-26ab-4357-b235-98c09de80e34", + "createdTime": "2021-01-04T20:13:20.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f05bbb7c-9883-4d4d-9b2e-e650c1e5553e", + "createdTime": "2021-01-04T20:13:19.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "19a76c0b-b45a-40f0-a199-a96228a905fe", + "createdTime": "2021-01-04T20:10:13.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57d551c5-794c-4eca-a442-ae3614e58150", + "createdTime": "2021-01-04T20:10:11.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4a95c802-1443-416e-982f-08336dd8bfcb", + "createdTime": "2021-01-04T20:10:11.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "240a23da-3e7d-4690-af63-c1196003aaf6", + "createdTime": "2021-01-04T20:09:03.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6ce3b63c-b165-47f3-9014-fdb27f600bc9", + "createdTime": "2021-01-04T20:09:01.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c38bb76b-4ca6-4090-8d21-a93104852db3", + "createdTime": "2021-01-04T20:09:01.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5eacd696-4f34-46ae-a3a0-11d1a5f783cc", + "createdTime": "2021-01-04T20:08:48.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "75b0d4c1-8724-4f02-a95e-c69b57f962b3", + "createdTime": "2021-01-04T20:08:46.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e9007cd-92c1-415f-b33a-b7147419a1e4", + "createdTime": "2021-01-04T20:08:45.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a04655c-6d0b-498d-b3d1-137a94a68759", + "createdTime": "2021-01-04T20:08:38.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8488dbd0-900d-4990-be67-fd7f891cfaa5", + "createdTime": "2021-01-04T20:08:36.146Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2ae21ef0-4a4e-4c26-8653-59dccf5d9921", + "createdTime": "2021-01-04T20:08:34.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39ed981f-f021-4240-8a07-bb1ebb5fd9c4", + "createdTime": "2021-01-04T20:08:25.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "68803e0c-b85b-45b9-8814-073ab38e0ade", + "createdTime": "2021-01-04T20:08:23.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0e80580f-1360-4cbc-a0d4-b33b59d009e6", + "createdTime": "2021-01-04T20:08:22.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f20f944c-4887-485d-9e33-f299672b6e38", + "createdTime": "2021-01-04T20:08:07.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6d87c7ad-2867-44eb-837b-6594627e2d7f", + "createdTime": "2021-01-04T20:08:06.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8178a627-f47f-41c5-af4c-f3556c29df2d", + "createdTime": "2021-01-04T20:08:06.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1222dc5e-854a-4546-a20b-647f72b6df19", + "createdTime": "2021-01-04T20:08:05.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22ce40a8-7700-4ce4-aa68-a17bddfcddc6", + "createdTime": "2021-01-04T09:13:08.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f9f3bc6-c5b5-4974-9547-f8e1e0681639", + "createdTime": "2021-01-04T09:13:08.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1658f216-21a9-47a5-9ba9-be5f4a7e9864", + "createdTime": "2021-01-04T09:13:07.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc199980-922b-4675-8a95-2eebe390cabd", + "createdTime": "2021-01-04T09:13:07.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "84b7e2a6-a964-4c80-949d-f0b876bbd1d3", + "createdTime": "2021-01-04T09:09:29.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ec9e34e3-b9e6-48fd-abbd-661ad22936c6", + "createdTime": "2021-01-04T09:09:28.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99034b33-7266-4a3b-87bf-8c49b4778f7b", + "createdTime": "2021-01-04T09:09:27.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc42e2a9-530d-4c0d-a38b-8e712cf9f9c7", + "createdTime": "2021-01-04T09:09:26.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1933c37-8825-4d5f-a03e-4661d6747e47", + "createdTime": "2021-01-04T09:00:25.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "389c05d2-e7cc-4afc-9315-b9262388ac4e", + "createdTime": "2021-01-04T09:00:25.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b8a8bff6-42ee-4238-9226-1a24a10c44d1", + "createdTime": "2021-01-04T09:00:24.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63320392-ea24-42ab-b306-5f11006e1b46", + "createdTime": "2021-01-04T09:00:23.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdda947f-9075-47b9-8f0a-43d64ac51f15", + "createdTime": "2021-01-04T08:56:47.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "94a52817-618d-4715-a440-c90e56005ebf", + "createdTime": "2021-01-04T08:56:47.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c8d041-f2ec-4dc1-be3b-99cd4f9bc6bd", + "createdTime": "2021-01-04T08:56:46.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "155417f3-adc5-400f-a9c3-8bc323aec64d", + "createdTime": "2021-01-04T08:56:45.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d51d026e-02c8-4cb6-8075-00a52d06929f", + "createdTime": "2021-01-04T08:48:02.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "feda9901-4988-4fbd-b4dd-c73126991d02", + "createdTime": "2021-01-04T08:48:01.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "41ce8ea5-6fcd-4805-bd36-9f6f8d19a9f1", + "createdTime": "2021-01-04T08:48:01.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46158b6e-7cca-4564-bd06-fd3c2fecc8a6", + "createdTime": "2021-01-04T08:48:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6eeee9f-350a-46b7-af1a-f45a72e17376", + "createdTime": "2021-01-04T08:31:51.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e3acb57-e717-4b0d-adf3-a84debc0bd4e", + "createdTime": "2021-01-04T08:24:44.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e16109ad-becd-477e-a2de-bb6f55ca4c51", + "createdTime": "2021-01-04T08:35:30.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7cb678e5-aa76-4392-91ad-1f8afae46610", + "createdTime": "2021-01-04T08:35:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "932e7047-aa00-4821-a823-36248d7876de", + "createdTime": "2021-01-04T08:35:28.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd050682-d6f3-496f-a0d4-72748c32c165", + "createdTime": "2021-01-04T08:35:27.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d5affab-4f1e-44a2-b74e-7098add0106d", + "createdTime": "2021-01-04T08:31:50.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "53600b80-6363-4779-98b1-55d223f7e4c4", + "createdTime": "2021-01-04T08:31:50.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "90d7d2a8-4228-4800-ade6-2f79275ff7f8", + "createdTime": "2021-01-04T08:31:49.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b7d834c-ff27-4e4b-abf6-571cc59e7931", + "createdTime": "2021-01-04T08:24:43.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3f47ea7a-7dfd-4aa9-8c8d-f6d76ed68a55", + "createdTime": "2021-01-04T08:24:42.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63881cc6-b107-4fee-a73d-67a4ea777a27", + "createdTime": "2021-01-04T08:24:41.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05c3da49-ede2-44a2-81df-daacdfda9814", + "createdTime": "2021-01-04T08:20:58.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03e31d03-cddb-4ef2-abe1-43718a708bd7", + "createdTime": "2021-01-04T08:20:57.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51bfbaf0-20b4-4243-bed4-b7dd2b47d958", + "createdTime": "2021-01-04T08:20:57.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e3442c6-656a-484d-a0d3-2156cf3d9c52", + "createdTime": "2021-01-04T08:20:56.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "27a4dee6-070b-4af9-9c9f-caef9194d7c2", + "createdTime": "2021-01-01T09:08:19.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c419bfc-6287-4b26-bc83-9bf4f53f0123", + "createdTime": "2021-01-01T09:08:18.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dcbc058-53a8-4dd1-bfde-9f63247fe5c4", + "createdTime": "2021-01-01T09:08:17.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7fa95f02-9561-4c31-adc6-58531cfebd6e", + "createdTime": "2021-01-01T09:08:17.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdb75060-cffa-4288-b829-1baaa7591b50", + "createdTime": "2021-01-01T09:04:59.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "14ed2d4c-9b17-435b-be34-c021fab0a78d", + "createdTime": "2021-01-01T09:04:58.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d06be283-86f3-457d-a8a8-39aa7c79f38d", + "createdTime": "2021-01-01T09:04:58.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f78f6c85-91e1-4f9f-883a-c754fa2dceeb", + "createdTime": "2021-01-01T09:04:57.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45166c9f-66b6-4e11-96d2-0ca64f7b9a90", + "createdTime": "2021-01-01T08:58:18.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ca074c-bc6b-4d03-8c57-bb847f5897b9", + "createdTime": "2021-01-01T08:58:17.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eea77a54-32f7-45a0-aaf3-3d5fa61bbe1f", + "createdTime": "2021-01-01T08:58:17.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce6b2a85-81d1-4593-8e24-a3a10c274014", + "createdTime": "2021-01-01T08:58:16.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9a6f78e-ede2-4f9f-8fe5-1de1b8ad0b8b", + "createdTime": "2021-01-01T08:54:34.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1ef59c34-e24b-4fef-beef-49a9cc3efe30", + "createdTime": "2021-01-01T08:54:33.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "01d28f54-c798-4fdb-9327-f3e6edcf1b1e", + "createdTime": "2021-01-01T08:54:32.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "56bb5c41-150f-42dd-85fc-0ca189c6dda7", + "createdTime": "2021-01-01T08:54:32.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7d4a1cc-fbf4-4e4b-81aa-2fcb41924c8c", + "createdTime": "2021-01-01T08:45:36.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8034fff3-e20f-4e55-9bb4-c57e3b43a067", + "createdTime": "2021-01-01T08:45:35.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2c067c15-2a63-4405-a48d-bbb8c9d910ed", + "createdTime": "2021-01-01T08:45:35.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e2cbf03-9d7c-4450-a5a4-39c691bd3074", + "createdTime": "2021-01-01T08:45:34.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccef1e17-b02c-45eb-ad4c-c8a27c65afca", + "createdTime": "2021-01-01T08:23:57.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92222554-284f-4aa6-8b47-1a4fd2a98bc0", + "createdTime": "2021-01-01T08:35:31.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "168ca31f-ce5b-41ac-b251-c358c10e00aa", + "createdTime": "2021-01-01T08:32:15.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d72479e4-03d3-4961-9074-2acbe41bad90", + "createdTime": "2021-01-01T08:35:31.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a5b1b7d-93a1-4fcd-840e-b99a295950be", + "createdTime": "2021-01-01T08:35:30.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f6a67f42-20f1-4381-8840-adef96d4d0ca", + "createdTime": "2021-01-01T08:35:29.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4907a9d7-0e34-4657-86bc-d1b9b7458d9a", + "createdTime": "2021-01-01T08:32:14.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdfda8f-0f0d-4c9c-b36f-64b158b74f7a", + "createdTime": "2021-01-01T08:32:13.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "072c2766-da2c-44a4-a603-c83fbdf532b5", + "createdTime": "2021-01-01T08:32:13.188Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e7fbd19-88b9-46ed-8e70-649155e7af2d", + "createdTime": "2021-01-01T08:23:57.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b01c6998-e989-4930-a12e-d186a1569704", + "createdTime": "2021-01-01T08:23:56.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d300a4d1-9552-40cd-87f0-b50f7ccfb60e", + "createdTime": "2021-01-01T08:23:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c26f93-56ae-4072-a84a-84b4aab2da0a", + "createdTime": "2021-01-01T08:20:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f2c9fc2-e426-488e-b13f-47aa6ebaa47f", + "createdTime": "2021-01-01T08:20:27.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39f33192-b7bd-49b5-a8d1-f2bd2e30b004", + "createdTime": "2021-01-01T08:20:26.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06074f4a-7a39-4628-ae55-8234f1e0e8e6", + "createdTime": "2021-01-01T08:20:25.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f88e27e-428f-41f9-a66a-f90c5e6783a8", + "createdTime": "2021-01-01T01:12:31.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a119087-2769-4c50-b435-8c41de441b67", + "createdTime": "2021-01-01T01:12:30.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "42e28b3b-ba6c-4982-84c7-283759475bc4", + "createdTime": "2021-01-01T01:12:29.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c446c0af-eda5-44c7-9ece-1eb46b688983", + "createdTime": "2021-01-01T01:12:28.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "563902a7-9dd6-430d-bec9-aed4775f5c1d", + "createdTime": "2021-01-01T01:09:03.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abe553d6-0459-4a8a-a2f3-e7170f429fb7", + "createdTime": "2021-01-01T01:09:03.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09400a89-486b-45ad-85dd-09e3dcafc870", + "createdTime": "2021-01-01T01:09:02.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ac6e1fe0-a61b-4fc8-b464-612dfd478ce4", + "createdTime": "2021-01-01T01:09:01.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b80c88d4-e84a-430b-a63d-00fa3e99a6ea", + "createdTime": "2020-12-31T09:10:53.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f403490a-dc0e-422e-b67e-04d77865ba7d", + "createdTime": "2020-12-31T09:10:53.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a803b079-e58a-4eaa-801c-3cd8d06dd06d", + "createdTime": "2020-12-31T09:10:52.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "95d916a6-88dd-43a0-bbe8-3e73329f933d", + "createdTime": "2020-12-31T09:10:52.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a1c0c80-8334-408b-9df2-943e94639ac1", + "createdTime": "2020-12-31T09:07:32.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27ba7945-a2b1-4575-a000-1870240c2039", + "createdTime": "2020-12-31T09:07:31.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "024388a8-e204-4fdf-b750-199a7ae18ff7", + "createdTime": "2020-12-31T09:07:31.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47289e8b-1af1-486b-b8fb-794a2d287064", + "createdTime": "2020-12-31T09:07:30.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c3ae44ec-c9c9-4136-be64-009ac889beff", + "createdTime": "2020-12-31T09:00:41.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ef4ae2cc-d5ed-4078-9444-9ffcf94f2122", + "createdTime": "2020-12-31T09:00:40.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "daad3f1a-df51-47a9-8998-3c054105a70e", + "createdTime": "2020-12-31T09:00:39.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c540a912-6d51-4271-b432-b052b24408c9", + "createdTime": "2020-12-31T09:00:38.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4312387a-3e20-4212-bd35-97aa26fdaacf", + "createdTime": "2020-12-31T08:57:04.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88065dff-4929-4419-bb62-927a0e52cced", + "createdTime": "2020-12-31T08:57:03.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed40905-54de-40a4-9839-4d548f994f3d", + "createdTime": "2020-12-31T08:57:03.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "034d466d-6d8d-41e6-92ad-0e30c3cf3ac8", + "createdTime": "2020-12-31T08:57:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16effbbf-9129-4ba1-aa90-efa377ab364c", + "createdTime": "2020-12-31T08:48:07.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f0f9b0b5-2e4a-4699-b744-5ab11562cdc5", + "createdTime": "2020-12-31T08:48:07.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75c65118-43f8-4805-b3a4-7daa2768617d", + "createdTime": "2020-12-31T08:48:06.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb8ac1f7-cf61-4ed4-842f-a1c2351c59d7", + "createdTime": "2020-12-31T08:48:05.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a52ec63-7894-47a3-8e73-dd68d028e06c", + "createdTime": "2020-12-31T08:23:58.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69b96ad4-f740-4171-9ef4-e31e6d00c6e2", + "createdTime": "2020-12-31T08:30:54.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e6bb3e32-2296-4249-8365-42697df77d71", + "createdTime": "2020-12-31T08:34:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3644b01c-d55e-4e2a-8385-0617411154c6", + "createdTime": "2020-12-31T08:34:19.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0c4bfc72-c2c5-4895-a5dc-75ebe47d3a85", + "createdTime": "2020-12-31T08:34:18.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1543d8b2-255d-40da-bac6-70e60e29860d", + "createdTime": "2020-12-31T08:34:17.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25df8f27-15af-4adf-97a4-fab634948334", + "createdTime": "2020-12-31T08:30:53.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e6c12fc-87f0-4844-94dc-2dcd0a682682", + "createdTime": "2020-12-31T08:30:52.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b4b9ab2a-2da2-4569-8a77-b26030774b0c", + "createdTime": "2020-12-31T08:30:52.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd1241fd-d0c0-4201-a439-3cf5c2b3382d", + "createdTime": "2020-12-31T08:23:58.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "07abe614-cdb8-4e3f-96cd-5ae26ef8edba", + "createdTime": "2020-12-31T08:23:57.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c9490f2-1984-4f88-86c5-1195fd14e1c0", + "createdTime": "2020-12-31T08:23:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b2bcddc-ca73-423d-afd4-25a904777b48", + "createdTime": "2020-12-31T08:20:21.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "898ca250-4e33-4c26-ac10-2ebc772f96e8", + "createdTime": "2020-12-31T08:20:20.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c8b86015-c41a-47c0-89ed-9ad6dedbb857", + "createdTime": "2020-12-31T08:20:19.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f8b42e4-9352-4437-8179-29ff8424c460", + "createdTime": "2020-12-31T08:20:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b07e861-bb7c-4694-9bd1-b810792ea492", + "createdTime": "2020-12-30T09:10:00.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63b516bc-21b6-4a3a-af74-71f9f1f1c341", + "createdTime": "2020-12-30T09:09:59.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf21194-8f56-4d2d-a2ac-9ec8f35627b1", + "createdTime": "2020-12-30T09:09:58.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9e7c6f1-4e43-4f94-988a-4c3c07c1d94b", + "createdTime": "2020-12-30T09:09:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05668173-fe69-4305-b3e3-3b5d554af216", + "createdTime": "2020-12-30T09:06:37.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9a3816e-7863-44ce-884d-3e299f8d728c", + "createdTime": "2020-12-30T09:06:36.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5492c9c-e699-43c2-b37d-bf69ee580b14", + "createdTime": "2020-12-30T09:06:35.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d118e464-2e74-4d1c-9513-77905a23d4f0", + "createdTime": "2020-12-30T09:06:34.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ec12b0df-7b27-4a93-97ba-124dc1bdea21", + "createdTime": "2020-12-30T08:59:19.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ea7310eb-6db3-4d75-9dfa-483458091937", + "createdTime": "2020-12-30T08:59:18.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c22aef0c-5786-4e27-a526-827c1a01d28f", + "createdTime": "2020-12-30T08:59:18.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49277e44-751f-46a0-bc8b-3aa9a07a1c88", + "createdTime": "2020-12-30T08:59:17.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fac045f-a105-4fd6-87d1-4278faca64a8", + "createdTime": "2020-12-30T08:54:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ba6930-4f01-47e6-862f-0ee39644b7fe", + "createdTime": "2020-12-30T08:54:44.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6151cb8-7345-4e84-adfb-4fb11d519523", + "createdTime": "2020-12-30T08:54:44.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc37ee8d-8553-464e-bf6d-85509174b57f", + "createdTime": "2020-12-30T08:54:43.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fa3668f-f76a-4641-8c34-365a7da2318b", + "createdTime": "2020-12-30T08:45:17.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d25de72-0fbd-449e-92f9-fc068c9bb217", + "createdTime": "2020-12-30T08:45:16.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f390acec-1b19-4add-acc8-f2c1e524bdf5", + "createdTime": "2020-12-30T08:45:16.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d2442ca5-61b6-47a6-a5af-822a83fe302a", + "createdTime": "2020-12-30T08:45:15.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "654ea60a-1a4f-4e5a-9734-1c036f9ac593", + "createdTime": "2020-12-30T08:24:00.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f77d3a14-4ef3-4f08-9783-df352dfafed5", + "createdTime": "2020-12-30T08:30:37.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e9af07b6-4d21-4b0c-a00c-12c6a815e39c", + "createdTime": "2020-12-30T08:34:05.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "85a62d90-ea69-4ce6-9c47-e5d572546bd8", + "createdTime": "2020-12-30T08:34:04.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc20f9c9-71fe-4d40-8dbd-c40c23028468", + "createdTime": "2020-12-30T08:34:04.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "39eecc3d-bd42-428c-a5cf-35371f93ae3d", + "createdTime": "2020-12-30T08:34:03.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae7d2a8e-b177-402a-8f05-d8b0d8483763", + "createdTime": "2020-12-30T08:30:37.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f4abe8bd-1872-4546-bf31-ff37a74fd2e6", + "createdTime": "2020-12-30T08:30:36.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c32f021-d70f-4b25-b46d-52579af14980", + "createdTime": "2020-12-30T08:30:35.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "013d5e41-c255-4d2e-88af-e134d06ea130", + "createdTime": "2020-12-30T08:24:00.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fb037dd6-d64a-4115-8ea2-1cf946a3c17b", + "createdTime": "2020-12-30T08:23:59.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6017f41e-9064-4b1b-bd0e-ea6818efeb99", + "createdTime": "2020-12-30T08:23:59.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17203519-2edb-42cd-a363-d0a8f9251158", + "createdTime": "2020-12-30T08:20:31.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b02f56da-1920-4caa-af52-97dd2c105554", + "createdTime": "2020-12-30T08:20:30.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1fba0b3b-b990-4b38-8d5b-43d5f705831a", + "createdTime": "2020-12-30T08:20:30.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a91c53f1-57d6-4ea5-bb26-dd75444cb967", + "createdTime": "2020-12-30T08:20:29.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9149e0b0-de41-4ab5-b854-11abfafd8881", + "createdTime": "2020-12-29T20:06:25.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c3b4bef9-16a8-48ef-9d83-7ff9ac6c5229", + "createdTime": "2020-12-29T20:11:14.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "15782071-a511-49b9-b5f5-1f5c2a17c90e", + "createdTime": "2020-12-29T20:08:11.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9c0ed278-d6c7-4b75-b7e3-d17ba3f4bfda", + "createdTime": "2020-12-29T20:04:45.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f9c85808-b055-47ba-9b76-b50353e7bd07", + "createdTime": "2020-12-29T20:05:42.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "654c7f5f-1131-4c9c-b0e6-e00e533649d0", + "createdTime": "2020-12-29T20:05:32.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d61f42fe-5a0d-4c3c-a44f-53fa47b7f35f", + "createdTime": "2020-12-29T20:11:15.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b42a5cb-7b45-403d-b4bb-91c9ae97b1a2", + "createdTime": "2020-12-29T20:11:14.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e9e241e8-c6aa-4d56-8871-629fd0a58ddd", + "createdTime": "2020-12-29T20:11:13.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2981f08-bff9-4ea5-8ae5-226b670499ee", + "createdTime": "2020-12-29T20:08:12.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5bd10f34-8c39-458e-b055-cda02e1701ca", + "createdTime": "2020-12-29T20:08:10.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fe02b8c2-6a44-47e2-a363-38de53cd24a1", + "createdTime": "2020-12-29T20:08:10.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4f4fa7-58d8-407b-94ff-dc59151e33bc", + "createdTime": "2020-12-29T20:06:26.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "28d369fb-a76a-47c8-a5dc-8eee48a47708", + "createdTime": "2020-12-29T20:06:24.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "baf125ec-97a2-4359-979c-1e4f9bdc29fa", + "createdTime": "2020-12-29T20:06:23.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7396e660-5cdd-467d-86f2-3cdfb4783abe", + "createdTime": "2020-12-29T20:05:43.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b815b5f0-715f-4739-9543-a3dd6b6239e6", + "createdTime": "2020-12-29T20:05:42.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0aa04859-fd99-47f7-995d-9b55989588c0", + "createdTime": "2020-12-29T20:05:41.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d199f29-c49c-4d0c-838e-7d3e368533f7", + "createdTime": "2020-12-29T20:05:33.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1650f2b1-4f50-4948-b667-a314a972543d", + "createdTime": "2020-12-29T20:05:31.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "26a9c1a1-c00a-48bf-90f8-478267283e3f", + "createdTime": "2020-12-29T20:05:30.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f487279-b426-4c8d-a9b8-ba708460c2e1", + "createdTime": "2020-12-29T20:04:46.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d6e0f886-e6d6-41be-b6d0-9fb1c915c5f1", + "createdTime": "2020-12-29T20:04:44.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4aea61d5-4159-461e-bcd0-da10b3764fe1", + "createdTime": "2020-12-29T20:04:44.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66d14879-fc9e-4770-a981-d3cd44b74c37", + "createdTime": "2020-12-29T20:04:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cf8a2cce-3f76-4b71-8d0e-1cf86425da00", + "createdTime": "2020-12-29T20:04:38.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "17153da0-a236-4f4b-b69c-ebde67ed51b3", + "createdTime": "2020-12-29T20:04:37.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b48be36b-6122-4798-ab1c-9934a4267126", + "createdTime": "2020-12-29T20:04:37.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "023a2ad4-f219-41b1-8cde-ff8d2f3c170b", + "createdTime": "2020-12-28T20:06:21.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7d43e75d-4b60-4134-942e-0cf15a945d6c", + "createdTime": "2020-12-28T20:11:57.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c16cd0c-5cc5-4315-8d7e-3e5e3af9fd9b", + "createdTime": "2020-12-28T20:11:56.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53145bbf-0a31-49f7-aae1-d9a3a8def343", + "createdTime": "2020-12-28T20:04:48.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ecb24d7d-ae9b-4166-8666-57890bfa88e0", + "createdTime": "2020-12-28T20:11:55.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "64043313-c120-4f28-9624-610d6be73193", + "createdTime": "2020-12-28T20:11:55.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d45121a0-4ec2-41db-907e-0dce1b5dad29", + "createdTime": "2020-12-28T20:04:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6b24502-00aa-40dc-98df-2504525c8170", + "createdTime": "2020-12-28T20:04:44.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f77c2e65-728d-4080-b923-29646fe22b27", + "createdTime": "2020-12-28T20:08:23.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "027ca7c1-7083-435d-acd4-0f276321cd42", + "createdTime": "2020-12-28T20:08:24.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dc079424-26c0-423e-9a1b-edb3652c7943", + "createdTime": "2020-12-28T20:08:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0af9c65f-d5e9-4678-a6c5-be7687db1b09", + "createdTime": "2020-12-28T20:08:22.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d118ce5-0c62-41f5-9861-472d529c7ebc", + "createdTime": "2020-12-28T20:06:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e5f6691-8e09-46a5-bf78-7d0ec26a9d12", + "createdTime": "2020-12-28T20:06:21.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1123ef88-5402-4a80-ab92-6a58678524dc", + "createdTime": "2020-12-28T20:06:20.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a23602a-27ba-4be7-9c4a-423081f7f814", + "createdTime": "2020-12-28T20:04:48.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bfeed532-ff1f-4356-adb7-f9bad927a2ba", + "createdTime": "2020-12-28T20:04:47.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3a2b719f-1e17-4476-9590-64558807ccc6", + "createdTime": "2020-12-28T20:04:47.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0b83a0bd-6975-421f-986d-6c8874f47f7a", + "createdTime": "2020-12-28T20:04:46.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "079f9d92-3953-4a40-8083-8e3939aa5dd5", + "createdTime": "2020-12-28T20:04:46.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eec9f09c-22ce-4dda-88c7-d191f2d42ed6", + "createdTime": "2020-12-28T20:04:45.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f89e2f3-daca-4c04-8921-2ff521784c95", + "createdTime": "2020-12-28T20:04:45.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9310176b-b4ca-4216-ae2b-585c7a84178c", + "createdTime": "2020-12-28T20:04:44.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "435975f3-ad17-4050-ad68-98832a4fdeeb", + "createdTime": "2020-12-28T20:04:43.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b9d07318-e3b4-4975-a3af-711df7e55eeb", + "createdTime": "2020-12-28T20:04:43.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4695ade2-a2e7-4f59-8abf-81c055370dc8", + "createdTime": "2020-12-28T20:04:43.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0c1c8d1a-fe1a-42f1-ab87-6e2e250dd11c", + "createdTime": "2020-12-28T20:04:43.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61c32bbe-393a-4891-9211-b1e35ecf2ad1", + "createdTime": "2020-12-28T20:04:42.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c39a0a39-ea33-4189-84ed-2beedf66ee0d", + "createdTime": "2020-12-26T19:41:44.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "946f4c6d-dce4-4e23-94b2-590632d1fd05", + "createdTime": "2020-12-26T19:41:43.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6974f23d-4a62-4f8e-983d-8b5fedee1e6d", + "createdTime": "2020-12-26T19:41:43.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3662ca6d-6135-4aff-87fc-281a9586ec63", + "createdTime": "2020-12-26T19:41:42.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c11532d9-6de0-40e7-82cd-12f8589130b3", + "createdTime": "2020-12-26T19:40:53.147Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5139a051-9cff-43ff-a528-16719c838fd5", + "createdTime": "2020-12-26T19:40:51.994Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f8e0adf5-00fb-47be-978f-da5119f94204", + "createdTime": "2020-12-26T19:40:51.024Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "baa7b58a-9a2e-4d4a-8e38-3c18fac7cbbc", + "createdTime": "2020-12-26T19:40:50.129Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "549bf864-2a14-4707-a7b5-0c614cba022b", + "createdTime": "2020-12-26T19:34:42.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd5f0a43-9408-4892-bcc5-02f4cd8a7858", + "createdTime": "2020-12-26T19:34:42.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43f562ae-2085-4395-9944-cb9b7bc2a7c7", + "createdTime": "2020-12-26T19:34:41.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f7ac75b-f6d0-4131-8aa6-ecb927c8106a", + "createdTime": "2020-12-26T19:34:41.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7b385d2-a0d6-4628-9845-1ec2224b459c", + "createdTime": "2020-12-26T19:33:35.974Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db47d04d-4408-4db1-9651-b90cf58f1c95", + "createdTime": "2020-12-26T19:33:34.485Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25125b91-5f22-4623-bf6c-5eb41c1b820d", + "createdTime": "2020-12-26T19:33:33.375Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6635e2c5-b176-4c86-8232-2aed87a040b9", + "createdTime": "2020-12-26T19:33:32.132Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "70856037-9d1f-4d18-91f8-010979d5fe08", + "createdTime": "2020-12-26T19:18:16.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "227ed7d3-4e4f-4121-9682-8db2710f9a70", + "createdTime": "2020-12-26T19:18:15.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b0d8c5ea-488d-4aa4-9116-685f34c1c594", + "createdTime": "2020-12-26T19:18:15.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f3392c07-7180-4f14-9848-95ae55e2a540", + "createdTime": "2020-12-26T19:18:14.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa2bd0d5-2087-42cc-8b69-4d39b16f9909", + "createdTime": "2020-12-26T19:17:22.949Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb30f39-f7ca-47d5-a284-c7f41bf10d99", + "createdTime": "2020-12-26T19:17:22.064Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ef74749-a942-4166-843e-2a7a003f3ff2", + "createdTime": "2020-12-26T19:17:21.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8160914d-905c-47d7-8819-c514ddf8f134", + "createdTime": "2020-12-26T19:17:20.327Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eeedde34-57b0-4199-adee-db54bc957cc0", + "createdTime": "2020-12-26T19:08:37.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2d512357-1280-455c-be7e-221777df490a", + "createdTime": "2020-12-26T19:08:37.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b23f07d3-bcbc-46d0-92a5-c72b46d8e850", + "createdTime": "2020-12-26T19:08:36.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d2c1e81-1069-41da-8ec1-d976426dd62c", + "createdTime": "2020-12-26T19:08:36.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30318465-8205-46c7-9f9a-f5e39def0f62", + "createdTime": "2020-12-26T19:07:43.809Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f90a819f-d0a9-4e8a-92d8-e4680b0cdcb9", + "createdTime": "2020-12-26T19:07:42.479Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c64bae98-c2cb-4e39-8661-e2413971e706", + "createdTime": "2020-12-26T19:07:41.283Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d37fd3c3-f442-4274-bda8-243e13a4d985", + "createdTime": "2020-12-26T19:07:40.089Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "91884e2c-ca90-46a5-9be6-6517ecb47063", + "createdTime": "2020-12-26T18:48:42.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c772e292-4ec0-43e6-a5ca-922be0c6e064", + "createdTime": "2020-12-26T18:47:32.909Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a6f73d8e-a7f0-4d3e-8285-4ef037337749", + "createdTime": "2020-12-26T18:51:51.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "279daab8-c19d-4501-a489-137aecbaca2e", + "createdTime": "2020-12-26T18:51:50.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4f36200b-ee7c-4275-be34-37dcd8daece0", + "createdTime": "2020-12-26T18:51:50.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4da6bab-c749-4f15-be37-4385bb444497", + "createdTime": "2020-12-26T18:51:50.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2d00ccb-f237-4916-893d-bea94995b50d", + "createdTime": "2020-12-26T18:48:41.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "393a16a3-0fae-4827-9d3b-b02f89958851", + "createdTime": "2020-12-26T18:48:41.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7c2c51c3-f436-4d19-a0ab-9f539efc6c47", + "createdTime": "2020-12-26T18:48:40.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8138acc3-bd22-4feb-b7b9-72c4475b38f8", + "createdTime": "2020-12-26T18:47:31.404Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25e04d0a-2b7b-4715-a59b-bc03a3c841d0", + "createdTime": "2020-12-26T18:47:29.833Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "14ba6c05-8493-47cd-8ee4-962e711e0260", + "createdTime": "2020-12-26T18:47:28.099Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "acb3465c-779f-4907-a6d9-4d8343c0c381", + "createdTime": "2020-12-26T18:41:10.697Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c0e6c5-7404-4691-9e3b-d8ea7d8e386e", + "createdTime": "2020-12-26T18:33:25.85Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3333381f-ec97-445b-a920-069a16e67d42", + "createdTime": "2020-12-26T18:31:25.998Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "404d2e90-390d-48f5-ae96-532c4b2e0cd7", + "createdTime": "2020-12-26T18:31:23.744Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "62696134-7885-40c7-b50a-7430ad33146a", + "createdTime": "2020-12-26T18:31:21.604Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "92f43471-3e64-4609-8a15-0170c0448aab", + "createdTime": "2020-12-26T18:31:19.951Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c14d8a5c-8d64-4f3d-9b0e-6ea896648023", + "createdTime": "2020-12-25T09:09:32.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9802184-335a-4a2c-9b46-1377f3e98cdf", + "createdTime": "2020-12-25T09:09:31.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8de91df0-5f23-4ee9-86e7-39bc4b426c8e", + "createdTime": "2020-12-25T09:09:30.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f86963e-894d-45df-8089-331a55e2244a", + "createdTime": "2020-12-25T09:09:29.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b58973a-2e80-469d-9bcb-a46bcab64918", + "createdTime": "2020-12-25T09:05:59.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e94785a9-2317-4005-9091-88dbb70ffe67", + "createdTime": "2020-12-25T09:05:58.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "536af1d6-acd5-41c0-9170-22ec0fb83fed", + "createdTime": "2020-12-25T09:05:58.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "77e45f55-35de-476b-b350-78cdae335f08", + "createdTime": "2020-12-25T09:05:57.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ea02ad1-4407-41b9-b99e-744cc3cfebdb", + "createdTime": "2020-12-25T08:59:08.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bacabf11-3864-4629-bd71-e33bd87c43ae", + "createdTime": "2020-12-25T08:59:07.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "942cb0b8-c618-4720-b6f7-7efa578bbb02", + "createdTime": "2020-12-25T08:59:06.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "725367b8-fdc0-4866-aa65-1034b91a86ac", + "createdTime": "2020-12-25T08:59:06.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d06a623-ae13-4639-811e-0c636c826e0f", + "createdTime": "2020-12-25T08:55:40.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9a0410f-e2b3-461e-b21b-e082e6fb8e85", + "createdTime": "2020-12-25T08:55:40.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "61d50871-8a3e-41da-8241-c5bf949ddef2", + "createdTime": "2020-12-25T08:55:39.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c2dd13c9-abe9-4054-95bf-ed4f4c34b095", + "createdTime": "2020-12-25T08:55:38.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0f651ae-30a0-4afb-96c5-b3626855f842", + "createdTime": "2020-12-25T08:47:01.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a985b0f8-2d34-4f70-a8a5-fef154121e00", + "createdTime": "2020-12-25T08:47:00.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35a76e63-f11f-43ed-b313-cfc14d93f37f", + "createdTime": "2020-12-25T08:46:59.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "479e76aa-f34b-48ac-be45-8f1af9dfd7c3", + "createdTime": "2020-12-25T08:46:59.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9dec1de-3069-4953-88a1-02f945331541", + "createdTime": "2020-12-25T08:26:13.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4281866e-d3d7-474f-9851-8459332f7dfc", + "createdTime": "2020-12-25T08:33:10.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2121dcc8-a5f1-49e3-bffc-e0b26ab3a3a8", + "createdTime": "2020-12-25T08:36:45.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb55db8e-ba3e-4f61-8f91-ae16d1efa41f", + "createdTime": "2020-12-25T08:36:44.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "11116714-f1bf-458a-8374-e65d87a2d137", + "createdTime": "2020-12-25T08:36:43.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69c38f4e-ad59-4672-9add-e8e00376f1ad", + "createdTime": "2020-12-25T08:36:42.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2aa0f77-6a73-4d28-a11a-7062262280b7", + "createdTime": "2020-12-25T08:33:10.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c7a32716-29c0-4f86-a5a6-5a2a1e33c697", + "createdTime": "2020-12-25T08:33:09.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bca9531-f861-4620-a92d-2a51a0a7a76d", + "createdTime": "2020-12-25T08:33:09.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8dadeec-a6a6-4899-8712-ff39628ccb95", + "createdTime": "2020-12-25T08:26:12.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e50c9ef-5567-43dc-9484-d53c82a697d8", + "createdTime": "2020-12-25T08:26:11.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "816cbb81-dc0a-43ba-8d63-edfa379b8ce7", + "createdTime": "2020-12-25T08:26:11.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c8e3fc5-3fbb-47fc-ba8f-05aa21262774", + "createdTime": "2020-12-25T08:22:48.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "caad3f90-77aa-4263-b76e-407ed4a09a1e", + "createdTime": "2020-12-25T08:22:47.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf12817-e10a-42e9-bcbd-f47d2b22551c", + "createdTime": "2020-12-25T08:22:46.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "11602a67-36ae-42cd-bba8-9d6d3e4953b4", + "createdTime": "2020-12-25T08:22:46.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a43fbdc-ab73-4e99-8c84-d4e386e808f8", + "createdTime": "2020-12-24T20:15:36.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dbb9a780-4430-4c43-b1f8-054061f194e2", + "createdTime": "2020-12-24T20:15:35.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "edde2701-d541-4a18-94de-2e9911647287", + "createdTime": "2020-12-24T20:15:35.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7db4b3f5-c639-433b-858f-1b777982ee73", + "createdTime": "2020-12-24T20:15:34.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "068f4d52-c4bf-49b6-87c7-681b7ec3f975", + "createdTime": "2020-12-24T20:06:44.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7c7da011-2846-4ab7-8270-c27e0c6dc809", + "createdTime": "2020-12-24T20:05:42.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6c7cfa6-becf-46f8-824b-7fe78ae0b4c2", + "createdTime": "2020-12-24T20:05:19.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f12a119b-da05-446a-8178-56576243a02d", + "createdTime": "2020-12-24T20:08:53.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7130810d-019c-40b4-bf35-a3a8a0489a99", + "createdTime": "2020-12-24T20:04:48.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3556c2cb-fc0d-4842-baa1-6184bead8fda", + "createdTime": "2020-12-24T20:08:54.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7474e4ca-c62e-4d61-a256-e99389c6011a", + "createdTime": "2020-12-24T20:08:52.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8bcb59b9-38f4-4842-b708-346d10515e85", + "createdTime": "2020-12-24T20:08:52.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a50f775d-e969-425d-aa66-30043fb1f31d", + "createdTime": "2020-12-24T20:06:45.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b46a6857-a63b-4675-93c6-092e76f37169", + "createdTime": "2020-12-24T20:06:43.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "518c7b4c-a8f0-4757-a1dc-b63d864998db", + "createdTime": "2020-12-24T20:06:43.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ed2b8c3-9d1e-4e99-8a65-bdf64ab9aee6", + "createdTime": "2020-12-24T20:05:42.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f36f7e8a-5b59-48ea-952d-f312385d0d6b", + "createdTime": "2020-12-24T20:05:41.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6eaa4933-fdef-4df4-a329-6e78319e5e26", + "createdTime": "2020-12-24T20:05:40.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47171d57-32e5-45f0-94f4-cd5e50e817a1", + "createdTime": "2020-12-24T20:05:20.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c5d6e224-024c-4990-8580-11d96fcf9d3d", + "createdTime": "2020-12-24T20:05:18.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "169f1de2-36ec-4512-9ce4-63ce18c1fb23", + "createdTime": "2020-12-24T20:05:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4faff2e-461b-4861-a64f-2024a9568d3a", + "createdTime": "2020-12-24T20:04:49.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7e0bf8f7-6b6e-4817-911b-2b092f695d6b", + "createdTime": "2020-12-24T20:04:48.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "38e45064-6a9f-4b6c-8d62-d6d9756ff8b2", + "createdTime": "2020-12-24T20:04:48.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "42e16f55-a418-4ae9-8da9-ea8da6631b2b", + "createdTime": "2020-12-24T20:04:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "fe4c8aa9-6329-4c1a-a355-4df07d23949b", + "createdTime": "2020-12-24T20:04:47.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e0cf5c20-842c-4ee8-a25d-1217ad645473", + "createdTime": "2020-12-24T20:04:47.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1b7604e-0695-4555-914d-9afd9f90e8d4", + "createdTime": "2020-12-24T20:04:46.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de72de46-c2d3-43df-bf7d-119632f6301e", + "createdTime": "2020-12-23T20:57:14.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7e00fed1-e379-4016-a69c-4d0ffc44020c", + "createdTime": "2020-12-23T20:55:55.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "89d033c3-b29e-499d-9ba3-61477be156b3", + "createdTime": "2020-12-23T20:55:49.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1695baef-106c-4250-9545-27ec27ee13c3", + "createdTime": "2020-12-23T20:55:41.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "31fcaa73-0f9e-49a5-80c7-82d0d3938564", + "createdTime": "2020-12-23T20:59:21.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6537f314-72af-4a46-8254-8c988e600e6d", + "createdTime": "2020-12-23T21:02:17.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3aa2d7eb-6d83-49d2-b1f1-1b8e8d404ce8", + "createdTime": "2020-12-23T21:02:16.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9972891b-4ec2-4ed1-8684-4c560322b6f1", + "createdTime": "2020-12-23T21:02:16.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "61dee648-34cd-4d7e-845a-2bcd8dcdcc29", + "createdTime": "2020-12-23T21:02:15.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "271541ce-831c-4b60-9efd-5f3cfd560355", + "createdTime": "2020-12-23T20:59:21.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0bb80b85-dcb0-434d-b38f-b03de71606ca", + "createdTime": "2020-12-23T20:59:20.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7b201aae-2290-4eff-9c19-cfde840e505c", + "createdTime": "2020-12-23T20:59:19.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a317b0-5c8a-4430-90eb-3d6736241c9a", + "createdTime": "2020-12-23T20:57:15.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d987b8bf-1983-48b4-8cca-662fb034fe5f", + "createdTime": "2020-12-23T20:57:12.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f3cee7b2-bdd8-4887-a345-75571b06c06a", + "createdTime": "2020-12-23T20:57:11.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb393066-09a2-42d2-b4d1-4e84301f6b58", + "createdTime": "2020-12-23T20:55:56.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "61323aa0-5cd3-4799-b0fb-9e1130218214", + "createdTime": "2020-12-23T20:55:54.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3f6a47b2-8880-4980-ab36-e65279c757c1", + "createdTime": "2020-12-23T20:55:54.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc771f83-7120-4dd1-8ddd-298c2f297796", + "createdTime": "2020-12-23T20:55:49.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70932eba-4296-441b-8b55-8d5e7d986767", + "createdTime": "2020-12-23T20:55:48.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7dee9cf5-da65-4b97-9eef-8a358c676ca0", + "createdTime": "2020-12-23T20:55:47.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d6445f5-7c8f-4983-8e42-91a3d8b57d15", + "createdTime": "2020-12-23T20:55:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "339376c1-ffa5-4d6d-b976-2e489e11acae", + "createdTime": "2020-12-23T20:55:40.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0ade10ed-63c3-4456-95f8-d1b233f37cc5", + "createdTime": "2020-12-23T20:55:39.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af85bbd3-0c7d-4295-830d-636b9f292da0", + "createdTime": "2020-12-23T20:55:28.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f57e46c8-87e3-4178-91af-26bfbb400234", + "createdTime": "2020-12-23T20:55:27.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3f791a9d-2a33-4be2-bece-86a8cba5cf40", + "createdTime": "2020-12-23T20:55:26.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6053b909-48d0-49bf-ba8b-a4ef4f46c1b2", + "createdTime": "2020-12-23T20:55:25.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "37732f37-1def-40e5-831b-ac529a35968b", + "createdTime": "2020-12-23T09:15:09.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41719929-c6fc-480e-ac1e-40875d7ca2ec", + "createdTime": "2020-12-23T09:15:09.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "66a1c652-1d16-4c7c-adfb-9bc06aa9e082", + "createdTime": "2020-12-23T09:15:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e691afe-b49e-4ec0-ba50-bc1dafec10e7", + "createdTime": "2020-12-23T09:15:07.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba31bc66-cbca-4c06-b314-26dbf02c627f", + "createdTime": "2020-12-23T09:11:29.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "33bb3722-83cc-48ed-a135-8f7939ca2d1a", + "createdTime": "2020-12-23T09:11:28.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "80f60981-19d3-45bd-a34b-a94e6104ac3b", + "createdTime": "2020-12-23T09:11:28.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5f214c22-adff-4e49-9e36-fb82c533a60b", + "createdTime": "2020-12-23T09:11:27.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65ef382d-bf8f-4a62-9bb1-bce0dcae694e", + "createdTime": "2020-12-23T09:00:03.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "057009cb-46f5-4084-8e7b-9fac9ccb6c54", + "createdTime": "2020-12-23T09:00:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dbb69e5e-3ce5-4fe7-81eb-96d2eaf0a8ce", + "createdTime": "2020-12-23T09:00:01.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f6b1cc3-2489-4522-80a4-7f7f6881b9cf", + "createdTime": "2020-12-23T09:00:01.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "89daaa3e-5a7d-4dc3-8aa2-69f33d44e95c", + "createdTime": "2020-12-23T08:56:24.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b45c5b1-f0f8-49cc-998f-f391b657d8aa", + "createdTime": "2020-12-23T08:56:23.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09bbcac7-81fc-4721-90e1-70846c0a0bd9", + "createdTime": "2020-12-23T08:56:22.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5837ed1b-0f3e-4ca8-87b4-e450935a2a7e", + "createdTime": "2020-12-23T08:56:21.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a6ac7d-8cb8-43f4-b32d-01fe191665b6", + "createdTime": "2020-12-23T08:47:47.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91fe007b-5d38-4669-bbf7-842c8f5d9736", + "createdTime": "2020-12-23T08:47:46.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "23538581-9115-4af6-bbe9-0989e266e343", + "createdTime": "2020-12-23T08:47:45.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a7aec005-b9ae-4fe6-b820-ccb62e716852", + "createdTime": "2020-12-23T08:47:45.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "655d24e9-dc15-4672-82f1-a5edeed36ea5", + "createdTime": "2020-12-23T08:24:41.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d7b984-973b-4cba-846a-53538bb5826c", + "createdTime": "2020-12-23T08:34:21.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1d3719d6-f5fa-4118-b053-2a3b49f36bda", + "createdTime": "2020-12-23T08:37:49.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f2dbfab9-056a-460e-a864-d53c758f8721", + "createdTime": "2020-12-23T08:37:48.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e85a6886-832a-4398-bfec-ee4bfe4d64c3", + "createdTime": "2020-12-23T08:37:47.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8fb381ea-cd25-4cb1-8fd9-b0d546662d21", + "createdTime": "2020-12-23T08:37:46.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "121ea8c0-9752-4e74-a70c-bbd09fcd15c7", + "createdTime": "2020-12-23T08:34:20.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b5450ce-eadd-4b65-9b45-8845be4a59b9", + "createdTime": "2020-12-23T08:34:19.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "332f2f4a-58bb-43d8-8c20-39c37fcfa083", + "createdTime": "2020-12-23T08:34:18.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b28bf906-ba52-4bde-819b-e87d45fe2050", + "createdTime": "2020-12-23T08:24:40.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5868f983-9bfd-4580-a405-067192b7899e", + "createdTime": "2020-12-23T08:24:39.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ccf48000-1df0-449a-a445-34637dd9ef7a", + "createdTime": "2020-12-23T08:24:38.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77abdf63-abc8-4f99-99f5-f70717a0bbc4", + "createdTime": "2020-12-23T08:21:06.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "454b7a57-ee4e-41c7-af70-aef6d91ce632", + "createdTime": "2020-12-23T08:21:05.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e78a2c14-5b98-4a98-a76c-2bd8dcb0660f", + "createdTime": "2020-12-23T08:21:05.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "124c4ac7-f8a4-4b30-99a9-00dfd165de51", + "createdTime": "2020-12-23T08:21:04.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aef428f5-3d71-4c27-b456-ab86b8b5bd2f", + "createdTime": "2020-12-22T20:41:06.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9b7e3df-fbca-41f0-9ee6-54508ffec82c", + "createdTime": "2020-12-22T20:41:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1383546a-0c4f-410c-a69a-7e27cbf6e51d", + "createdTime": "2020-12-22T20:41:04.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "957bb947-548b-481a-aa3f-2c7c3cbf0e95", + "createdTime": "2020-12-22T20:41:03.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42a9b275-d5bc-435a-89f2-58f4051d35ff", + "createdTime": "2020-12-22T20:33:34.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f3a3b1e3-ce4d-40d5-a72c-d544161abd4e", + "createdTime": "2020-12-22T20:34:35.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cdf73d2d-f045-4ecc-a56f-48e08ac4e43b", + "createdTime": "2020-12-22T20:35:11.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5c2c96ed-2a2b-4ffa-bf54-6896805b34c8", + "createdTime": "2020-12-22T20:39:05.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "671bf225-71ae-4b82-970a-6972ab8b2576", + "createdTime": "2020-12-22T20:34:55.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "489f6406-93bc-4dcc-94a3-54dd0621f32e", + "createdTime": "2020-12-22T20:33:42.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a7fc5352-987f-4a5a-bd82-a77e67999573", + "createdTime": "2020-12-22T20:39:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e2dc54ea-1fbd-4dfd-9b85-81c084c4c8bd", + "createdTime": "2020-12-22T20:39:04.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7105d376-82f4-4733-a89a-67c7ea66d5e5", + "createdTime": "2020-12-22T20:39:03.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee0ce34-6d99-4a43-9566-b51f85ac978a", + "createdTime": "2020-12-22T20:35:12.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f7841f1-f60f-4505-948a-373307cd08ce", + "createdTime": "2020-12-22T20:35:10.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0427dcc9-2f94-471f-abae-3108bc2412c9", + "createdTime": "2020-12-22T20:35:07.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82f2a35c-90ee-4ea7-aafc-0f324b46c88b", + "createdTime": "2020-12-22T20:34:57.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9817a6b9-0fe9-4611-b20a-690a93c2bc2a", + "createdTime": "2020-12-22T20:34:53.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fbeba7b9-ca0d-4309-b795-e4c5bf91d69c", + "createdTime": "2020-12-22T20:34:52.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42c50a9e-1012-45be-acb8-8656ed1d4b6b", + "createdTime": "2020-12-22T20:34:36.282Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a0c5c1dd-3950-4b8b-84bc-4dd17e9e0a73", + "createdTime": "2020-12-22T20:34:34.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9ebfdb96-98d9-404f-bec6-1b4905c8f70e", + "createdTime": "2020-12-22T20:34:32.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0bbb61c-83ea-4041-86dc-400dea6256ee", + "createdTime": "2020-12-22T20:33:44.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cb41e179-0b9b-4788-a94a-5c274d3387a8", + "createdTime": "2020-12-22T20:33:40.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b323e93c-48f4-4b00-a256-8fbf3ae2cbc2", + "createdTime": "2020-12-22T20:33:39.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "207d3d01-b193-4a36-b40e-a824effdd5c5", + "createdTime": "2020-12-22T20:33:36.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "494133f4-2576-4159-8cc8-cb43de2e9b72", + "createdTime": "2020-12-22T20:33:32.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8e031594-5754-4cfa-a906-c498d6f8cf51", + "createdTime": "2020-12-22T20:33:27.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61582416-c8b2-4259-a8df-c960a89343e6", + "createdTime": "2020-12-22T09:28:15.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24f8f4c2-7477-4e7d-80c9-16eb34d0c29a", + "createdTime": "2020-12-22T09:28:14.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a05d8f9-40aa-4951-8015-f1d1953e8a01", + "createdTime": "2020-12-22T09:28:13.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96792278-e3b6-47fd-a86a-41f2cdfa3381", + "createdTime": "2020-12-22T09:28:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62f805d2-d710-4222-ba2e-3e392dc06e11", + "createdTime": "2020-12-22T09:24:53.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "587aab10-93ae-488c-aa40-9c1d90662875", + "createdTime": "2020-12-22T09:24:53.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9394eac-b7f9-42d1-904f-00e361966943", + "createdTime": "2020-12-22T09:24:52.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9ed5706a-d087-4245-905d-ec71d60e5855", + "createdTime": "2020-12-22T09:24:52.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccd8fb88-1f5a-42da-98ff-b25f82315ff4", + "createdTime": "2020-12-22T09:17:02.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb13e7c-f42e-45d8-b631-b7a17909a652", + "createdTime": "2020-12-22T09:17:02.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e2bd4df2-d576-4f6e-b013-85778415e4e1", + "createdTime": "2020-12-22T09:17:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad7b3118-caf8-48eb-9e8a-9eefdb19fe23", + "createdTime": "2020-12-22T09:17:01.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48c72110-917c-482c-bfad-d06d3cb0c4f5", + "createdTime": "2020-12-22T09:13:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f886c0a9-abaa-48da-a17e-023a994998cf", + "createdTime": "2020-12-22T09:13:47.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "331d8f18-addd-42df-9a28-55d0860e43e4", + "createdTime": "2020-12-22T09:13:45.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2fd0087-032a-405b-95fc-81e1b058c9bc", + "createdTime": "2020-12-22T09:13:44.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c87b6ce-94a6-4f2e-a973-031e8269ab1f", + "createdTime": "2020-12-22T09:00:39.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb25ec64-3e3d-4900-b337-b17b09d48905", + "createdTime": "2020-12-22T09:00:38.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7764a419-9796-403b-96d3-b86781af166d", + "createdTime": "2020-12-22T09:00:37.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ab9ac661-9721-4f3f-b237-fbc9626bc073", + "createdTime": "2020-12-22T09:00:36.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83a928be-08b1-4aeb-866e-6469dc577878", + "createdTime": "2020-12-22T08:36:30.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91886741-c714-43f8-a994-e1900a0c7c75", + "createdTime": "2020-12-22T08:48:05.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "241a4128-5e39-4db0-86fd-3d8bffbcaf29", + "createdTime": "2020-12-22T08:44:46.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb06585e-fa92-44bc-8b55-389936e1fa63", + "createdTime": "2020-12-22T08:48:04.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0cafde42-d85f-4034-b8dc-995b1b125b85", + "createdTime": "2020-12-22T08:48:04.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bbcf92cd-32b2-477a-bb30-9e19afb30a37", + "createdTime": "2020-12-22T08:48:03.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "294c92cf-9ea5-45d2-b56c-a38d7324f726", + "createdTime": "2020-12-22T08:44:46.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "60cf03fa-278e-4f08-a64d-c7cdec0c5ab9", + "createdTime": "2020-12-22T08:44:45.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a44ca88d-c940-461e-9983-b848a527dfea", + "createdTime": "2020-12-22T08:44:44.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6bfaf4a9-070a-4af4-9c9c-a9a9e9aadac6", + "createdTime": "2020-12-22T08:36:29.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "56b1e4d3-51cc-40a3-82df-e327a8142651", + "createdTime": "2020-12-22T08:36:29.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf926732-204c-4d47-8d21-15cdee948c56", + "createdTime": "2020-12-22T08:36:28.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d375965f-8162-4901-a01e-5b859e0c1d97", + "createdTime": "2020-12-22T08:33:08.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8b43225-d36e-4cea-9805-917e13e0ed09", + "createdTime": "2020-12-22T08:33:08.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f04ab051-0209-4be9-a968-6dae5a6b9d8e", + "createdTime": "2020-12-22T08:33:07.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "437f365b-6f22-494f-ac32-799531bc18f6", + "createdTime": "2020-12-22T08:33:07.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c59609d5-61f8-47c8-add7-08e6358aa25f", + "createdTime": "2020-12-22T01:56:58.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c5ecd7b-91f3-4cf3-9ca7-e2170c1d44b5", + "createdTime": "2020-12-22T01:56:57.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a0152cfa-b0a2-4b86-83bb-82eba4150ffb", + "createdTime": "2020-12-22T01:56:57.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf3b2e07-fc2c-4b0a-b6c9-509c97278554", + "createdTime": "2020-12-22T01:56:56.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "030d6e2e-d0d4-4c2e-be86-c7f1af91808d", + "createdTime": "2020-12-22T01:52:58.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a5a13bd7-a0ba-4aee-8996-00a186a8822d", + "createdTime": "2020-12-22T01:52:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "391bf812-d2a0-4cfd-9e85-08439102f085", + "createdTime": "2020-12-22T01:52:56.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "184cafcd-0a6c-4d11-bd3b-9b082fa7ab9a", + "createdTime": "2020-12-22T01:52:56.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32fd172c-585f-477e-9e64-8ead8c3fd49b", + "createdTime": "2020-12-22T01:46:10.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f41eea61-6e23-4b76-ba2d-7e61dee3b98c", + "createdTime": "2020-12-22T01:46:10.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9f9e7e24-dcc4-463f-9a0d-fac8bda2487c", + "createdTime": "2020-12-22T01:46:09.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8c19a778-2a27-4eb9-a038-a753312285cc", + "createdTime": "2020-12-22T01:46:08.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd20251a-c2af-4530-a606-5aa13011edeb", + "createdTime": "2020-12-22T01:42:19.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "896cec48-1291-400b-9aa4-2b2eb5605476", + "createdTime": "2020-12-22T01:42:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39b08c09-e886-4ecf-a659-691c61a54522", + "createdTime": "2020-12-22T01:42:17.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f7d6579-1034-4427-a8ad-9b0bacd20f0c", + "createdTime": "2020-12-22T01:42:16.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46408c8c-a711-440e-9af3-a07be85092d6", + "createdTime": "2020-12-22T01:33:32.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c2d2350b-44a9-4072-99c2-1a437e2cbab4", + "createdTime": "2020-12-22T01:33:31.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9909321-90ea-41b1-bdd0-edfb97c55d6d", + "createdTime": "2020-12-22T01:33:31.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "488489f8-2cc2-4e95-a5db-9a9ef9056ca7", + "createdTime": "2020-12-22T01:33:30.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaa1251f-bc99-49ee-9e59-7f22ceebba15", + "createdTime": "2020-12-22T01:23:31.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8e43277b-3165-47aa-a21c-a6c448440dbc", + "createdTime": "2020-12-22T01:20:09.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41c19240-6e79-4996-9ca8-52d27d270b1a", + "createdTime": "2020-12-22T01:13:30.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f3a4264f-c691-4cd6-8bea-66ae5197ed7c", + "createdTime": "2020-12-22T01:23:29.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "891df15f-d72a-4c5f-b59e-db53b7298c88", + "createdTime": "2020-12-22T01:23:28.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "af864a46-16e9-48b2-8014-c6a345191e52", + "createdTime": "2020-12-22T01:23:28.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2dbd77a-40c8-4de8-a3a8-5d73e2652d82", + "createdTime": "2020-12-22T01:20:07.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c42e7d4-54d0-4c23-912d-9613e08aa9e7", + "createdTime": "2020-12-22T01:20:07.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a5f7e8f-fc0d-4b2e-ac5b-7aa6dd5870b3", + "createdTime": "2020-12-22T01:20:06.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419f69af-4434-4470-90fe-95c601408a15", + "createdTime": "2020-12-22T01:13:29.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43290590-f206-4d66-85c1-65a708f3cfd4", + "createdTime": "2020-12-22T01:13:29.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "580f2e65-b4fd-421a-876a-f8ca0eb63ae9", + "createdTime": "2020-12-22T01:13:28.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "997b195b-9a9a-46c0-8873-38d0c0b65c6c", + "createdTime": "2020-12-22T01:10:38.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "20ae3052-6a9a-43b1-b472-c63e9f7d0918", + "createdTime": "2020-12-22T01:10:37.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0f7f2807-16bc-4572-ab1a-758c953b091e", + "createdTime": "2020-12-22T01:10:37.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "656d1936-0248-455c-a6e1-bd9fc88a20f6", + "createdTime": "2020-12-22T01:10:36.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ad5c44b-eaea-4f61-9979-7e4c9dee770d", + "createdTime": "2020-12-21T20:06:58.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e4cad3d3-4432-4450-9968-ddf201292322", + "createdTime": "2020-12-21T20:11:41.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68213513-ecfc-4642-96c4-30e0d2d38e57", + "createdTime": "2020-12-21T20:05:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bc5dabdd-ee81-4440-b416-fce6727c0c2c", + "createdTime": "2020-12-21T20:10:11.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7b5edb6a-c0be-45b1-96bd-cf9ac8dc3b87", + "createdTime": "2020-12-21T20:05:05.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53f340b6-2ea9-45b2-be1e-adb49953edf1", + "createdTime": "2020-12-21T20:05:00.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ee9a3907-9d91-4587-93cb-437961dff2f2", + "createdTime": "2020-12-21T20:11:41.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f5b74891-32aa-40c4-95c4-906c7d3f49d1", + "createdTime": "2020-12-21T20:11:40.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "88d7c425-0302-4fac-bf37-b71289e6c409", + "createdTime": "2020-12-21T20:11:39.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8d67b49-044b-41b4-88ba-884d8e1e9857", + "createdTime": "2020-12-21T20:10:12.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70963599-7dac-47a1-8d71-fb45b408e080", + "createdTime": "2020-12-21T20:10:11.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d010d7aa-10db-482a-8165-8b2ca27f6c31", + "createdTime": "2020-12-21T20:10:11.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f576d28-0e21-4e2c-adc6-9f181f5a3639", + "createdTime": "2020-12-21T20:06:59.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ce75e4e2-e35c-4222-8634-4daf92e1aae0", + "createdTime": "2020-12-21T20:06:58.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ba24119-bb70-4c8c-b1f0-8aca6700b4ce", + "createdTime": "2020-12-21T20:06:57.346Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbf71920-a54f-41b2-a79d-eb1900d7ad4e", + "createdTime": "2020-12-21T20:05:38.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4434d7df-5c0e-4da8-9243-76e1bca52e78", + "createdTime": "2020-12-21T20:05:36.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "782791c2-0dfb-45ca-a305-78d023dc7b8c", + "createdTime": "2020-12-21T20:05:35.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7701327-2962-4f98-adc4-146bb9e7ad54", + "createdTime": "2020-12-21T20:05:06.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "51f570a4-915e-4720-bc7f-e36ef49c5b8b", + "createdTime": "2020-12-21T20:05:04.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ed7f4b88-350b-43d1-89bf-b17b0a696494", + "createdTime": "2020-12-21T20:05:03.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffb837a-1c8b-4d79-85a5-dba9c92537fa", + "createdTime": "2020-12-21T20:05:01.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c1b6e51c-fa2a-48a1-9ea9-d0289a16e4fc", + "createdTime": "2020-12-21T20:05:00.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6c093bb-1bb9-4012-bdc4-7f34d4aeda63", + "createdTime": "2020-12-21T20:04:59.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7992feb-b713-409e-a8ea-aa5173ec24ea", + "createdTime": "2020-12-21T20:04:53.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d5e144d7-3140-4860-81df-cd6e072fe130", + "createdTime": "2020-12-21T20:04:52.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "73c63d08-cb04-47c3-a1bc-690339937f1d", + "createdTime": "2020-12-21T20:04:51.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d293a698-37ae-458a-a986-46cb81ddb81c", + "createdTime": "2020-12-21T20:04:51.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a5b997b-a07d-4294-a2ec-8a95d9c02471", + "createdTime": "2020-12-21T09:16:21.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bce89fd-697b-4c24-b4df-aa0286ed4e90", + "createdTime": "2020-12-21T09:16:20.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2764deb1-6c2a-4446-adb0-8881dab5170c", + "createdTime": "2020-12-21T09:16:15.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ea30f813-a923-40ec-a626-2b06424a46fe", + "createdTime": "2020-12-21T09:16:14.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12b67cfb-dfa4-45df-b3c7-485924cf3a7d", + "createdTime": "2020-12-21T09:12:31.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa3759d9-e629-4252-9699-ef33fc54a812", + "createdTime": "2020-12-21T09:12:31.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0caf195a-b9ca-47dd-a05c-0c4382459d50", + "createdTime": "2020-12-21T09:12:30.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e97db822-38ea-4fa2-958b-b380b79deec1", + "createdTime": "2020-12-21T09:12:29.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6bc6bd2-e1e8-4c43-98bd-f8ecadcc29e4", + "createdTime": "2020-12-21T09:02:31.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a7f98f2-a65c-42c6-ae66-c7660aa49664", + "createdTime": "2020-12-21T09:02:31.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "14cc7aee-81fd-4b75-9246-af319d5fcbb8", + "createdTime": "2020-12-21T09:02:30.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc24d7dd-28e1-4f4f-a1ee-6fce4e4540f2", + "createdTime": "2020-12-21T09:02:29.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "379cda55-5f97-44dc-8060-12d11b929f0d", + "createdTime": "2020-12-21T08:59:09.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e7d947af-ea5c-4046-b9af-f00fdf541ed9", + "createdTime": "2020-12-21T08:59:08.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05ee127f-c5d8-4966-93b5-d686178719e9", + "createdTime": "2020-12-21T08:59:08.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ec406b95-d72c-4129-93cb-a2480ec56f45", + "createdTime": "2020-12-21T08:59:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e67bec9d-7363-44f0-b7ca-96255a4de836", + "createdTime": "2020-12-21T08:49:34.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45cd6fe9-9e83-47e9-9edc-b1cad6def5d2", + "createdTime": "2020-12-21T08:49:34.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "835b1362-c0b7-489b-8257-671d8f75f945", + "createdTime": "2020-12-21T08:49:33.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9f85f44-5c9f-4cb4-bcaf-d636f09ae352", + "createdTime": "2020-12-21T08:49:32.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3939b12-c0c0-4804-90f6-5e4b59db0e4a", + "createdTime": "2020-12-21T08:35:58.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88e26549-5d6b-4221-b3fc-e0008c26448f", + "createdTime": "2020-12-21T08:39:28.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4818551b-9a9f-45c7-9c47-03b86b1aae9d", + "createdTime": "2020-12-21T08:25:00.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d0a9c6b0-1f42-47f6-8e29-db0adb8b29a2", + "createdTime": "2020-12-21T08:39:27.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9434abd6-3feb-4081-9fab-90f7b606ce44", + "createdTime": "2020-12-21T08:39:26.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "91691658-aab4-45c2-9696-7698b2691464", + "createdTime": "2020-12-21T08:39:25.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd5f6c17-f9d2-4406-abc2-eb95f6c0a8ba", + "createdTime": "2020-12-21T08:35:57.927Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db7fbbdb-41f8-49ce-af8a-5a2605520264", + "createdTime": "2020-12-21T08:35:57.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6e0c5f91-de44-40b9-b7c4-65592b342d8e", + "createdTime": "2020-12-21T08:35:56.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4530377-c29b-498e-a1f2-8d3c3773add6", + "createdTime": "2020-12-21T08:24:59.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1170056b-e936-45e9-8c57-5c759aaad2c2", + "createdTime": "2020-12-21T08:24:59.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1326c27-5701-48d4-8575-ff1d97fd51d7", + "createdTime": "2020-12-21T08:24:58.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77df024c-0ab5-4ef1-8092-1f0d6063ddf3", + "createdTime": "2020-12-21T08:21:20.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ccc374-9fa5-4532-89a9-27043243707c", + "createdTime": "2020-12-21T08:21:19.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63d7b793-a5eb-45ed-964e-c0a1f914b4de", + "createdTime": "2020-12-21T08:21:19.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f53f4bfd-309e-471c-b77b-c47c69b6f22a", + "createdTime": "2020-12-21T08:21:18.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9663eef4-5478-405f-acb5-e652bb76ad06", + "createdTime": "2020-12-18T20:05:09.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f6368bb-86c3-4601-b57c-fe93662bf5cc", + "createdTime": "2020-12-18T20:04:35.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "63ce5795-2a00-47d4-86cb-f5e016367cf4", + "createdTime": "2020-12-18T20:12:32.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a94c549f-f76b-49bb-b00c-6c60c70a5c8c", + "createdTime": "2020-12-18T20:12:32.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6fbc6d60-d9c1-4e22-9946-c83faedad174", + "createdTime": "2020-12-18T20:12:31.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "44798a38-6683-45b9-a045-c91abcf4c640", + "createdTime": "2020-12-18T20:12:30.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c806877d-5789-4157-b089-8a5636379be1", + "createdTime": "2020-12-18T20:07:26.588Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5f8b3c02-3131-4476-b279-b6efa1c8af26", + "createdTime": "2020-12-18T20:10:21.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1758ed3a-c590-4b2d-8183-e1f7c2852b37", + "createdTime": "2020-12-18T20:05:10.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "754ccde0-da05-476e-9eec-e15c62e2e88e", + "createdTime": "2020-12-18T20:10:21.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be3bf3e4-bc5d-40b7-9e84-671863c43268", + "createdTime": "2020-12-18T20:10:20.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c9ad198a-004a-4789-909d-eb825c4eb9fd", + "createdTime": "2020-12-18T20:10:20.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8ec561c-c48d-4615-b15c-3594f7229d2a", + "createdTime": "2020-12-18T20:07:27.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1886af61-5ba7-41ba-9399-700a05c24531", + "createdTime": "2020-12-18T20:07:25.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e89d9100-fe6b-4464-8c46-c3063338a105", + "createdTime": "2020-12-18T20:07:25.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bcb83a9-1be8-447c-9d01-696a25734582", + "createdTime": "2020-12-18T20:05:15.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "64a585ee-2dfd-4510-90ab-847636559098", + "createdTime": "2020-12-18T20:05:10.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d8203b8e-3fd5-4b54-9c99-3e5c09ca1ac8", + "createdTime": "2020-12-18T20:05:09.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8dcbc710-89d0-4de5-802c-90c6d6142fa0", + "createdTime": "2020-12-18T20:05:09.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78a8f8d8-ebf7-420f-b8d8-d98c99cda553", + "createdTime": "2020-12-18T20:05:08.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dc434381-4746-4eb1-a0e3-e5eebe3ca765", + "createdTime": "2020-12-18T20:05:08.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d47c562-e927-4be1-ac21-b81c46da782d", + "createdTime": "2020-12-18T20:04:36.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d87a4f57-d301-4dca-b73a-1ea899be7fc2", + "createdTime": "2020-12-18T20:04:34.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "423ea879-afcb-4f34-9cc1-c462029d30aa", + "createdTime": "2020-12-18T20:04:34.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6c2aa646-d49e-485c-a35e-c7ba62727787", + "createdTime": "2020-12-18T20:04:29.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c5ea709-483e-48e4-80aa-a37dce600cac", + "createdTime": "2020-12-18T20:04:28.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce28c74-1e1e-46b4-a588-1393f5844636", + "createdTime": "2020-12-18T20:04:28.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c7303528-8773-45c7-bf96-97347e68ac4f", + "createdTime": "2020-12-18T20:04:27.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a39d9071-6ef4-4f4e-96d7-0303618bda62", + "createdTime": "2020-12-18T09:08:42.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69669442-1020-4b88-b421-73a971090452", + "createdTime": "2020-12-18T09:08:41.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf5ef7a4-bcc1-4f65-bf52-a64b0553ce29", + "createdTime": "2020-12-18T09:08:40.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "79b6629a-f91f-4b15-bbd1-60a4346139b1", + "createdTime": "2020-12-18T09:08:39.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c3572f8-d970-469f-8f3c-f7da5c9e6549", + "createdTime": "2020-12-18T09:04:58.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d048bc9-7202-4b6f-b2ce-a94ebc16c870", + "createdTime": "2020-12-18T09:04:58.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9044a46-6ac7-4014-a822-a193b392c022", + "createdTime": "2020-12-18T09:04:57.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6f3f0a6-3000-4b00-8325-0f2538a3e3a6", + "createdTime": "2020-12-18T09:04:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "133d4eb5-c12d-4ba9-a08d-7ec823d30936", + "createdTime": "2020-12-18T08:58:18.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "145d185f-c70a-4d1a-9c59-a135549cc6d1", + "createdTime": "2020-12-18T08:58:17.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99935685-0216-4153-941f-c059628068dc", + "createdTime": "2020-12-18T08:58:17.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c9d468e4-a468-4607-b8a1-ce002690c67a", + "createdTime": "2020-12-18T08:58:16.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "066b2370-f7a3-4d5a-a51e-ab78d186aaad", + "createdTime": "2020-12-18T08:54:19.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e95e206-6e83-4433-8de5-ff7c07afac96", + "createdTime": "2020-12-18T08:54:19.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f2252935-aac2-4d85-b358-192b8f1ca00c", + "createdTime": "2020-12-18T08:54:18.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce87c703-441f-490d-af03-1bb2c9f11258", + "createdTime": "2020-12-18T08:54:17.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "650f9646-2c36-49eb-9a6b-c4eb13974f77", + "createdTime": "2020-12-18T08:45:18.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c25627d5-969b-439c-856b-9e164bd4054a", + "createdTime": "2020-12-18T08:45:18.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32d2ce14-1158-4804-b05f-fcda9efcc8c7", + "createdTime": "2020-12-18T08:45:17.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "906d7d76-5934-4b1b-8ba6-c41fe631ba09", + "createdTime": "2020-12-18T08:45:17.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75f53536-b8b9-4dd5-a61f-47da8662d348", + "createdTime": "2020-12-18T08:32:01.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acdc17e8-a3ef-4c01-8f12-3265364a212e", + "createdTime": "2020-12-18T08:24:43.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c4568631-4d6c-4c2c-8314-a8cef88320f3", + "createdTime": "2020-12-18T08:35:33.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ee569a-e172-41c7-a5ed-0c474ff9b5bf", + "createdTime": "2020-12-18T08:35:32.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd687913-ffde-490c-9a7b-02d2653893f3", + "createdTime": "2020-12-18T08:35:32.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd7cfb47-1e31-425e-ab3e-1b703e0ef4c0", + "createdTime": "2020-12-18T08:35:31.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d99477d8-4db3-4c69-8c2d-fb0ef88f8dfe", + "createdTime": "2020-12-18T08:32:00.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c61a0a-e0b4-4a03-b698-20a93d61bc38", + "createdTime": "2020-12-18T08:32:00.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "996b42e3-88a7-41f8-89fd-0aa4ddb014a5", + "createdTime": "2020-12-18T08:31:59.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23d65c93-f4ad-4b11-9d20-081d7df691a8", + "createdTime": "2020-12-18T08:24:42.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25b3af23-028c-4c96-83cb-ac2b0db7e822", + "createdTime": "2020-12-18T08:24:41.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d48f827-4d7d-4036-af3d-f6b40d154c52", + "createdTime": "2020-12-18T08:24:40.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3507eaf9-baec-44e3-b39c-182408c61713", + "createdTime": "2020-12-18T08:21:02.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b7fc6e1f-964e-4ec9-82aa-5c3078410eec", + "createdTime": "2020-12-18T08:21:02.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7757a6f3-773c-495e-80e7-354740a790ea", + "createdTime": "2020-12-18T08:21:01.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c038a980-5328-4a95-8439-eff3c371aeb0", + "createdTime": "2020-12-18T08:21:01.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3edc139d-b44f-4ab6-bb14-7406bd1271dd", + "createdTime": "2020-12-17T20:08:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "283974a6-c947-4bf2-bb92-917bd84cd5be", + "createdTime": "2020-12-17T20:07:58.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9e02a74d-11fc-4680-8e09-08abddd311fe", + "createdTime": "2020-12-17T20:07:55.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2fec2e0b-dee4-43b7-b9b3-ee78ebc7c145", + "createdTime": "2020-12-17T20:11:40.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aa3c5f90-ee3a-47c4-b612-431f228a0e9b", + "createdTime": "2020-12-17T20:08:33.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c368c0c9-2be0-4cb8-a780-6b6140dca6ea", + "createdTime": "2020-12-17T20:14:32.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4a64fca-545e-4c76-a4ee-19a1b131e0d4", + "createdTime": "2020-12-17T20:14:32.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1395a3ac-b7c8-4650-b4ff-4d16456daa70", + "createdTime": "2020-12-17T20:14:31.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2f3f7a0f-a8c0-45d4-af19-7ff01442f13a", + "createdTime": "2020-12-17T20:14:31.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87945667-649e-481f-a311-9f879b3a7b0b", + "createdTime": "2020-12-17T20:11:40.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "18b848eb-f5f9-4c7b-a551-9d7a9d050919", + "createdTime": "2020-12-17T20:11:39.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6cd9410-adc4-4cdc-b750-5a4d21cff2fb", + "createdTime": "2020-12-17T20:11:38.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10439fdd-92c3-4712-8aa2-4284870994e9", + "createdTime": "2020-12-17T20:08:34.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7a8eef48-882a-4766-b731-a79aa45e2223", + "createdTime": "2020-12-17T20:08:32.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b975a83f-9d8e-4bd1-9a5f-9983628f45c1", + "createdTime": "2020-12-17T20:08:32.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61f08483-89ab-48bd-a588-7312cc484bce", + "createdTime": "2020-12-17T20:08:02.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "95d28482-f91f-4e31-b455-29a69291da4e", + "createdTime": "2020-12-17T20:08:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f81cdcc-ecd7-407d-8655-c16c652d08af", + "createdTime": "2020-12-17T20:08:00.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e8518d4-6596-4ec6-b658-c2672f18ef96", + "createdTime": "2020-12-17T20:07:58.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "123a2431-67bc-4ad7-9f9c-03ab89ead8a0", + "createdTime": "2020-12-17T20:07:57.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "795b8ce5-7e31-4c13-8943-7e59790e52a3", + "createdTime": "2020-12-17T20:07:57.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "897771e3-8ed8-4aef-89c5-ec2338702589", + "createdTime": "2020-12-17T20:07:56.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8817f5f2-5360-4738-b7ca-216c8e004a71", + "createdTime": "2020-12-17T20:07:55.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4060cb7f-d356-446d-8f27-eeebae6cbe5b", + "createdTime": "2020-12-17T20:07:54.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "243aed22-08fd-44f4-9d7f-223c5312ce59", + "createdTime": "2020-12-17T20:06:59.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0db74e27-9fba-4398-9f9c-b245f4d1c8cf", + "createdTime": "2020-12-17T20:06:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f1722f-8232-4fa4-9c3e-ee9f5ab94c26", + "createdTime": "2020-12-17T20:06:58.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "24b15149-faca-484e-b28a-eee6ecaeb8ae", + "createdTime": "2020-12-17T20:06:57.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "194ce8fe-f3da-47db-9cd5-93acce1b419e", + "createdTime": "2020-12-17T09:11:13.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c54e6221-c744-488a-8df6-e5adf3f6b65c", + "createdTime": "2020-12-17T09:11:12.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0a28eca4-dfe4-49b4-b02d-1e05f0112c03", + "createdTime": "2020-12-17T09:11:12.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4388c5ab-daf5-4da9-9eeb-2e5729c0a691", + "createdTime": "2020-12-17T09:11:11.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ecedb7d-61d4-4176-8f3d-ce8e3d8e8935", + "createdTime": "2020-12-17T09:07:15.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "78bc8e40-8b44-450f-855f-1a3d186810d7", + "createdTime": "2020-12-17T09:07:14.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd204b1-f588-4aef-9409-9b6efa8c9457", + "createdTime": "2020-12-17T09:07:13.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "616c6807-89bb-415b-8f2b-24f40c8c3512", + "createdTime": "2020-12-17T09:07:13.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "298b0899-915b-4b85-a842-d37357f8f1b4", + "createdTime": "2020-12-17T08:59:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8692396a-0f72-42ef-a6a4-3f84223cb1ef", + "createdTime": "2020-12-17T08:59:18.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d8b95612-0b12-4a6c-a846-089500758c95", + "createdTime": "2020-12-17T08:59:17.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "575adccf-5861-4845-9793-36574ffdd83f", + "createdTime": "2020-12-17T08:59:17.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8a14622-12d6-4b6d-a756-52cce65c88d0", + "createdTime": "2020-12-17T08:55:24.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "809d3ad6-94a4-40a6-b91e-7ff23fd75198", + "createdTime": "2020-12-17T08:55:24.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3fb9bfbc-5448-47d4-abdd-a075568da318", + "createdTime": "2020-12-17T08:55:23.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bd427dd3-9986-436a-bf28-56ccd01dc634", + "createdTime": "2020-12-17T08:55:22.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0c90228-6b66-434f-90e8-6d4b6f6c8906", + "createdTime": "2020-12-17T08:46:17.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "18477b5e-57db-4046-a685-152a1fcda513", + "createdTime": "2020-12-17T08:46:16.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "46efc1fd-fe21-4300-a460-0184b8d4d98e", + "createdTime": "2020-12-17T08:46:16.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2bf9e06-dd60-4c63-8c31-7de3eba60cbe", + "createdTime": "2020-12-17T08:46:15.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8d85bd3-94c5-4ef1-acdc-9b19346c1c3e", + "createdTime": "2020-12-17T08:33:05.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3e502217-3054-44e0-9997-6d1ee387f8bc", + "createdTime": "2020-12-17T08:36:45.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d5e72cc-56f2-46d8-8f6d-83d0a796cb36", + "createdTime": "2020-12-17T08:36:44.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8cfa28c3-67b5-48d9-9353-cd9c9ba5e06b", + "createdTime": "2020-12-17T08:36:43.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f24c42c2-3a9b-4a4e-a19d-7d8b21435c1a", + "createdTime": "2020-12-17T08:36:42.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2039ef3f-2388-4e8d-8db1-e45e255716ff", + "createdTime": "2020-12-17T08:21:26.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9fe7b3e-2b44-470b-81b3-b2d21f6f8cbb", + "createdTime": "2020-12-17T08:25:24.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c8d7f13-aeb4-4784-ad33-64e758850bf9", + "createdTime": "2020-12-17T08:33:05.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "549aec3f-d8cc-44e4-b996-35a5b458105a", + "createdTime": "2020-12-17T08:33:04.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8d92be9-c0b1-44fd-84ae-682031ec4de8", + "createdTime": "2020-12-17T08:33:03.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92affdca-1402-473c-8e86-847f2b6b0dd4", + "createdTime": "2020-12-17T08:25:24.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d9873558-0e44-4acc-a56c-e3b139745aee", + "createdTime": "2020-12-17T08:25:22.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37404930-c2ec-4c2c-8fd3-7b07ed72c212", + "createdTime": "2020-12-17T08:25:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7125acd-f3b5-425a-bbcc-489539852dc0", + "createdTime": "2020-12-17T08:21:24.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "927735ba-5135-425e-a01b-c7fa6f2b1611", + "createdTime": "2020-12-17T08:21:22.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "522e8b5d-c29c-42c4-ba36-fd1d28abed00", + "createdTime": "2020-12-17T08:21:16.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ee6766e-a2de-465b-be63-fe689cc5902b", + "createdTime": "2020-12-16T20:05:22.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "09b509df-a8aa-481e-b986-571030f2faad", + "createdTime": "2020-12-16T20:05:12.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d4e0f28-5ee5-4540-9650-899219518f29", + "createdTime": "2020-12-16T20:12:08.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "599582a5-57c9-4fea-bdbc-faad803b5fa1", + "createdTime": "2020-12-16T20:06:49.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "46affe3e-19ba-485b-ab10-f190051eabad", + "createdTime": "2020-12-16T20:05:45.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3cbaa889-9c5d-4335-a1e9-3c867ac4f3bb", + "createdTime": "2020-12-16T20:12:37.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "552b9a99-c493-49bf-87db-2ad1a70ff440", + "createdTime": "2020-12-16T20:12:36.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "55373cb3-72c3-4b49-9796-970f0cc3f7c5", + "createdTime": "2020-12-16T20:12:34.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fd1c94e8-c946-4e9a-ac1f-c6d83615d3cd", + "createdTime": "2020-12-16T20:12:33.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4316407e-eb27-4591-af11-95b346dc3f10", + "createdTime": "2020-12-16T20:12:08.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a3cd4b76-2cd8-4021-801a-34159cda0e84", + "createdTime": "2020-12-16T20:12:07.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1addfd55-da55-4afe-9265-57f3ea1b1a3c", + "createdTime": "2020-12-16T20:12:07.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dda56b7e-6fb9-4d70-a23d-8a288024c0d6", + "createdTime": "2020-12-16T20:06:49.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ecd45ee0-0d67-498c-94ac-f2fcc6a3fd37", + "createdTime": "2020-12-16T20:06:48.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bd0d0615-ae7b-42ab-b925-b25039d8aa3f", + "createdTime": "2020-12-16T20:06:47.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87c24904-6e2e-4dcd-923b-fd52bc8a75b8", + "createdTime": "2020-12-16T20:05:46.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e8f1bbde-23e3-4773-b42b-20915696d3c0", + "createdTime": "2020-12-16T20:05:44.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e94f7ebc-0e37-416f-9d1a-d091f953f224", + "createdTime": "2020-12-16T20:05:43.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c04583e7-5040-488a-a487-ccea42902a71", + "createdTime": "2020-12-16T20:05:23.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f0bd55c0-1ad8-4722-8263-a6de4a46fa44", + "createdTime": "2020-12-16T20:05:20.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "20ffbd26-892e-4b78-935a-55b056ccf52e", + "createdTime": "2020-12-16T20:05:19.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94eb3d95-402d-407b-9741-fefd6432e286", + "createdTime": "2020-12-16T20:05:13.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c8dae370-e7f9-40f9-ac09-038782b1d30a", + "createdTime": "2020-12-16T20:05:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b040eab4-8841-49be-92ff-2e6161ffdb87", + "createdTime": "2020-12-16T20:05:11.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3ba8286-7e1f-4929-b3de-e98ec50e97c1", + "createdTime": "2020-12-16T20:05:08.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "58a8c495-75b4-474c-80d3-5196152eeb5d", + "createdTime": "2020-12-16T20:05:07.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "12ae16cb-b418-477f-9c73-110be6ff2a26", + "createdTime": "2020-12-16T20:05:07.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "53ccc287-b680-461c-9118-356566b55c57", + "createdTime": "2020-12-16T20:05:06.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0b851d8-7b34-4ce9-bffc-4963c7222c76", + "createdTime": "2020-12-16T17:37:38.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e70019a1-0d0c-4741-bbeb-8326641d1b9c", + "createdTime": "2020-12-16T17:37:37.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f159de-a1a4-40f6-aa71-cc6efe5d9515", + "createdTime": "2020-12-16T17:37:36.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a7eccf5-aaeb-4779-b4cc-f28fe6cd0262", + "createdTime": "2020-12-16T17:37:35.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d0c9ab3-abd7-4b00-8fbe-67fe070cd37f", + "createdTime": "2020-12-16T17:34:02.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f1f7090-edb7-4ed4-bc06-5a603d036073", + "createdTime": "2020-12-16T17:34:02.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0e67ddd7-eb00-46ac-aafc-d4b66484ef1e", + "createdTime": "2020-12-16T17:34:01.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "03aa6e5d-77fa-46d8-9617-06f70f66c606", + "createdTime": "2020-12-16T17:34:01.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761061b2-6fc2-4750-a26b-1840eb4ad7fb", + "createdTime": "2020-12-16T17:27:13.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89eb8328-7a04-429b-a82e-eaf75442566d", + "createdTime": "2020-12-16T17:27:12.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf6f5b9-9f5a-4e87-954b-1bf28ab6509d", + "createdTime": "2020-12-16T17:27:11.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b1609865-4cbf-491d-9280-27f597292799", + "createdTime": "2020-12-16T17:27:11.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e927ae7a-2717-46ee-9473-b0e8ee3c247d", + "createdTime": "2020-12-16T17:23:44.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e43fdd60-d1d3-4353-b058-88a21be5a688", + "createdTime": "2020-12-16T17:23:43.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "978b4db7-5981-4c2b-a5e6-9c886e896f6a", + "createdTime": "2020-12-16T17:23:42.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc40a2cd-629d-4813-877f-32d5dd0780be", + "createdTime": "2020-12-16T17:23:41.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4a65a5d-ab09-4fc1-a601-9178b8575ca9", + "createdTime": "2020-12-16T17:13:23.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c44a85ba-3410-447a-972f-58bde62f2142", + "createdTime": "2020-12-16T17:13:22.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25f91160-b6ee-424b-9ddf-201872235508", + "createdTime": "2020-12-16T17:13:21.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59219346-7a2f-46b5-bf46-90bab052cdeb", + "createdTime": "2020-12-16T17:13:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f993cb7-ce37-4fe0-9809-7b8a86db9a05", + "createdTime": "2020-12-16T16:57:23.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be4439aa-15b0-4eea-ae16-d23361d3fc54", + "createdTime": "2020-12-16T17:01:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2926a1ca-791d-4a4c-b272-ab57142d22f1", + "createdTime": "2020-12-16T17:01:06.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7759f9c5-4eed-42ea-b9b4-eb56a3cca475", + "createdTime": "2020-12-16T17:01:06.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "01b6ac49-6bf3-41ff-85e9-b25380761667", + "createdTime": "2020-12-16T17:01:05.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e679fd08-b07e-4fe4-b920-b7f9c4d81124", + "createdTime": "2020-12-16T16:45:44.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7e155c3a-7333-481b-89cf-f5326db5dcb1", + "createdTime": "2020-12-16T16:49:41.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5df29647-fac4-4a35-b1fa-a9ea6212c13e", + "createdTime": "2020-12-16T16:57:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1c4e3799-c0fb-407a-a3ac-ae0ddcf0b7d3", + "createdTime": "2020-12-16T16:57:22.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1f9c4727-7986-409f-99b2-e4a84c63c337", + "createdTime": "2020-12-16T16:57:21.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4499406-3e59-4d37-972b-80250c66f4a6", + "createdTime": "2020-12-16T16:49:38.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "beb769b2-4f4c-4298-a236-a16cc3b96dc4", + "createdTime": "2020-12-16T16:49:37.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b0b70a99-e0b6-4771-9733-df68bcdcdee0", + "createdTime": "2020-12-16T16:49:34.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdcfdd58-472f-4995-bc76-c19a38217012", + "createdTime": "2020-12-16T16:45:42.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8ead6503-bf85-475a-a0d4-3391e67a6fb5", + "createdTime": "2020-12-16T16:45:40.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bea06748-7b01-40db-b8e1-6c1d5cafcc28", + "createdTime": "2020-12-16T16:45:36.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e5a30a4-a2aa-448e-a23b-33015b266ced", + "createdTime": "2020-12-16T10:10:15.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd6c5734-d463-4514-b7b9-6237adb73cf8", + "createdTime": "2020-12-16T10:10:14.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f63d9736-7b8c-4210-b693-8afe57c904d4", + "createdTime": "2020-12-16T10:10:13.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa6c9012-ab4c-4edc-90be-bdf094bff7ad", + "createdTime": "2020-12-16T10:10:13.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "376d60f8-c3ab-43b5-9127-c9ae2f0a42f0", + "createdTime": "2020-12-16T09:58:30.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bb30db51-476a-43e9-b21e-080163b60de2", + "createdTime": "2020-12-16T09:58:30.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "529e5a10-60b3-4e6b-8596-c460ba2845da", + "createdTime": "2020-12-16T09:58:29.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b22a10a6-8748-4ac6-8f0b-b953fc62ca26", + "createdTime": "2020-12-16T09:58:28.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c170b77f-1059-4058-a4d1-f6d075f27ed4", + "createdTime": "2020-12-16T09:42:43.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ccbeff1f-b0ae-4b91-a3bf-1f06cc068c03", + "createdTime": "2020-12-16T09:42:43.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9dceb65-a17c-4b72-b037-78c133a6a19d", + "createdTime": "2020-12-16T09:42:42.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5b3b0607-8af0-4a93-ad5c-1c04fdce94b7", + "createdTime": "2020-12-16T09:42:42.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb558c25-917d-4c3d-9a0e-01f365fa8f05", + "createdTime": "2020-12-16T09:34:36.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5318354a-3323-4989-beac-18ee524e09c2", + "createdTime": "2020-12-16T09:34:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32043475-9dfe-4c48-82c0-e9b125ac9e0e", + "createdTime": "2020-12-16T09:34:34.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc690e93-6ffd-41e6-b6e7-055827f70e32", + "createdTime": "2020-12-16T09:34:33.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6002afcd-3400-430a-bd8b-7070e4296afd", + "createdTime": "2020-12-16T09:08:31.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ae77a9-ab26-4745-ae21-28bac1c41abf", + "createdTime": "2020-12-16T09:08:31.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a9bae51b-1b91-4e6f-906b-a9bfd6e7dd37", + "createdTime": "2020-12-16T09:08:30.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4869dcb-f76c-4404-8e60-148e0a9219e7", + "createdTime": "2020-12-16T09:08:29.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbcf0a9d-6ab3-4ed5-9835-a96992ea3cc3", + "createdTime": "2020-12-16T08:48:47.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17400839-0e27-4c33-86c1-b6ac31bd11a3", + "createdTime": "2020-12-16T08:48:46.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8fa1cfe5-e360-4819-9674-48e169d36372", + "createdTime": "2020-12-16T08:48:46.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc608b97-6194-440a-8f42-f3da9ba6ffa9", + "createdTime": "2020-12-16T08:48:45.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ddfae7a-1f91-418f-995b-80e43f10febc", + "createdTime": "2020-12-16T08:38:44.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5e5d7522-7441-47dd-8197-ffdec59b0044", + "createdTime": "2020-12-16T08:38:44.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc8fd2f-419f-4679-8443-30db4d35d19b", + "createdTime": "2020-12-16T08:38:43.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf9fc5bd-d7dd-4315-b0c4-6609d7cda3c6", + "createdTime": "2020-12-16T08:38:42.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23fc0eef-ce3e-477e-b3e1-61d9e7bbef57", + "createdTime": "2020-12-16T08:29:03.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cfc252ab-16ee-4a03-8645-f5e5eb0e5110", + "createdTime": "2020-12-16T08:29:02.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b98929c0-f55d-48f2-9964-cb475b26fe49", + "createdTime": "2020-12-16T08:29:02.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "183934a0-a3ba-4f27-b6a4-2685214081c7", + "createdTime": "2020-12-16T08:29:01.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba313fcb-21d5-4f6e-949c-0166084088ff", + "createdTime": "2020-12-16T08:23:06.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bc87b35-1e92-49d3-8932-964809a836a9", + "createdTime": "2020-12-16T08:23:06.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac396330-5fe8-4484-b184-4ce917fe59ec", + "createdTime": "2020-12-16T08:23:04.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a2abd210-4c26-4fec-b6a5-b8439817725d", + "createdTime": "2020-12-16T08:23:04.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ca0c55b-6ef2-4ae4-a2a9-0dbaed305920", + "createdTime": "2020-12-15T20:15:37.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1ec9678c-691c-43d7-b09e-bf9532600df7", + "createdTime": "2020-12-15T20:15:36.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "740bc226-7c41-46dc-8160-f55a27e8c1a7", + "createdTime": "2020-12-15T20:15:35.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1f99a0e5-47f3-490b-934f-0aac24a6b70e", + "createdTime": "2020-12-15T20:15:35.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "871b26cb-19f2-4659-a869-d93d8ec095ab", + "createdTime": "2020-12-15T20:12:19.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ab4179a-16e1-48ac-b850-2c82b2870612", + "createdTime": "2020-12-15T20:12:18.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8fd4a2f1-e11a-4872-a363-736f610f0457", + "createdTime": "2020-12-15T20:12:17.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "efb5e291-9502-4bcd-99b9-e29bab03f1fb", + "createdTime": "2020-12-15T20:12:16.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2231c3c3-726c-4050-9463-72834a3d9438", + "createdTime": "2020-12-15T20:11:50.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e40524f7-3c6e-4518-bee4-9d01f82e63da", + "createdTime": "2020-12-15T20:11:49.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e0ab132b-1c3d-431e-8e55-e403b61934b7", + "createdTime": "2020-12-15T20:11:48.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8afd0247-b76b-4393-8fd8-3100a7fe51c9", + "createdTime": "2020-12-15T20:11:47.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8054194b-6e98-408e-9962-2b32900ff0bc", + "createdTime": "2020-12-15T20:06:47.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c1e2ced-7df3-4947-bdd0-6a59091f6367", + "createdTime": "2020-12-15T20:06:45.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a952b1cb-d503-4cb4-b613-3a8f113af433", + "createdTime": "2020-12-15T20:06:43.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1d74bf10-735d-4131-9688-421c39a15caa", + "createdTime": "2020-12-15T20:06:41.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a052766f-8252-4414-940e-382f2776dde3", + "createdTime": "2020-12-15T20:06:41.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1d337188-7df5-4fe5-aacf-1a0a688e55c8", + "createdTime": "2020-12-15T20:06:39.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "26a35a78-0ed3-456b-9611-b1cd749066cd", + "createdTime": "2020-12-15T20:06:36.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9045b945-8f45-43e5-be06-774eef831284", + "createdTime": "2020-12-15T20:06:32.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21aa0998-91fa-41ce-b153-7a05a6d6586b", + "createdTime": "2020-12-15T20:06:02.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b1f8fa18-da67-4c80-bfe5-5bebaed61982", + "createdTime": "2020-12-15T20:06:02.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "974597a5-ebb2-46fd-b2bd-a71051004f2c", + "createdTime": "2020-12-15T20:06:01.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0c3379f-a01a-4ccb-82a0-1f267ee74750", + "createdTime": "2020-12-15T20:06:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ced23829-e176-4dde-9593-f53e281b7ab6", + "createdTime": "2020-12-15T20:05:46.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b9df66a6-cacd-414c-b53b-08c02ebb78d4", + "createdTime": "2020-12-15T20:05:45.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f7c60f8a-4ee2-4164-9e1e-39ff62a8162a", + "createdTime": "2020-12-15T20:05:42.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b07dee7-004b-4a2e-9a0b-a7a6ed9f5dc0", + "createdTime": "2020-12-15T20:05:42.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1752cbf0-6b1d-4e19-a556-5280211b8d15", + "createdTime": "2020-12-15T09:18:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e2457cb-a3f7-4635-b142-35dcb49ad032", + "createdTime": "2020-12-15T09:18:44.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc05d5a2-ee02-456b-a809-19ccc324e938", + "createdTime": "2020-12-15T09:18:43.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fafcdda2-897e-4ec9-93a0-cfdb01b66f21", + "createdTime": "2020-12-15T09:18:42.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "826ab393-4099-450b-b0fd-05f462f00d64", + "createdTime": "2020-12-15T09:15:00.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9bdd6465-43c2-4471-9413-cc4af2cbaad4", + "createdTime": "2020-12-15T09:14:59.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7b01663-9937-4cd7-bc0e-1e5462c2cb7b", + "createdTime": "2020-12-15T09:14:58.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "113c94e3-d49f-408f-992a-1882edf5060c", + "createdTime": "2020-12-15T09:14:57.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9cb4deb-0b4c-4aaf-83c8-1f7f2ea1c145", + "createdTime": "2020-12-15T09:04:06.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bc01276e-8437-43a7-b19d-601d89c1c892", + "createdTime": "2020-12-15T09:04:05.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "009eaf54-3a07-46a8-969e-a689ab4ff5da", + "createdTime": "2020-12-15T09:04:05.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5bd7089b-f0ac-414f-abc2-ed5c36ceda5a", + "createdTime": "2020-12-15T09:04:04.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da58f497-4fee-4111-b6e0-67f44f3e5452", + "createdTime": "2020-12-15T09:00:09.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66a0ae88-92bc-48bb-8516-b6fa716918ec", + "createdTime": "2020-12-15T09:00:08.75Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf4dae37-bfef-4163-bae0-6d056eb2793b", + "createdTime": "2020-12-15T09:00:08.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e87a25f-af39-4d27-a40c-7a811e09107c", + "createdTime": "2020-12-15T09:00:07.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4d2b141-d372-4906-80a6-05113d1ae722", + "createdTime": "2020-12-15T08:50:44.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a06f5988-2d42-405c-b97f-8c7dab137b2e", + "createdTime": "2020-12-15T08:50:43.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1628ce8-70d9-46fe-886d-f6895ed4c6ac", + "createdTime": "2020-12-15T08:50:43.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "82ebbecb-27c2-46e8-b371-b3f96f6ab1ab", + "createdTime": "2020-12-15T08:50:42.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef4958b2-f4c5-47a2-acbd-f82c1e8a99b5", + "createdTime": "2020-12-15T08:35:37.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1be057c6-e7fd-46c8-a6f5-5ad462d45e66", + "createdTime": "2020-12-15T08:35:36.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67f9fa90-9a96-489b-9ed0-b284213d81b7", + "createdTime": "2020-12-15T08:35:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e760e518-2c34-4128-b559-4bf114ff2427", + "createdTime": "2020-12-15T08:35:34.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd53f617-b376-4a44-91b9-d93054d41663", + "createdTime": "2020-12-15T08:31:33.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7a527e8b-35bc-471e-bb01-8c8d38dd9053", + "createdTime": "2020-12-15T08:31:33.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca28843-4633-453e-a0bc-80fce622b15d", + "createdTime": "2020-12-15T08:31:32.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdca9fd9-735f-4622-81bd-378a2ac04de1", + "createdTime": "2020-12-15T08:31:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff27d1b-e37d-4c53-8d75-4187d695056a", + "createdTime": "2020-12-15T08:23:55.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dac40d6-cff6-4626-aad2-b87ae9ed6ba8", + "createdTime": "2020-12-15T08:23:55.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "68ecb4ac-908d-4419-9165-fa88a140d1b9", + "createdTime": "2020-12-15T08:23:54.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "21af922e-0e91-47e7-8baa-0b5f94d8e25d", + "createdTime": "2020-12-15T08:23:54.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7dcfc795-24d0-4bec-af06-8974dc1cd49d", + "createdTime": "2020-12-15T08:20:52.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd26f148-54fe-45cb-8dba-befdeafb7603", + "createdTime": "2020-12-15T08:20:51.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f02260e1-8ba6-4bfa-9555-c6b6e76f21e5", + "createdTime": "2020-12-15T08:20:50.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3c6b410-7ace-4639-adb4-e71498ceb10e", + "createdTime": "2020-12-15T08:20:49.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5820d88b-5d9c-4d28-855f-226e16c543ac", + "createdTime": "2020-12-15T01:34:48.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57bb55e8-d848-4f30-bc0c-ce64ac6e56ac", + "createdTime": "2020-12-15T01:34:48.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7c875492-e765-4f42-8392-16b882233975", + "createdTime": "2020-12-15T01:34:47.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "724a18c2-99a1-43e1-be86-9efc81658462", + "createdTime": "2020-12-15T01:34:47.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa2c1fa5-b5b3-4c28-851a-4f19fdc31364", + "createdTime": "2020-12-15T01:34:46.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bd411ea6-d52c-4e7f-aa0f-9193bfbc9a46", + "createdTime": "2020-12-15T01:34:46.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, { "feedbackId": "5a159427-a55f-4aaf-b7d4-ddc61e9ea730", "createdTime": "2020-12-15T01:34:43.416Z", @@ -67318,8 +122245,6 @@ "Variables": { "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", "METRICSADVISOR_ENDPOINT_SUFFIX": null, - "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", - "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1345998162" + "RandomSeed": "65309557" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..8db6914f42b9 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/MetricFeedbackLiveTests/GetAllFeedbackWithMinimumSetup(True)Async.json @@ -0,0 +1,122290 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/feedback/metric/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "51", + "Content-Type": "application/json", + "traceparent": "00-c17f33556023ab4eb3db395cfd4b66e2-6dd1c35cab82b641-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "98667407143c22be8cb0e43e1466b7f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d54c83b-6c35-4f68-a52b-182f8aefa0f0", + "Content-Length": "2691347", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:42:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "866", + "x-request-id": "3d54c83b-6c35-4f68-a52b-182f8aefa0f0" + }, + "ResponseBody": { + "value": [ + { + "feedbackId": "8935fa65-b9a2-4332-92ac-ceaed102e385", + "createdTime": "2021-01-19T17:42:54.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd53110c-065b-4dd3-95b2-b39072112df2", + "createdTime": "2021-01-19T17:42:54.172Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47a18850-ffbd-480c-88d7-5fc5366268d3", + "createdTime": "2021-01-19T17:42:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "008612a2-6724-4a17-b760-5f86d8d02f2f", + "createdTime": "2021-01-19T17:42:45.087Z", + "userPrincipal": "94dc466b-52e4-4678-892d-70a0c45c5f42", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ede44c96-2193-4d80-b81a-d6183215fb5d", + "createdTime": "2021-01-19T14:00:57.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1015a268-3ee0-4135-878a-3f6059a99558", + "createdTime": "2021-01-19T13:58:56.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3cb5140c-0d33-4c24-a790-57f93557634d", + "createdTime": "2021-01-19T14:00:56.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bee3b9b-778e-4a3d-8b7c-00a29aa8ebca", + "createdTime": "2021-01-19T14:00:55.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8422038-0e71-4487-b17b-53633b2b9378", + "createdTime": "2021-01-19T14:00:54.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9d0de277-14a1-4bf8-a754-6c18ad1b0ad3", + "createdTime": "2021-01-19T13:56:52.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cbcafbfb-8582-48d3-af3b-649cc9e19602", + "createdTime": "2021-01-19T14:00:53.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9aa1d4cd-ddaf-43c8-8086-8c32f19794a9", + "createdTime": "2021-01-19T14:00:52.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "febcf3f5-b9f6-4711-9df4-d889dd4f3d1e", + "createdTime": "2021-01-19T14:00:48.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "08b88acb-8688-4308-bc0d-3455b6559456", + "createdTime": "2021-01-19T13:57:47.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "347631bc-5265-411a-a2d9-c0fc1ec1ea04", + "createdTime": "2021-01-19T14:00:47.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0806cb5-451c-4ce0-9771-30582cfe35b9", + "createdTime": "2021-01-19T14:00:47.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "15bcfb63-bc14-42ec-aee9-061839326752", + "createdTime": "2021-01-19T14:00:46.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "917acc72-86ef-4e6e-9adc-15df2cacfc5c", + "createdTime": "2021-01-19T14:00:45.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "28f8535d-6378-43d5-9f6e-f5d232c6a7b5", + "createdTime": "2021-01-19T14:00:45.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b0c1c7d-477e-42c4-8ce7-c5502d45e1e4", + "createdTime": "2021-01-19T13:57:42.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d367f764-e2d7-4b28-a5f3-74cee2895fb7", + "createdTime": "2021-01-19T13:56:39.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "697baf50-a35e-4744-b648-c0c461006f86", + "createdTime": "2021-01-19T13:58:32.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "294c76f4-ef62-4538-b940-b590fa8496a2", + "createdTime": "2021-01-19T13:59:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7df6e3fc-19fe-4349-974a-e6646dd85813", + "createdTime": "2021-01-19T13:58:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "63fba0dd-4137-40f9-9740-076f7c556d8c", + "createdTime": "2021-01-19T13:58:28.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6481394f-7249-42d2-9005-9d5b6e5f7bc3", + "createdTime": "2021-01-19T13:59:22.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3d1df1bd-072a-4c32-962c-86e6f5474bab", + "createdTime": "2021-01-19T13:58:17.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9ccf6e9-0470-4fb7-9231-314c7ef2f7df", + "createdTime": "2021-01-19T13:59:02.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e9341c2b-c759-408f-ab33-9b9cb6f8024f", + "createdTime": "2021-01-19T13:56:59.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d6aea3f0-9c36-40a3-8229-5124633136c3", + "createdTime": "2021-01-19T13:59:28.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5e9ea17-9c54-4676-a275-6b83f77fb4ba", + "createdTime": "2021-01-19T13:59:28.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1e40a33c-f757-4a58-841d-896f5d818057", + "createdTime": "2021-01-19T13:59:27.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a3527c98-0e5a-4bd7-8bbd-ffa8e00292c9", + "createdTime": "2021-01-19T13:59:26.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "09f5c613-d0bc-433c-8acb-c2266f2790ea", + "createdTime": "2021-01-19T13:59:26.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b7cd843-8394-4074-a60a-510d3a718295", + "createdTime": "2021-01-19T13:59:21.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a83f1b1-5e50-48dc-9cb9-b2d121dd2271", + "createdTime": "2021-01-19T13:59:20.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c4777788-244c-41a9-aed0-48f8ab2a1833", + "createdTime": "2021-01-19T13:59:20.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7893084d-e15c-4313-9ed1-883b871ab0d0", + "createdTime": "2021-01-19T13:59:19.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "af8ba216-402f-4d14-87ab-28b2f2c7213c", + "createdTime": "2021-01-19T13:59:18.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b419dd53-fcf9-4fda-9102-2a0d2e8c1122", + "createdTime": "2021-01-19T13:59:01.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b2887c32-1721-4dba-9338-c03bb97efd91", + "createdTime": "2021-01-19T13:59:01.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30d865ed-4024-46f6-9f03-0f3fcc00906a", + "createdTime": "2021-01-19T13:59:00.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "874db9f6-b4f8-4846-b993-9617c821fbd0", + "createdTime": "2021-01-19T13:59:00.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "346715b1-9065-4d99-802e-27ffebf88787", + "createdTime": "2021-01-19T13:58:59.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1009a511-6fc7-41c9-b055-1d14d11c946c", + "createdTime": "2021-01-19T13:58:55.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad7fe893-4057-459d-b2e0-918ede832075", + "createdTime": "2021-01-19T13:58:54.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "65c8f3ee-ff50-4df0-8053-458efce117a6", + "createdTime": "2021-01-19T13:58:54.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74a8fb65-8ce0-4c3f-ba8b-6193acc9795a", + "createdTime": "2021-01-19T13:58:53.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1eb74126-cecf-4c98-99be-fffb3f80cb0c", + "createdTime": "2021-01-19T13:58:52.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d3da7e5-dd6e-4b04-ac53-c7e3d10b8f20", + "createdTime": "2021-01-19T13:58:31.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f9b93775-d528-41f6-89a6-a96b16d9faae", + "createdTime": "2021-01-19T13:58:31.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "848ed39c-e513-43ab-9054-db022d31d0d5", + "createdTime": "2021-01-19T13:58:30.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "69677d63-a330-48f7-9d00-39f63a52391c", + "createdTime": "2021-01-19T13:58:30.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5a548f36-47b2-493d-b0e4-eff6a4befd89", + "createdTime": "2021-01-19T13:58:29.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "492f4b22-32d6-4137-9dc5-d906e5dbcb96", + "createdTime": "2021-01-19T13:58:27.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cb3ae15-36c0-4d37-8f4d-6d8aa8215159", + "createdTime": "2021-01-19T13:58:27.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "039781d3-ad58-4b87-98f2-85be18785d2b", + "createdTime": "2021-01-19T13:58:27.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85ec2cdd-2603-461a-86ae-02c34fcb1fce", + "createdTime": "2021-01-19T13:58:26.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e72d127c-6637-4872-8751-85c8d53edc52", + "createdTime": "2021-01-19T13:58:26.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2be22f8-59ff-4c31-b42a-04f992409eff", + "createdTime": "2021-01-19T13:58:26.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "497df40f-09a9-4d89-8e24-edc9f13be9f4", + "createdTime": "2021-01-19T13:58:26.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "599dd42a-428f-49b0-be60-dea735103d86", + "createdTime": "2021-01-19T13:58:21.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d48bbdc3-6f15-4ea7-97c4-324153b6a4c2", + "createdTime": "2021-01-19T13:58:20.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a04486f-3165-4d04-ae26-1523ca58df36", + "createdTime": "2021-01-19T13:58:19.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e9f3ddbb-f3b5-4bad-b91c-c572aca698ec", + "createdTime": "2021-01-19T13:58:17.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a43b85c-40f0-4fe9-825b-33e45c10132c", + "createdTime": "2021-01-19T13:58:16.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "57c8339a-73f2-42bd-88f0-c66c5a8f2e9c", + "createdTime": "2021-01-19T13:58:15.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "64cb7e02-126b-4820-9448-9d0c2d0dccef", + "createdTime": "2021-01-19T13:58:15.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a08f3fc4-19c1-47c6-a4b4-9ac75f1a0f33", + "createdTime": "2021-01-19T13:58:14.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ad65cfa-ecc8-4922-8dca-c0046f994b2f", + "createdTime": "2021-01-19T13:57:46.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "52477c92-e87e-419f-a9e9-ffa465cb2357", + "createdTime": "2021-01-19T13:57:45.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbdba9f4-523c-4c36-be5a-856942cd705a", + "createdTime": "2021-01-19T13:57:45.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "95e09ad0-0d5a-4a4a-8625-cd963fa324c3", + "createdTime": "2021-01-19T13:57:44.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "44448b96-8ac6-47fe-8168-15391c41f6ed", + "createdTime": "2021-01-19T13:57:43.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c55df2c-fa46-4ce2-8fe8-aedd79e648f8", + "createdTime": "2021-01-19T13:57:41.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "09a7c3cc-5d33-4a7d-bd9c-a448ec473d3b", + "createdTime": "2021-01-19T13:57:41.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2205c32c-ca6c-4803-b1dc-5027694a1fc0", + "createdTime": "2021-01-19T13:57:40.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0da17f6a-4c32-4423-a307-06ecfb336535", + "createdTime": "2021-01-19T13:57:40.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4878bdbd-098d-41e4-94fd-4a9515248699", + "createdTime": "2021-01-19T13:57:39.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb6086a2-c70d-4df6-b846-2c40f9da9e59", + "createdTime": "2021-01-19T13:56:59.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d0fa41be-d2fc-4496-ae94-beac708855fc", + "createdTime": "2021-01-19T13:56:58.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c8b0f8a2-7a0f-4cba-a1a5-07ed3ee034e4", + "createdTime": "2021-01-19T13:56:57.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "baa237db-ab51-42ca-971e-e6bd0c1fb8eb", + "createdTime": "2021-01-19T13:56:56.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6e7543d2-6281-45a8-a3fe-6017e57a5c40", + "createdTime": "2021-01-19T13:56:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1ea80d8-df5d-4b90-856f-aa9a7e0c8ece", + "createdTime": "2021-01-19T13:56:52.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b933dcd1-e3ce-4a15-9812-c9c2921f7669", + "createdTime": "2021-01-19T13:56:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afe3ac5a-7df3-499a-bf56-1848c38ce103", + "createdTime": "2021-01-19T13:56:50.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0450183-0ec4-46da-992b-07da1067cce2", + "createdTime": "2021-01-19T13:56:49.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "eb010e35-b77b-49c6-96f1-2510b41e7d24", + "createdTime": "2021-01-19T13:56:49.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9d7aab6-5925-4223-9ced-7a9988ff6a13", + "createdTime": "2021-01-19T13:56:38.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "04380f9a-4c5c-4f9c-9b63-8191f277c19d", + "createdTime": "2021-01-19T13:56:37.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8b44e4f1-6294-4926-861a-eb970a8da13b", + "createdTime": "2021-01-19T13:56:36.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "898ed7e4-e181-4b3f-9ad8-cfbc6a74362a", + "createdTime": "2021-01-19T13:56:35.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bbcc749c-7f5c-49d9-97ad-b2d73438bf9a", + "createdTime": "2021-01-19T13:56:35.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69d198b4-3d86-4d4a-856c-fb34c0b012c1", + "createdTime": "2021-01-19T13:56:30.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b00fba3-e39a-4ff7-ac62-e983778ec87d", + "createdTime": "2021-01-19T13:56:30.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0b507d2-8192-4db3-9e99-47c8dd97b7c6", + "createdTime": "2021-01-19T13:56:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9c827ea6-ed2a-4138-8e3c-b96b6f869e4a", + "createdTime": "2021-01-19T13:56:28.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8f811069-066c-43ba-b046-2db6e8179bb7", + "createdTime": "2021-01-19T13:56:27.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d957ad4-77ff-4edf-ae39-baf4741ae2fc", + "createdTime": "2021-01-19T13:56:26.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f3798d0-8f23-4e23-8ac2-81df405a4887", + "createdTime": "2021-01-19T13:53:52.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ae36ed2-fc09-4349-b4cc-a88ea0f1e08f", + "createdTime": "2021-01-19T13:51:59.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a8aa20-0c12-42e7-9a64-8f8c407135fd", + "createdTime": "2021-01-19T13:51:57.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb69c325-6ecf-4124-8512-edd78b28231c", + "createdTime": "2021-01-19T13:51:54.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ac5e48c-b6b5-46b6-930c-2715b987417c", + "createdTime": "2021-01-19T13:51:02.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "56fac71a-b794-48ff-b062-da1d396c67e7", + "createdTime": "2021-01-19T13:50:49.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d964bafc-c6ba-4309-8673-7e15e71f1685", + "createdTime": "2021-01-19T13:49:15.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3565340-d655-45b9-800f-d91e049c76f8", + "createdTime": "2021-01-19T13:48:49.272Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc3c5500-b908-4b7c-ab57-5f32b959b214", + "createdTime": "2021-01-19T09:10:05.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1b47c303-964f-4485-b638-3e1f59347001", + "createdTime": "2021-01-19T09:10:05.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8418d4a8-7952-497f-b99a-42fcdfe76e96", + "createdTime": "2021-01-19T09:10:04.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5dbe01a-4789-4684-a6e0-74b8bd9e12a4", + "createdTime": "2021-01-19T09:10:04.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "948a5f11-7cff-4c40-aa65-a40cbf8b3fe9", + "createdTime": "2021-01-19T09:06:10.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "26d5d32c-da25-4aec-b18c-92e11394113c", + "createdTime": "2021-01-19T09:06:09.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0b2a938d-11ad-471d-b2aa-83b5c08988a7", + "createdTime": "2021-01-19T09:06:09.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06055519-8385-4609-a994-0fcb4bfd9586", + "createdTime": "2021-01-19T09:06:08.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5855d515-f18a-49e5-b550-2742d977b17b", + "createdTime": "2021-01-19T08:58:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "748476b8-6937-46fb-a180-2ac88d0d74e7", + "createdTime": "2021-01-19T08:58:38.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6747aad3-7410-4284-82c6-1e60279a0974", + "createdTime": "2021-01-19T08:58:37.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "335205bf-97b6-4008-8b6e-7bf5924df34f", + "createdTime": "2021-01-19T08:58:36.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761564b8-7a84-4625-9bd4-bf2d0d93a97b", + "createdTime": "2021-01-19T08:54:59.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c1542c5-8d4f-42a8-bf5e-d93e0a1b323a", + "createdTime": "2021-01-19T08:54:58.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3387fd61-0bb8-4694-9026-1284bb7d7391", + "createdTime": "2021-01-19T08:54:58.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a2c4398-eb02-4a9d-a4ee-296d0f8e9ba1", + "createdTime": "2021-01-19T08:54:57.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3675b2c3-a11f-4aad-8402-7a0c71c105d2", + "createdTime": "2021-01-19T08:45:45.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45dbb823-45c6-4e67-8554-c18856404c86", + "createdTime": "2021-01-19T08:45:45.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe055248-219f-44ee-a16c-404bbf167d27", + "createdTime": "2021-01-19T08:45:44.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "df531156-b7ad-4469-9e5a-c463882dbc61", + "createdTime": "2021-01-19T08:45:43.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00b00aa3-2317-4678-b8ad-e5d6a2c15c15", + "createdTime": "2021-01-19T08:35:35.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23b1e4f5-2c9c-4b6d-8071-efeb18cf8a65", + "createdTime": "2021-01-19T08:31:26.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cda57caf-5533-497e-895a-1f2492fb02de", + "createdTime": "2021-01-19T08:24:00.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "93153303-1149-4252-8b14-d4a637585e01", + "createdTime": "2021-01-19T08:35:34.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b8c142f-1e9f-4506-8e4b-569ce88acbf9", + "createdTime": "2021-01-19T08:35:33.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2f57064c-8bcd-4863-82e4-c1151e007b74", + "createdTime": "2021-01-19T08:35:32.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dd116d1d-95ba-4415-bd69-25e85bd3f9b5", + "createdTime": "2021-01-19T08:31:25.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b161f8e0-6d9d-4581-aa93-590f07fbdb84", + "createdTime": "2021-01-19T08:31:25.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f39476fd-e1d1-410b-82ac-98184393e784", + "createdTime": "2021-01-19T08:31:24.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "275c3d77-c699-4ab0-b82f-8df43dfdf59e", + "createdTime": "2021-01-19T08:23:59.912Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a7a085b-a677-459d-bcf8-0b0ddb5f5942", + "createdTime": "2021-01-19T08:23:59.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "67ac83b7-7653-4762-849e-4ce0257adb23", + "createdTime": "2021-01-19T08:23:58.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93a4c768-3a6a-4fcc-b0a4-ce6f7d030e48", + "createdTime": "2021-01-19T08:20:28.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36373d9e-ef96-40f1-9f1a-6286448e91a0", + "createdTime": "2021-01-19T08:20:27.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "19ff0c44-54f4-499f-93c1-e8d895a8d05e", + "createdTime": "2021-01-19T08:20:26.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1af2aacb-2f8b-4932-9a5d-d56501640894", + "createdTime": "2021-01-19T08:20:25.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7315a56-e93c-4a17-a6bd-1595d36b1e1e", + "createdTime": "2021-01-19T01:07:39.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2a2feaf4-bb65-48cd-afb0-72f45abbaaee", + "createdTime": "2021-01-19T01:07:39.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e808d27-075b-4b47-85c7-b9e90e3eba71", + "createdTime": "2021-01-19T01:07:38.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9683141-a0b3-40ca-b49a-c20f05e81e7f", + "createdTime": "2021-01-19T01:07:38.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e280721-906e-4b0a-af2d-29446b7ee17f", + "createdTime": "2021-01-19T01:07:37.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe1f385d-6137-49b5-bc18-2324494c5ce5", + "createdTime": "2021-01-19T01:07:37.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "24d2947d-c23c-4566-8d2d-5a8c1cde840d", + "createdTime": "2021-01-19T01:07:33.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ae07c997-4a0c-47c1-90bf-2a0b525f77d2", + "createdTime": "2021-01-19T01:07:32.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c06aa8b0-1355-471e-bb7a-97d9bd61228d", + "createdTime": "2021-01-19T01:07:32.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2487e600-1fcd-48b4-a1a5-5426bec32877", + "createdTime": "2021-01-19T01:07:31.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd743465-f3c8-43ec-8ed4-848bd566ed9d", + "createdTime": "2021-01-19T01:07:31.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fac408f0-672f-48b7-85bf-497f2fc4419c", + "createdTime": "2021-01-19T01:07:30.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd2b4346-d161-4de2-a858-67b634036640", + "createdTime": "2021-01-19T01:07:01.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a9304316-1e78-48b0-9168-4b6a4274cac8", + "createdTime": "2021-01-19T01:07:00.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "121fbc8e-f0f4-41f4-8ab4-712f1ce7085e", + "createdTime": "2021-01-19T01:07:00.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7651503f-461a-477e-9729-c92b1ba74013", + "createdTime": "2021-01-19T01:06:59.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e05d6efe-fae3-4cc2-84ad-37f500714da8", + "createdTime": "2021-01-19T01:06:58.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "45aedc28-d13a-4731-9147-65405d081339", + "createdTime": "2021-01-19T01:06:58.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d1f4f3c-97ea-4d24-9052-cc6be9529ab0", + "createdTime": "2021-01-19T01:06:53.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a811584f-053c-4789-9eaa-d754e72577f9", + "createdTime": "2021-01-19T01:06:53.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1c8dc050-fc78-465e-8ad8-6ff80261e46d", + "createdTime": "2021-01-19T01:06:52.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0af352a-0ad9-494f-9860-f2535d6c9550", + "createdTime": "2021-01-19T01:06:51.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "28742aea-eed2-4416-88be-65dd5d40ae70", + "createdTime": "2021-01-19T01:06:51.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a44c8424-3977-474e-bbbd-bb0124f0eb30", + "createdTime": "2021-01-19T01:06:50.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7a82848-2a4b-46c3-aabe-c7dd92635c57", + "createdTime": "2021-01-19T01:06:49.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5939f944-879e-420a-9082-c1b8e8c622d4", + "createdTime": "2021-01-19T01:06:49.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "243043b9-446e-4526-86cb-f1e17d12243d", + "createdTime": "2021-01-19T01:06:48.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5111ce69-39c0-47b6-b1d3-e1022f67be4d", + "createdTime": "2021-01-19T01:06:47.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6aeb5f11-665c-4680-b395-30475f19a5fe", + "createdTime": "2021-01-19T01:06:47.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "367dde79-f8cb-49be-87e5-805ebd4240bb", + "createdTime": "2021-01-19T01:06:46.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ae5bd15-5ef8-4655-8e2e-2a369da8c1c4", + "createdTime": "2021-01-19T01:06:42.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "25e35e33-4dbc-41a9-87e5-200cc68a20c0", + "createdTime": "2021-01-19T01:06:42.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e9897081-dc5b-4521-8075-be7e719bbbda", + "createdTime": "2021-01-19T01:06:42.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b363b009-3f17-4e98-8bab-27bad07da52c", + "createdTime": "2021-01-19T01:06:41.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "49caaf15-00dd-489d-927c-c20621f17613", + "createdTime": "2021-01-19T01:06:41.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0511533-92a8-4bdf-ac16-8543e4f5cd5f", + "createdTime": "2021-01-19T01:06:40.922Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ac0d4586-fb21-4d48-abdf-f77e7cc65559", + "createdTime": "2021-01-19T01:06:40.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b4599f09-d209-423b-b030-2d6590fcbcf7", + "createdTime": "2021-01-19T01:06:40.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e5ed2cd9-3df7-4e55-b6af-29972bf07803", + "createdTime": "2021-01-19T01:06:40.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f25d3b8f-33a5-4363-ab36-74551409eb12", + "createdTime": "2021-01-19T01:06:39.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0e55feb1-60a1-4791-b661-5130c6bcc2c0", + "createdTime": "2021-01-19T01:06:39.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec7ef9b7-b606-4cf5-9c6f-ac9081d9e439", + "createdTime": "2021-01-19T01:06:38.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef352772-2821-4c20-9113-023fd9d9e8a6", + "createdTime": "2021-01-19T01:06:34.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1279c7c8-4d76-46bc-ab06-620923fd5768", + "createdTime": "2021-01-19T01:06:33.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "86317b4c-7c5b-41c5-83bb-c20f3da93686", + "createdTime": "2021-01-19T01:06:32.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dc284e2a-ffbe-461e-9658-8bdd6e5fac47", + "createdTime": "2021-01-19T01:06:31.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "65e59d89-efbb-4335-8acf-ca106f0d00c3", + "createdTime": "2021-01-19T01:06:31.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9afb068b-f48f-4084-8eec-b32f4da14a14", + "createdTime": "2021-01-19T01:06:30.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baa470a3-6222-43ff-a2bb-507145eca70b", + "createdTime": "2021-01-19T01:06:29.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4e62d072-99f5-4d43-befa-0b3bd28bf60f", + "createdTime": "2021-01-19T01:06:28.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "94cbfee6-d0d5-47e9-9cf3-7438498e374c", + "createdTime": "2021-01-19T01:06:27.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "076e455b-a29b-44ce-8c3d-aa550813168f", + "createdTime": "2021-01-19T01:06:27.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9665b1f3-dab0-4427-9de8-632d7c8e9ecb", + "createdTime": "2021-01-19T01:06:26.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "37cc7d7a-ef74-4f5b-b967-7a23b53fc7c4", + "createdTime": "2021-01-19T01:06:26.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f115db2-4994-4c33-87d7-0f682a62a961", + "createdTime": "2021-01-19T01:06:22.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "44c5cbe0-feba-450f-8263-0fe161072c5e", + "createdTime": "2021-01-19T01:06:21.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "82bde737-b216-4246-9ed7-cc65305296bf", + "createdTime": "2021-01-19T01:06:21.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e7e889fb-d1a4-4642-87ad-1abdd7aa1cd3", + "createdTime": "2021-01-19T01:06:20.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "27de048b-a8db-4e84-85f1-b483be33a89d", + "createdTime": "2021-01-19T01:06:20.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a89f88bf-ea3a-4345-a12e-ed9876417391", + "createdTime": "2021-01-19T01:06:19.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "546674b2-f3c6-47bc-97be-569b576e00d6", + "createdTime": "2021-01-19T01:05:56.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a7dc71d2-bf2a-4431-945d-9259cc6db368", + "createdTime": "2021-01-19T01:05:55.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7514b0e-94be-4ce6-879b-745bca8c6c24", + "createdTime": "2021-01-19T01:05:55.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54cbc164-b48b-4f24-9d59-9e3e86145b06", + "createdTime": "2021-01-19T01:05:54.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cdcc44cf-a69e-4b39-b843-acbf281286cf", + "createdTime": "2021-01-19T01:05:53.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2756fdd1-4f1b-4c6e-9607-a0ab67874027", + "createdTime": "2021-01-19T01:05:53.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ada6147f-ca9b-4936-81df-b1ee371c42f8", + "createdTime": "2021-01-19T01:05:49.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ce57b74e-7c3b-4028-be96-2549c73dafc6", + "createdTime": "2021-01-19T01:05:48.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cea1fdc7-f132-4f06-a0ff-476b94e5e509", + "createdTime": "2021-01-19T01:05:48.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5799355b-becf-47f6-99b4-bdb63795a49a", + "createdTime": "2021-01-19T01:05:47.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b57d961-f870-43e2-944b-8ce9c3bfc4e3", + "createdTime": "2021-01-19T01:05:46.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "baa75995-bbeb-4ab0-86d3-6c58d7355847", + "createdTime": "2021-01-19T01:05:46.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d20a2d9-2e07-4069-9bd6-1928b6d41939", + "createdTime": "2021-01-19T01:03:19.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2efe071c-7398-4633-94d9-2d7ae2826aae", + "createdTime": "2021-01-19T01:03:18.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "61b7ff71-415d-4907-979f-509fa7d846e1", + "createdTime": "2021-01-19T01:03:17.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3522e47-ea83-419d-a16d-0b4809b8cba8", + "createdTime": "2021-01-19T01:03:16.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bdb54d39-06cb-4605-b472-167767431d7e", + "createdTime": "2021-01-19T01:03:15.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "24d47030-9276-46e3-ad15-b2cf6b95e056", + "createdTime": "2021-01-19T01:03:14.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f76714c-b9fb-43a5-aef1-ba8b30069013", + "createdTime": "2021-01-19T01:03:11.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ee774ea-ea47-4979-8e8a-9542fd5398b1", + "createdTime": "2021-01-19T01:03:10.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d92c9d87-9cc0-48b8-8d5a-e3f393e26f46", + "createdTime": "2021-01-19T01:03:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "15298377-2281-4bc8-a20d-6eaa422ee8e4", + "createdTime": "2021-01-19T01:03:09.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "20ed5127-b5c1-4dc2-a7ce-7bb5fdef3547", + "createdTime": "2021-01-19T01:03:09.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "01efea0a-6ec6-4c54-901f-01b62d679678", + "createdTime": "2021-01-19T01:03:08.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43a0ccbf-078a-429d-bbc9-6419135bd0e0", + "createdTime": "2021-01-19T01:03:08.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "73ce71f6-cbc7-466c-b6f3-7394d04b7196", + "createdTime": "2021-01-19T01:03:08.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93588134-6ffa-454b-9df2-d7d2f0042479", + "createdTime": "2021-01-19T01:03:08.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d75ec0a0-6d07-4d23-a6ed-88b532cc4224", + "createdTime": "2021-01-19T01:03:07.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "957540ac-dff5-4a90-94f2-41b24ef33cd4", + "createdTime": "2021-01-19T01:03:06.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "206abe3d-4321-481b-9b7c-d13a504e74ef", + "createdTime": "2021-01-19T01:03:05.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4f3cb4c-43f6-4933-96ed-e733e24c84df", + "createdTime": "2021-01-19T01:03:01.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a03eb23-3b2b-4904-ab5c-4c2270ac2409", + "createdTime": "2021-01-19T01:03:01.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "303dee09-09b6-48b1-a873-47bfa00c73be", + "createdTime": "2021-01-19T01:03:00.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "746ef064-a093-4d36-a5ce-428a9c39eed9", + "createdTime": "2021-01-19T01:02:59.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5929eeb6-11ca-4ddc-a5c2-7431fd83dadb", + "createdTime": "2021-01-19T01:02:58.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0db045a1-8833-4d3a-81aa-72f6b89757d1", + "createdTime": "2021-01-19T01:02:57.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3aeb2208-c8c8-4741-8dd0-a86ff918d028", + "createdTime": "2021-01-19T01:01:00.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71134de1-f939-4fb5-9dbd-a238d586c637", + "createdTime": "2021-01-19T00:59:37.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8a54d6-bac8-45ba-814c-69b8c5b1c822", + "createdTime": "2021-01-19T00:59:19.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2889ddb1-e7a3-4e0d-9458-c122b88a43f7", + "createdTime": "2021-01-19T00:59:11.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf6a3b4c-13c2-4172-8ff7-7317802ecca0", + "createdTime": "2021-01-19T00:58:54.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "607b7c58-f4f5-4464-945d-98a38f4c4a94", + "createdTime": "2021-01-19T00:58:36.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f70b88af-8bf1-4f5f-ba0a-e5f32f7e8c1b", + "createdTime": "2021-01-19T00:55:42.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f201963-2b59-4eb7-bbab-9cb1f572389a", + "createdTime": "2021-01-19T00:55:40.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "447643f9-c3be-4891-85c4-60c70a5a0458", + "createdTime": "2021-01-19T00:26:16.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "69b90675-238c-4fde-a966-18f1dcaef637", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "315e935c-a01c-4e51-8080-e96642d86f5c", + "createdTime": "2021-01-19T00:26:08.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "023331b6-7d33-4b71-ac45-5ff246c565da", + "createdTime": "2021-01-19T00:25:07.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "095884b3-eab8-45f0-a344-ad06cd097e91", + "createdTime": "2021-01-19T00:26:07.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d3698c88-ec8d-4ddc-8ea4-33be8fa46819", + "createdTime": "2021-01-19T00:21:04.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "49f7dcef-d662-4727-b225-a3e5267b2f00", + "createdTime": "2021-01-19T00:25:00.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5d3bfd0f-9856-41f2-9efd-feb93259a221", + "createdTime": "2021-01-19T00:20:56.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bb84562f-9654-4d71-b3e0-60797d9cf6bb", + "createdTime": "2021-01-19T00:25:38.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "98da1c1f-22bc-45dd-8a3a-04081b6fe773", + "createdTime": "2021-01-19T00:25:37.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "35b1ba05-a532-4eb4-887d-b119f8729493", + "createdTime": "2021-01-19T00:25:31.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "fdfe9ba6-c7ac-4c4b-8868-7d6f96dc3f1f", + "createdTime": "2021-01-19T00:20:29.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "238c89f4-dc13-46db-9b94-24bbe8893c41", + "createdTime": "2021-01-19T00:25:30.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8239b457-436b-458c-9dd2-fac29bba3bb0", + "createdTime": "2021-01-19T00:26:27.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0300d75a-1208-43dd-96ec-46631fb7c93f", + "createdTime": "2021-01-19T00:26:26.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b1312aa-0b77-478b-8a3f-77096ae88bf9", + "createdTime": "2021-01-19T00:26:26.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3a11fcb-4b9b-4705-8ad2-5f7ddfa4016a", + "createdTime": "2021-01-19T00:26:25.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "554f3718-a580-4d6b-991b-4422fa3bfb22", + "createdTime": "2021-01-19T00:26:24.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5256ed10-ac40-4e54-99f6-eef5ba220914", + "createdTime": "2021-01-19T00:26:24.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67ca7e28-f386-422b-90cd-80611c770c56", + "createdTime": "2021-01-19T00:26:20.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "96747e4c-95b4-43e5-921c-dd02bcb30dde", + "createdTime": "2021-01-19T00:26:19.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b694a4da-e693-4f81-86d8-35afa3440e80", + "createdTime": "2021-01-19T00:26:19.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "80783a23-30c9-45fb-ae6a-05a028bd2d9f", + "createdTime": "2021-01-19T00:26:18.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "640753b7-b112-4eb7-8399-63544a8c1f7e", + "createdTime": "2021-01-19T00:26:18.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "78ffbb29-9d05-4b3e-9277-f9ee16450910", + "createdTime": "2021-01-19T00:26:17.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3206ea4-6299-4c1f-9f0f-57f0b9a53c75", + "createdTime": "2021-01-19T00:26:15.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8628b076-f53b-4d0b-ba25-24b4dca1a0c0", + "createdTime": "2021-01-19T00:26:14.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "590d7d1c-00c3-447b-8200-18669c208d79", + "createdTime": "2021-01-19T00:26:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f47acb9e-1271-411c-9a90-c76f568323aa", + "createdTime": "2021-01-19T00:26:13.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3a97111-c591-4f78-97b6-63ffff8b6ba2", + "createdTime": "2021-01-19T00:26:13.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "18dcad3e-0518-4b47-b74e-2a893ddebeb1", + "createdTime": "2021-01-19T00:26:13.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "07533e43-0d3b-4e13-99dc-9db0f88b508f", + "createdTime": "2021-01-19T00:26:12.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbed8283-66f0-4287-a18d-d16fa706c6c2", + "createdTime": "2021-01-19T00:26:12.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8695075-c7cd-410e-a01f-63a756dfcb0e", + "createdTime": "2021-01-19T00:26:11.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e71b64ba-7d85-4b82-828b-539a4ba5d64f", + "createdTime": "2021-01-19T00:26:11.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1956d3da-2770-466c-b8ba-7747bf04b4e1", + "createdTime": "2021-01-19T00:26:07.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a03990f4-320e-4cfd-bf9f-213cd71f18c4", + "createdTime": "2021-01-19T00:26:06.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03b4edff-7680-4cad-a83b-b3bd4dff305a", + "createdTime": "2021-01-19T00:26:06.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "825b9bf9-f6b9-4d42-a621-d5ba28c18c77", + "createdTime": "2021-01-19T00:26:06.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0b36c050-a25f-4ea2-999d-d5c130fb9048", + "createdTime": "2021-01-19T00:26:06.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e83e5302-aff0-46a2-9721-2ce1eee7fb64", + "createdTime": "2021-01-19T00:26:05.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f24e52f2-085f-4611-bb48-0c30a5fc164c", + "createdTime": "2021-01-19T00:26:05.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81511988-652a-4b64-a42b-155cb9a86f46", + "createdTime": "2021-01-19T00:26:04.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d5a4c59e-0cab-453b-b73e-561012e02579", + "createdTime": "2021-01-19T00:26:04.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47a65df3-04cf-4e8a-8960-5911cfa60e33", + "createdTime": "2021-01-19T00:26:04.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e858c12e-2812-4441-abc1-41c6482d7814", + "createdTime": "2021-01-19T00:25:38.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "916f1954-ab5a-48a6-8323-4456a527f032", + "createdTime": "2021-01-19T00:25:37.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "05b956f2-812d-4dd6-9b22-d5ed73b126bb", + "createdTime": "2021-01-19T00:25:36.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3d1e8265-44f7-4b6f-8485-9fbef354aa2d", + "createdTime": "2021-01-19T00:25:36.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0aaa780a-7fd5-47da-8ba6-e99af7d097f7", + "createdTime": "2021-01-19T00:25:36.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "616f1dad-9e7a-43a1-b459-fc3f1fbf872c", + "createdTime": "2021-01-19T00:25:35.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9871867b-fc24-480f-919c-b834cf23271b", + "createdTime": "2021-01-19T00:25:35.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df41b57-f4ae-48ab-831b-a9eac26905ed", + "createdTime": "2021-01-19T00:25:35.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "08a138a3-1bd0-472e-9af3-68b3b7278bd2", + "createdTime": "2021-01-19T00:25:34.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f9c170e-a310-4c01-9b23-76de2a782ffe", + "createdTime": "2021-01-19T00:25:33.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f53a8c4-79a5-4b6f-a82d-e31a17c7c575", + "createdTime": "2021-01-19T00:25:31.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cdf0c68c-5631-48f3-a148-1aab94ee4edf", + "createdTime": "2021-01-19T00:25:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "524b18ff-ac3a-46b4-8209-d8407bcb9709", + "createdTime": "2021-01-19T00:25:30.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9877d6cb-016f-4a87-a822-e94a9e96dec9", + "createdTime": "2021-01-19T00:25:29.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d96cf73a-ae64-4537-9aad-1185c1fdc259", + "createdTime": "2021-01-19T00:25:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "acf5e6bd-61ed-490f-852e-eba6cc694b15", + "createdTime": "2021-01-19T00:25:29.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "43a7d62c-921d-4cfd-a14e-da5e1ab7ea1b", + "createdTime": "2021-01-19T00:25:28.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02308a30-b4ed-41b3-8cac-5d4b760dbe43", + "createdTime": "2021-01-19T00:25:28.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b2c9859-7b2e-4b75-a97e-49dbde6a023d", + "createdTime": "2021-01-19T00:25:27.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7f9b252-03ec-455c-85e5-eee4c727d2ce", + "createdTime": "2021-01-19T00:25:27.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07cbe92c-af47-4353-bbf5-d917462a4e18", + "createdTime": "2021-01-19T00:25:06.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5be02e6e-3a0c-49d3-80cb-16ea47e0a8dc", + "createdTime": "2021-01-19T00:25:06.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cbc38873-cf2c-4bab-9f22-34f659658422", + "createdTime": "2021-01-19T00:25:05.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "db24ab6c-f112-4af8-91be-c3e049621820", + "createdTime": "2021-01-19T00:25:05.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "809a9c48-54e9-40ea-a80a-17ec6bd7583f", + "createdTime": "2021-01-19T00:25:04.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "508d452f-6003-452a-a1de-f0bb7a699932", + "createdTime": "2021-01-19T00:25:00.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe182ecf-bd7a-40f6-997f-381b3336c49f", + "createdTime": "2021-01-19T00:24:59.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67becf6a-e224-48dc-8704-65471e7c8cfc", + "createdTime": "2021-01-19T00:24:59.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "612d3a6a-e2c8-46d2-8cd5-1a458c24ed61", + "createdTime": "2021-01-19T00:24:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "88e9a13f-75fb-4c1c-9cba-f926711982f3", + "createdTime": "2021-01-19T00:24:57.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2c36b81-46c6-499e-892c-d40c07a68ae2", + "createdTime": "2021-01-19T00:21:04.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0a9a9894-39b5-4426-b68d-9faeaa97747e", + "createdTime": "2021-01-19T00:21:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5166bd87-6a0a-46e7-ae6b-d274f46f0ca7", + "createdTime": "2021-01-19T00:21:01.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "950f915c-b1f1-4c2f-a4ca-2b2252481b70", + "createdTime": "2021-01-19T00:21:00.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "27e68169-afc6-4b5c-96d9-cb3c974aef91", + "createdTime": "2021-01-19T00:21:00.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "361c40cb-a1e1-4c7a-93f7-16f69a86ed6b", + "createdTime": "2021-01-19T00:20:55.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a4dc67bd-ca4d-44c6-ad21-f87a3747be05", + "createdTime": "2021-01-19T00:20:55.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bd82df04-9352-431c-8e01-b7e08fbd41b1", + "createdTime": "2021-01-19T00:20:54.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "857c584d-7651-42a4-a90b-215e65712065", + "createdTime": "2021-01-19T00:20:53.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b8d26670-b552-43b0-b7ee-c201ab617f7f", + "createdTime": "2021-01-19T00:20:52.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16a95a06-fc02-4b66-9a07-237e13542e62", + "createdTime": "2021-01-19T00:20:28.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "25280544-5401-43c6-a610-0500628bc960", + "createdTime": "2021-01-19T00:20:28.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "be101e83-880f-45fa-9ef3-cf44247f0dd0", + "createdTime": "2021-01-19T00:20:27.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "efea6587-2f40-4a4b-b39d-f07aa82a8779", + "createdTime": "2021-01-19T00:20:27.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "65da6265-d6b9-4e0e-9a8b-b35cb5535548", + "createdTime": "2021-01-19T00:20:26.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5209c149-2e13-4465-91f0-f4e1285c4615", + "createdTime": "2021-01-19T00:20:24.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3b3f6df1-036a-4b2c-9174-bcc2e55ade1e", + "createdTime": "2021-01-19T00:20:23.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "640a0a2b-ccb9-45fd-b7de-0347ae8302e5", + "createdTime": "2021-01-19T00:20:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3ef50080-0ac0-4067-86ea-6927e556afe7", + "createdTime": "2021-01-19T00:20:22.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2ec9f8e0-412c-4966-9a31-57475cd3ac91", + "createdTime": "2021-01-19T00:20:21.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e58caf5a-3361-4150-8bb4-cc31246e4790", + "createdTime": "2021-01-19T00:20:21.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7f46c7b-b75e-4435-babc-b277e85e0bf2", + "createdTime": "2021-01-19T00:17:43.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6a601bc-b4f1-4dd2-b4aa-d5f827668762", + "createdTime": "2021-01-19T00:16:19.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d58358a-41af-4acb-9ea7-daf6c8cc5401", + "createdTime": "2021-01-19T00:16:10.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc596c7d-c338-4c70-b1b5-2adb19505ecb", + "createdTime": "2021-01-19T00:16:09.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88f50ab-3d12-4bd7-adf7-9d9e957f7a34", + "createdTime": "2021-01-19T00:16:04.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "895d5a3e-3c57-4c09-b472-160f28c05c1d", + "createdTime": "2021-01-19T00:15:03.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419ee12f-cbb5-4015-b318-c810ba9f1492", + "createdTime": "2021-01-19T00:13:20.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "581600d7-7c17-4f3e-913b-6b8aecad976a", + "createdTime": "2021-01-19T00:12:56.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d21e4462-5537-4daf-9559-118819b0b75d", + "createdTime": "2021-01-18T20:12:04.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64c5744d-82fc-43c9-91ba-78aea74a230c", + "createdTime": "2021-01-18T20:05:55.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f7adb0-bb01-494f-8589-342fe308567e", + "createdTime": "2021-01-18T20:05:49.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d0be9853-ca42-466c-b2a0-a5c55fc094f6", + "createdTime": "2021-01-18T20:09:38.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "eba3a6c5-a4cc-4197-b8b5-20a32e239daf", + "createdTime": "2021-01-18T20:05:22.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1d5786cc-d04d-47b9-bcca-2e6ed1672923", + "createdTime": "2021-01-18T20:07:09.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0e9607c2-41d6-4c58-baa2-b56648ba27d9", + "createdTime": "2021-01-18T20:12:04.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "60912236-9e07-41b2-ad3e-0e4e72ddea8a", + "createdTime": "2021-01-18T20:12:03.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c892741b-ddef-43f9-b38a-5330fb7d3858", + "createdTime": "2021-01-18T20:12:02.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9770ede0-8443-4968-bcec-76d987d855ba", + "createdTime": "2021-01-18T20:09:39.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a93e3eb0-16ee-4465-940c-de7ca38aa9ed", + "createdTime": "2021-01-18T20:09:38.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "79974548-0e76-467a-8a39-8e91f3e3c905", + "createdTime": "2021-01-18T20:09:37.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f663c25b-a759-4add-b6f6-36274ed8613a", + "createdTime": "2021-01-18T20:07:09.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b64690c-5c79-441a-a8aa-30f0d17ddfce", + "createdTime": "2021-01-18T20:07:08.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b291c4b-19e2-455b-9d1e-dd6f1f318da9", + "createdTime": "2021-01-18T20:07:08.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bff967f7-7ab3-471e-9761-f16666b3f1b5", + "createdTime": "2021-01-18T20:05:56.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d114f610-c1ce-4d08-95dd-f0d0a3b14964", + "createdTime": "2021-01-18T20:05:55.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d2504254-6aa7-443f-8008-5363a7f08b49", + "createdTime": "2021-01-18T20:05:54.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a72f005-e577-4f1d-9ff0-a7be8c91de53", + "createdTime": "2021-01-18T20:05:50.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c3a62520-b1c9-4261-b27f-5a415250ab9b", + "createdTime": "2021-01-18T20:05:48.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5ef2c20-6f09-47d1-97e6-fe08ebc73e8a", + "createdTime": "2021-01-18T20:05:48.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbb4d554-4711-4af5-9a6f-88246289ae59", + "createdTime": "2021-01-18T20:05:23.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ec432ed-2b0e-4f3b-a1a4-95a319c983fa", + "createdTime": "2021-01-18T20:05:22.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1a4b4e34-1892-4416-8634-4152d55e5309", + "createdTime": "2021-01-18T20:05:22.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eedfa818-3872-46a3-9f51-9000697eabac", + "createdTime": "2021-01-18T20:05:17.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fea1758e-9142-47df-a8fb-f44a2957c1cb", + "createdTime": "2021-01-18T20:05:16.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e218377b-d686-40bb-ac6c-cfd15e53c65d", + "createdTime": "2021-01-18T20:05:15.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "18485003-b52e-4d85-ab43-e04c12c17118", + "createdTime": "2021-01-18T20:05:15.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d74f3389-944a-44e1-9548-c44e8d612d13", + "createdTime": "2021-01-18T14:02:19.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e69f4669-e8c3-4e22-8616-f03907471634", + "createdTime": "2021-01-18T14:02:14.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fcd41dd-22fd-40fd-b47e-ff305692b292", + "createdTime": "2021-01-18T14:02:13.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3a6f4be3-fe1d-40b7-a985-c1bfde3025d5", + "createdTime": "2021-01-18T14:01:03.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3dc5d5a0-e6c5-4f4a-aee3-ed10cfbd67e4", + "createdTime": "2021-01-18T14:00:59.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b4a26b33-6dd8-4011-8fbb-9615106b12ac", + "createdTime": "2021-01-18T13:58:56.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5f59323e-5c19-4d6e-bdfd-be80214246ca", + "createdTime": "2021-01-18T14:01:43.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9c63c04a-3ebe-4d55-a79f-1e3ecc9c9806", + "createdTime": "2021-01-18T14:01:42.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cfe35f29-243f-4139-bea7-ce89695c6a9a", + "createdTime": "2021-01-18T14:01:37.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9faa75fc-4e5e-41ab-a380-9655d30390c9", + "createdTime": "2021-01-18T14:01:35.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b513e061-217e-4c21-b6e7-6001e505c0e0", + "createdTime": "2021-01-18T14:02:29.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d4c36006-54f9-42ce-a6f7-9f12281347e9", + "createdTime": "2021-01-18T14:02:26.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4f105b31-509b-4454-9f5f-67d530371632", + "createdTime": "2021-01-18T14:02:23.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "47e3cc17-7ed8-4779-a080-454c8cd2198c", + "createdTime": "2021-01-18T14:02:20.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a5bf795a-625c-4dfa-98fd-730ef6e427c0", + "createdTime": "2021-01-18T14:02:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23b9c8dd-208c-4725-8c83-3fc50899c2c7", + "createdTime": "2021-01-18T14:02:28.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9fed2197-4707-4841-b0a6-bebd9bd805c1", + "createdTime": "2021-01-18T14:02:28.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f2c27125-8ca2-467e-85b6-d706422022c9", + "createdTime": "2021-01-18T14:02:27.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6b5f985-4027-4820-935e-b7a96a054f9c", + "createdTime": "2021-01-18T14:02:27.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "648b8a42-8553-4398-8505-a6747ec8979f", + "createdTime": "2021-01-18T14:02:26.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81f088a6-ab52-42cd-893b-a5d3407f1bcd", + "createdTime": "2021-01-18T14:02:25.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33399602-eab0-48a7-802c-0d7e89f60a3d", + "createdTime": "2021-01-18T14:02:25.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "276f0864-875d-41a9-9045-fe401d9fb143", + "createdTime": "2021-01-18T14:02:24.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6ad2ed44-a693-4412-a50f-082374272493", + "createdTime": "2021-01-18T14:02:23.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "889c312e-40dc-471c-87ca-10bb954de1fa", + "createdTime": "2021-01-18T14:02:23.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f1085453-ba3a-4b86-a881-172407296a43", + "createdTime": "2021-01-18T14:02:22.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21266d7d-6989-405e-89dd-1fc0a896bc8c", + "createdTime": "2021-01-18T14:02:22.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "40ce6741-aa60-422e-93e3-eaf8094e60b6", + "createdTime": "2021-01-18T14:02:22.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "13d24587-68ca-46cd-8f2b-6ebb199118b8", + "createdTime": "2021-01-18T14:02:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c29a4d8b-ebf0-4c38-804a-d200b8d995de", + "createdTime": "2021-01-18T14:02:20.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f96ca7fd-ba29-445d-adee-678a586d35a9", + "createdTime": "2021-01-18T14:02:19.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "60632a38-9fde-4a48-8588-8badfde99a5b", + "createdTime": "2021-01-18T14:02:19.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23f08fb4-1192-41c3-b1ad-81d9679ed25f", + "createdTime": "2021-01-18T14:02:18.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "692fbc12-e56c-4745-8413-8df6fd134e55", + "createdTime": "2021-01-18T14:02:18.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5a60d43-6e8d-4bad-a5a1-4366dd79db2f", + "createdTime": "2021-01-18T14:02:18.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44fc4b0d-9c52-48b9-ae92-0f2d81460813", + "createdTime": "2021-01-18T14:02:18.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0afddd9-3596-4796-91ad-c6a53a186688", + "createdTime": "2021-01-18T14:02:17.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ce080e2-6a13-48e6-aa8c-271121ff158e", + "createdTime": "2021-01-18T14:02:17.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e0c35506-9c36-4cd8-b3b1-1e2f66fea573", + "createdTime": "2021-01-18T14:02:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6350ae83-1bcb-4c9c-985f-23ac0d353684", + "createdTime": "2021-01-18T14:02:17.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b2f4b5d-47ff-4ca8-a04a-34e64d4e5578", + "createdTime": "2021-01-18T14:02:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ced8ff01-1731-4528-b34d-ac7a4c8a7330", + "createdTime": "2021-01-18T14:02:16.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d0b38b58-d825-42cf-93be-b529797bf0de", + "createdTime": "2021-01-18T14:02:16.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32552c46-42f1-4dc5-a5b1-7389f6622ecf", + "createdTime": "2021-01-18T14:02:15.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34c2db40-9d62-40a4-ac62-e3940be93210", + "createdTime": "2021-01-18T14:02:15.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d76825b-06e7-4c19-a052-1c88417f73d7", + "createdTime": "2021-01-18T14:02:14.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28e18a77-3bf3-4762-88c1-014f70bcb224", + "createdTime": "2021-01-18T14:02:13.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "74a1396c-72f8-4573-95e2-99426c535ab5", + "createdTime": "2021-01-18T14:02:13.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d5c7d407-a340-4707-a383-17de3304aae7", + "createdTime": "2021-01-18T14:02:12.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e6bf7af5-8476-42ed-adcf-e7210bb6f7c3", + "createdTime": "2021-01-18T14:02:12.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b56a31b-c2f3-4b9f-a7da-db7671d0c1aa", + "createdTime": "2021-01-18T14:02:12.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "617be967-b3d8-4f08-83ca-2c7a4c1c2048", + "createdTime": "2021-01-18T14:02:11.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0be038e-b5eb-4c7b-a422-9b105f021dc2", + "createdTime": "2021-01-18T14:02:11.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "822b1e15-bcee-417c-92b5-894d0fdfdb3e", + "createdTime": "2021-01-18T14:02:10.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4a2755f5-b6d8-4bc1-bc04-4fa5f7746f88", + "createdTime": "2021-01-18T14:02:10.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab20dd75-cf4b-4a94-9d46-e2384e8da92a", + "createdTime": "2021-01-18T14:01:42.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7aae7fab-6765-428d-b26f-a83ad1a09b76", + "createdTime": "2021-01-18T14:01:41.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ba19ce9c-79df-43b4-9ee5-84ebc41b5721", + "createdTime": "2021-01-18T14:01:41.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "daa8ae05-abd2-4e44-89ff-6b0f763efd5f", + "createdTime": "2021-01-18T14:01:41.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a160a02c-4aab-4c13-9050-f6d07ba699ce", + "createdTime": "2021-01-18T14:01:41.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5ef0899-b9f7-4d37-a6b2-f5b8df14f692", + "createdTime": "2021-01-18T14:01:40.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e3f22df-9eaa-4c97-aba6-f88d608f1ba3", + "createdTime": "2021-01-18T14:01:40.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7a0ab9e5-d109-44a3-93da-e3671246ff0b", + "createdTime": "2021-01-18T14:01:40.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8501051f-b446-48fc-b9e5-9c277c3d8c97", + "createdTime": "2021-01-18T14:01:39.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "46cff660-c023-47d6-a616-a831458dce4b", + "createdTime": "2021-01-18T14:01:39.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d73b49c-4c9f-4533-9940-5d6002c3f399", + "createdTime": "2021-01-18T14:01:37.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "287d1ad6-e48c-4d27-b2d6-bb9e409b05d5", + "createdTime": "2021-01-18T14:01:36.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "364da32c-aab7-4110-a6be-c41d6fa9e7ce", + "createdTime": "2021-01-18T14:01:36.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b375ff19-f964-4e40-bbbd-17057af52085", + "createdTime": "2021-01-18T14:01:35.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1bca4249-0009-4bb4-9230-84b75ff1ca7c", + "createdTime": "2021-01-18T14:01:34.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7c9c07d-311b-4436-aee9-820f5324ae44", + "createdTime": "2021-01-18T14:01:34.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff79f82-3407-4e76-acf1-a1769125ab36", + "createdTime": "2021-01-18T14:01:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1530866-8289-49df-b432-4485c7af29c8", + "createdTime": "2021-01-18T14:01:33.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2874c845-e947-4ebc-b842-670f184113ac", + "createdTime": "2021-01-18T14:01:32.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "df786a84-9afa-42a7-a8e1-9cc24e9d963b", + "createdTime": "2021-01-18T14:01:31.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5256282d-8c3c-4aad-8204-3c7aaa5e14fb", + "createdTime": "2021-01-18T14:01:03.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "37e094fa-1ac8-493f-8145-36adcd20ed1d", + "createdTime": "2021-01-18T14:01:02.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b38d251c-ffd7-400c-baf4-c890191bf771", + "createdTime": "2021-01-18T14:01:02.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e7203501-0347-473e-872d-5850083537cb", + "createdTime": "2021-01-18T14:01:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0822a8e6-3819-4fd5-8e23-289c063bc7c4", + "createdTime": "2021-01-18T14:01:01.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e03d045d-a6c2-44f1-a347-219b948b6628", + "createdTime": "2021-01-18T14:00:58.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3eba25fb-2de1-4543-96d1-cb0bebf7dcab", + "createdTime": "2021-01-18T14:00:57.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "90f62e07-1cd5-4189-8e98-ab999b7071f8", + "createdTime": "2021-01-18T14:00:57.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1878717e-e4e9-43e1-a46b-931e2e26a664", + "createdTime": "2021-01-18T14:00:56.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1db1380e-b91b-4a2f-b401-47147f212763", + "createdTime": "2021-01-18T14:00:56.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d6432868-f43e-4154-b443-bd77684c6a78", + "createdTime": "2021-01-18T13:58:19.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c951ad9b-b1ae-4b0d-9614-f12ee0403749", + "createdTime": "2021-01-18T13:58:18.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "427e78ae-f7ac-45d9-a400-b7db2ccb684e", + "createdTime": "2021-01-18T13:58:17.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "18d68ec0-4953-4daa-8491-d7059db94eb9", + "createdTime": "2021-01-18T13:58:17.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e03d7649-8a52-4c1b-a35a-7e4893887cdd", + "createdTime": "2021-01-18T13:58:16.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a4611545-02e6-4a82-9a0a-e87c41476678", + "createdTime": "2021-01-18T13:58:13.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2618ac21-b5c2-4224-8799-feef38e077f9", + "createdTime": "2021-01-18T13:58:13.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a95c5062-f254-4bb2-8789-d14482c4e8ff", + "createdTime": "2021-01-18T13:58:12.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f939b262-7e8e-4c72-ae82-e191ce6a36b2", + "createdTime": "2021-01-18T13:58:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f0ee4243-9437-43b1-9cff-85e87a4f1ee8", + "createdTime": "2021-01-18T13:58:11.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "87548cf0-976c-4bd8-b1a7-96b8bd1e1f46", + "createdTime": "2021-01-18T13:58:10.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65014fcd-bc80-4766-a80f-9e24e0288138", + "createdTime": "2021-01-18T13:52:53.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18bd04ef-e0e1-4f80-8199-f7a5fbaa6eb3", + "createdTime": "2021-01-18T13:52:46.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42e2e8cc-86f0-4020-bcf4-68a720b4d5e3", + "createdTime": "2021-01-18T13:52:34.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb5eaf4d-6880-420b-b16b-9f59453b41d7", + "createdTime": "2021-01-18T13:52:30.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23286deb-bc92-42f8-9e07-5844aac40f6c", + "createdTime": "2021-01-18T13:52:08.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8828c9e7-fdd0-40d0-beb0-adfb8ac8b2fb", + "createdTime": "2021-01-18T13:51:21.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53698aae-9d2e-4c30-a438-ee37bcce8101", + "createdTime": "2021-01-18T13:51:12.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ffcd3c7-5964-422e-a173-712ddeb56dd4", + "createdTime": "2021-01-18T13:49:12.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f6d04bf-0ca4-4044-82be-49b224814f31", + "createdTime": "2021-01-18T09:14:55.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c784ab00-25b7-43aa-8983-8baec5725eac", + "createdTime": "2021-01-18T09:14:54.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed68bdf-5137-4c5f-9ebd-dd399f9fbecc", + "createdTime": "2021-01-18T09:14:54.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5199b0b3-38c1-45c6-ad91-a4f987ec1d9e", + "createdTime": "2021-01-18T09:14:53.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb73c8fc-aba8-43f4-b166-24b0b342012f", + "createdTime": "2021-01-18T09:11:06.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8705feb0-2eef-42cb-a11a-6e84db470088", + "createdTime": "2021-01-18T09:11:06.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdc048b-e7db-48e0-85d6-b58f9331fa1b", + "createdTime": "2021-01-18T09:11:05.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47d57fb3-beea-4927-87f2-cc786900b3f6", + "createdTime": "2021-01-18T09:11:04.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6de583b7-d744-42c9-a95f-18373f17e69c", + "createdTime": "2021-01-18T09:03:31.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "df968310-5768-4bc4-8dd7-fa25b12b35b5", + "createdTime": "2021-01-18T09:03:30.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0d6526a4-93ad-46f8-a5ce-d4c04284a0eb", + "createdTime": "2021-01-18T09:03:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6d0c2aa7-e6c0-4b43-8a0a-0ed5f881b602", + "createdTime": "2021-01-18T09:03:28.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "677dbba1-72e6-4588-bd29-7c47e4653edc", + "createdTime": "2021-01-18T08:59:33.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e0d199a-c8f1-4326-9681-05d43fe47e72", + "createdTime": "2021-01-18T08:59:32.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1c1d49a-7ccd-4423-b2ef-d6a9636f5b8e", + "createdTime": "2021-01-18T08:59:31.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8d3a1709-2e09-4360-804c-23c9b4ce377c", + "createdTime": "2021-01-18T08:59:30.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5517ff8-10ad-47eb-8fe6-2ba530d81f70", + "createdTime": "2021-01-18T08:46:02.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be8aeae6-7f0f-44f8-a4f9-f6acdbdac860", + "createdTime": "2021-01-18T08:46:01.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "228bf853-674f-4d16-9b4b-a570063993e3", + "createdTime": "2021-01-18T08:46:01.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f3fcda7-ed32-4b32-8e05-29d541378220", + "createdTime": "2021-01-18T08:46:00.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea88d538-9e1c-4924-929a-c53100df4206", + "createdTime": "2021-01-18T08:23:29.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25e2a34b-ac95-459c-bb8f-a64c70f60097", + "createdTime": "2021-01-18T08:30:27.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb886c9d-b5aa-4f9c-b783-578409ab5f64", + "createdTime": "2021-01-18T08:34:25.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "627aafa8-bda8-4625-ac59-31509ce0c770", + "createdTime": "2021-01-18T08:34:24.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1efc463-668a-49e9-99a6-0cec894843e1", + "createdTime": "2021-01-18T08:34:23.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8f363d7-eebe-4885-aea9-e9166d8dc177", + "createdTime": "2021-01-18T08:34:22.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed0f68f1-9e13-48ee-952d-9ddc03b27399", + "createdTime": "2021-01-18T08:30:26.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e9c5050e-a428-4310-8794-9d53690a69bc", + "createdTime": "2021-01-18T08:30:25.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37ed9442-ff91-4d11-abcf-f87ab6a2e30a", + "createdTime": "2021-01-18T08:30:24.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47cff8a8-e64a-4dec-93b0-7dda05cee693", + "createdTime": "2021-01-18T08:23:29.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ecdd2489-ae25-4e10-84ee-c9798d76728a", + "createdTime": "2021-01-18T08:23:28.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e3f8e935-4c5a-4dfb-a50f-93c2ebaa660e", + "createdTime": "2021-01-18T08:23:28.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35b63a75-6650-44f0-addb-560a613dd3e3", + "createdTime": "2021-01-18T08:20:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3d35f2e-291e-40f0-b592-1c5229d6026e", + "createdTime": "2021-01-18T08:20:08.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29bbcc1b-1762-459d-adfc-910d1cda2a52", + "createdTime": "2021-01-18T08:20:07.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fb1b6a20-723a-45ea-ab84-3381dc6b5c53", + "createdTime": "2021-01-18T08:20:07.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2322f66d-6b84-4b1f-9b1e-09bf91588e49", + "createdTime": "2021-01-15T22:48:03.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "34039686-a399-49ac-997e-1ac8b1b94a0d", + "createdTime": "2021-01-15T22:48:02.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "609bda38-1b68-4c7b-a1e3-3d1784b9c449", + "createdTime": "2021-01-15T22:48:02.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3a00b1fd-c0c3-4d09-b3e3-4bbba74d1e48", + "createdTime": "2021-01-15T22:48:01.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "48b4e84a-18bd-4ca3-8b0d-995776a4ea0a", + "createdTime": "2021-01-15T22:48:01.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "76faffa1-8e1f-4c12-861c-d5c3824eff3c", + "createdTime": "2021-01-15T22:48:01.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "152125f8-2bc3-4438-b75c-1ac2384c1caa", + "createdTime": "2021-01-15T22:48:00.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "30c56c19-6dd7-4616-aaf8-e23640ba2afe", + "createdTime": "2021-01-15T22:48:00.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7274c248-d35a-48cd-89e3-6befd9e81203", + "createdTime": "2021-01-15T22:48:00.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "45158b85-5a3e-4fdb-8dec-a6abeff4c49b", + "createdTime": "2021-01-15T22:47:59.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "229bd3b4-9e28-4972-aee3-c640b92cf481", + "createdTime": "2021-01-15T22:47:59.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1f64e0a9-0c5c-4ab4-bfd0-c7e8e9388e12", + "createdTime": "2021-01-15T22:47:58.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e0de04bc-bd2a-44d5-991d-2ee58b94fb62", + "createdTime": "2021-01-15T22:47:57.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f45de2d-abb7-4cfa-b4e5-c01f2b281c70", + "createdTime": "2021-01-15T22:47:57.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d72e4b9-0e98-4d7f-ae10-3077b19e0881", + "createdTime": "2021-01-15T22:47:56.725Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e11ec43-a324-4da6-8b06-1dc686ba13bf", + "createdTime": "2021-01-15T22:47:56.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d57bd594-b0cf-4d1b-8b49-8fd03b3239ab", + "createdTime": "2021-01-15T22:47:55.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "397d4b15-7bdd-489b-a06a-d876195d7220", + "createdTime": "2021-01-15T22:47:54.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4262b3c7-80fc-4b32-b4cd-ad6e7e666c3d", + "createdTime": "2021-01-15T22:47:54.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee93e2ef-f5e8-44e9-8e44-d171069ef989", + "createdTime": "2021-01-15T22:47:54.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "442bcfbc-74d3-46b2-9d06-0d9c0181bd4c", + "createdTime": "2021-01-15T22:47:53.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe6a74e5-ca30-4963-a9bf-27e7661b65d2", + "createdTime": "2021-01-15T22:47:52.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7da25cf-08a4-44f9-bdee-89e1515e9fed", + "createdTime": "2021-01-15T22:47:52.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1af594a3-8c12-4db4-8055-ee1a88fedd45", + "createdTime": "2021-01-15T22:47:51.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0386269a-594a-424d-8518-73c5d607dd07", + "createdTime": "2021-01-15T22:47:47.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e00afb46-54fd-4bb5-89b3-6d1b8b8729fe", + "createdTime": "2021-01-15T22:47:46.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "392289a1-45f2-4bb9-aca8-880ef5ef042c", + "createdTime": "2021-01-15T22:47:46.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a451c7bb-60c6-4c7b-b5f2-c631ec0bf9ac", + "createdTime": "2021-01-15T22:47:45.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1138b388-7541-4d92-9fde-b84c3064fe52", + "createdTime": "2021-01-15T22:47:45.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2c5014d1-e27d-478d-9cc1-b61c2ec62968", + "createdTime": "2021-01-15T22:47:44.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d7b511c-4864-49cb-a597-c46d5fb7f898", + "createdTime": "2021-01-15T22:47:41.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f036f2c9-2ccb-46c6-9c87-acec2b1afadb", + "createdTime": "2021-01-15T22:47:40.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e86da520-1142-49d0-8405-f2c0730011bd", + "createdTime": "2021-01-15T22:47:40.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5fab0592-45fb-466a-b865-7983ad8f084a", + "createdTime": "2021-01-15T22:47:39.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88727778-f4bd-4274-8715-49dcd54fbf88", + "createdTime": "2021-01-15T22:47:39.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "595d260f-840e-423e-92a4-eefc4aeeb52d", + "createdTime": "2021-01-15T22:47:38.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "201e8bac-b1cb-43d5-b6a3-e2438b009792", + "createdTime": "2021-01-15T22:47:32.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "e85c7dc2-0464-4e83-97e2-c8599776ce43", + "createdTime": "2021-01-15T22:47:32.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3786674-fa01-4df4-8c10-14244f7cab96", + "createdTime": "2021-01-15T22:47:31.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c1a8408-c23a-48f5-b4a1-bd99bedeb6a3", + "createdTime": "2021-01-15T22:47:31.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "30a58028-c501-45f8-9ac9-4a200bdd806d", + "createdTime": "2021-01-15T22:47:30.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "10cbf709-0298-4b76-85ef-c13c306f025a", + "createdTime": "2021-01-15T22:47:29.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "883d8fea-983b-42fb-8fe3-479917733af5", + "createdTime": "2021-01-15T22:47:26.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "692d1728-f52e-49be-be09-c8c7242b10b3", + "createdTime": "2021-01-15T22:47:26.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1cb5f785-3ad7-4206-a462-7807d73151e7", + "createdTime": "2021-01-15T22:47:25.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "467e33b1-8021-4ec4-a1c4-85bebcd84bca", + "createdTime": "2021-01-15T22:47:24.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "171a466b-67d1-479c-9de6-1b6518cf89e4", + "createdTime": "2021-01-15T22:47:24.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b862ac66-7563-4200-9eb1-5bafa15a54ca", + "createdTime": "2021-01-15T22:47:23.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b02cd29-5635-44f4-b569-f6d31f4dbd6f", + "createdTime": "2021-01-15T22:46:52.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1e261a38-a863-4ebf-b39b-d57bc5afaf36", + "createdTime": "2021-01-15T22:46:51.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4b7eba64-43e3-4baa-bc13-c608a197c955", + "createdTime": "2021-01-15T22:46:51.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6b13d336-f31b-4b2c-a08b-440ed8ac9389", + "createdTime": "2021-01-15T22:46:50.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e442a937-efe6-4a98-b9f1-9bd88bc21d45", + "createdTime": "2021-01-15T22:46:50.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e91cb59-4aa1-4e50-bc76-9f042cb2ca62", + "createdTime": "2021-01-15T22:46:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8ebc80f8-e193-4f8b-98e9-404a022ae87f", + "createdTime": "2021-01-15T22:46:48.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "afc70d81-a0e2-427e-b6bf-c1811b0b2c68", + "createdTime": "2021-01-15T22:46:47.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ed152-709f-4318-af69-abf429218c98", + "createdTime": "2021-01-15T22:46:47.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a46d9c7c-80ae-4bc6-b195-4f6341e365fc", + "createdTime": "2021-01-15T22:46:47.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd6fff20-7031-4efb-ba27-759b01a63dfd", + "createdTime": "2021-01-15T22:46:46.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8198d335-3d22-42ce-b24d-68bf75d93094", + "createdTime": "2021-01-15T22:46:46.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f5c230f1-3b66-4304-a9b4-8583b929cbc3", + "createdTime": "2021-01-15T22:46:45.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8e5bee3b-a5e0-4be3-a4ae-e7e89df7c290", + "createdTime": "2021-01-15T22:46:45.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "facf5ab6-dd6c-41b0-919e-31be5d650064", + "createdTime": "2021-01-15T22:45:58.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4fc467-b67f-400a-b1fc-6df0063e37f2", + "createdTime": "2021-01-15T22:45:56.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b0c72571-34b7-4b63-bfa5-16a02145ac55", + "createdTime": "2021-01-15T22:45:56.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "93c2e442-c339-4234-af1b-22ef9ef34f1a", + "createdTime": "2021-01-15T22:45:56.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "11513dcb-a253-409c-958a-6f3612d2360c", + "createdTime": "2021-01-15T22:45:55.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "755c07f5-d983-4cd5-8678-ad136ab216c1", + "createdTime": "2021-01-15T22:45:55.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0e1aabb-7e7c-4f8a-bcf1-9b8a8a17a2c9", + "createdTime": "2021-01-15T22:45:54.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "00b428e7-0d0a-4e54-b7b5-d82a4eac95f2", + "createdTime": "2021-01-15T22:45:54.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a785b03-d927-4f3a-92d2-045b19e3f40d", + "createdTime": "2021-01-15T22:45:53.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "e8cd296b-3351-4956-b1e0-c1e195c1256f", + "createdTime": "2021-01-15T22:45:52.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03afa5d1-894a-491d-98de-a7e453371075", + "createdTime": "2021-01-15T22:43:49.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8a0973e5-1739-49cb-8dd9-651df370448d", + "createdTime": "2021-01-15T22:43:49.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fc2f2ac-5186-46de-88c6-795438472356", + "createdTime": "2021-01-15T22:43:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "300448ea-4a5e-4091-a9a3-5073fe1afb76", + "createdTime": "2021-01-15T22:43:47.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a2166a97-903e-44f6-a1de-7672052dd729", + "createdTime": "2021-01-15T22:43:46.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "da8714a6-73d6-447e-be24-c177a9d5ff2b", + "createdTime": "2021-01-15T22:43:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7356751a-a52c-47bc-9a1c-27b32fa92d56", + "createdTime": "2021-01-15T22:43:41.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5ec5129d-2fca-4c4e-9a43-7e07f13d67b2", + "createdTime": "2021-01-15T22:43:41.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33caf257-38c0-4d8f-b35f-ee0966410209", + "createdTime": "2021-01-15T22:43:40.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cf980399-a0e1-4014-b8e9-46955787c3a3", + "createdTime": "2021-01-15T22:43:39.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "36f4daea-e8d7-40ec-a27e-6fd42d36ee80", + "createdTime": "2021-01-15T22:43:38.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cc1c720c-3614-4d5b-9bf7-137df82e39be", + "createdTime": "2021-01-15T22:43:37.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f77f947-d93d-462d-99f6-50a1caddce23", + "createdTime": "2021-01-15T22:43:06.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "524cecb3-f84e-4475-8a75-dd1d3881ecd6", + "createdTime": "2021-01-15T22:43:05.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7a2adc0d-abeb-439d-b24c-b89681a03612", + "createdTime": "2021-01-15T22:43:04.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a7ccf72-6719-47bc-8921-78a0be67226a", + "createdTime": "2021-01-15T22:43:03.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9dcce235-49f1-45aa-8e3d-28f0ccaa9e6f", + "createdTime": "2021-01-15T22:43:02.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec024541-1804-4a80-8252-30bb0f8fcfda", + "createdTime": "2021-01-15T22:42:56.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b5fa1e9-589b-4bb1-9a7a-8779d131d3a0", + "createdTime": "2021-01-15T22:42:52.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5a913dd1-5f68-41b2-b99d-5696cd297950", + "createdTime": "2021-01-15T22:42:51.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4a11b61c-77cc-4cf0-98e1-64c55bb4d89b", + "createdTime": "2021-01-15T22:42:50.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1f5f4aaf-360a-4ce5-a232-5396c2cc170c", + "createdTime": "2021-01-15T22:42:49.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4b392d2-f500-4cd4-8d81-d64a541d9ea0", + "createdTime": "2021-01-15T22:42:47.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ec98072a-bcde-43ba-a2da-ad4faf2ade08", + "createdTime": "2021-01-15T22:42:46.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a47c29-8419-4cfb-bcca-d7a9e2e4c88d", + "createdTime": "2021-01-15T22:40:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b176878f-b1f1-4994-b854-8efe96c0a014", + "createdTime": "2021-01-15T22:40:10.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8facb3f8-1794-4161-8ae7-139cb2c78859", + "createdTime": "2021-01-15T22:40:07.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d23d2352-b69c-469c-9eea-032152d2bd32", + "createdTime": "2021-01-15T22:39:55.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6437ec39-7689-4a43-9436-201f816a664e", + "createdTime": "2021-01-15T22:39:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1827f012-1895-47d5-b1f5-c5a4a8eeb379", + "createdTime": "2021-01-15T22:39:27.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f960e154-81c6-42ae-9074-9afc8ba21b2e", + "createdTime": "2021-01-15T22:36:16.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2b2d6a2-911e-46f5-860b-72a55792c2e5", + "createdTime": "2021-01-15T22:35:55.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee2cc2ad-aee9-4674-bd68-958d08b0a047", + "createdTime": "2021-01-15T22:27:56.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6527cedf-82be-49e1-8ab4-c94e4bc66686", + "createdTime": "2021-01-15T22:29:53.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "192e0c44-92bf-4745-9b16-a10648bad0fa", + "createdTime": "2021-01-15T22:29:51.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d95d2873-54ef-43e0-ab1c-720f405ce7f8", + "createdTime": "2021-01-15T22:27:49.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6889ba40-0beb-4810-8767-2b9636576321", + "createdTime": "2021-01-15T22:29:46.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ce582de-eda2-4327-a684-bfaa5df2d42b", + "createdTime": "2021-01-15T22:29:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d613855d-9fc6-49af-b760-0f6ac8092b12", + "createdTime": "2021-01-15T22:27:39.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cf01a009-dea2-459f-8f5d-db73829c5736", + "createdTime": "2021-01-15T22:27:32.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8bfd1ed0-32a1-40e0-afac-8ae53f8d67b8", + "createdTime": "2021-01-15T22:30:30.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ecf94ca1-3fb5-4a19-b150-ee4a6effc4cd", + "createdTime": "2021-01-15T22:30:23.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "088877ba-9607-466a-ace8-94af26579ac5", + "createdTime": "2021-01-15T22:27:17.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "da4f898f-73c4-4d01-82ac-f667d38f0450", + "createdTime": "2021-01-15T22:30:29.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12c4d1d1-2ff2-4483-971b-a8ddc825bf0a", + "createdTime": "2021-01-15T22:30:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f2e912c-bff8-43e7-a2ce-ea50f34a3bbb", + "createdTime": "2021-01-15T22:30:28.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4c36e3f7-410e-49ae-b62d-b1a06dce1c29", + "createdTime": "2021-01-15T22:30:28.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "204a1558-506d-474b-a24b-1c16742c46c8", + "createdTime": "2021-01-15T22:30:27.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1f8f335-469c-49f3-b839-f226bb1571bb", + "createdTime": "2021-01-15T22:30:22.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2869a7ac-5a54-4fbb-a478-0ebd0fbaf2ae", + "createdTime": "2021-01-15T22:30:22.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ecfbe245-0791-4263-b5fb-1fad5048a316", + "createdTime": "2021-01-15T22:30:21.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "52b0d652-9193-4ee8-ae59-94484906cf99", + "createdTime": "2021-01-15T22:30:21.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b0d411b-c23e-4eee-8d68-24b320996e96", + "createdTime": "2021-01-15T22:30:20.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4816673e-58a3-4a84-957f-288a102c647c", + "createdTime": "2021-01-15T22:29:52.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a652f3dc-5643-42b1-8a23-d7565d2c6484", + "createdTime": "2021-01-15T22:29:51.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a3fe2677-d098-49e8-b4dc-f5ee5bd36f7e", + "createdTime": "2021-01-15T22:29:51.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "32b4c722-6ebd-442d-b7cf-c907d8694448", + "createdTime": "2021-01-15T22:29:50.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f7475f9-fadc-4008-87af-890e07991126", + "createdTime": "2021-01-15T22:29:50.753Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "87f7236a-a2c6-4ce0-925e-8c42ab011d84", + "createdTime": "2021-01-15T22:29:50.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f01d9c72-ee19-4057-aa2e-3ed53be42d0e", + "createdTime": "2021-01-15T22:29:50.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aa99d3da-2a6a-4032-aab9-775485c83666", + "createdTime": "2021-01-15T22:29:49.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92f9c74b-3081-408f-b8f0-3c1d11493af8", + "createdTime": "2021-01-15T22:29:48.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0ac083b8-d7ad-4f7a-a447-8104ad579344", + "createdTime": "2021-01-15T22:29:47.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d67a2ef-9aa3-4353-a12a-ddacf212ad0c", + "createdTime": "2021-01-15T22:29:46.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a2e557-f9bd-488d-a1b1-cba2a7d4873c", + "createdTime": "2021-01-15T22:29:45.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8e9c66c4-3684-4075-a8c3-c0044fcdf526", + "createdTime": "2021-01-15T22:29:44.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f84f825b-125d-4327-9bc4-4fcdf67d14db", + "createdTime": "2021-01-15T22:29:44.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "167abeed-4e74-4e98-8d5c-b1010cd9661a", + "createdTime": "2021-01-15T22:29:43.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0f1d968a-64f3-457d-b29b-5a73751bd829", + "createdTime": "2021-01-15T22:29:43.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b601310-2243-4509-917f-c124890b8484", + "createdTime": "2021-01-15T22:29:42.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d4d694ab-d049-4bd5-bdab-ed400f970490", + "createdTime": "2021-01-15T22:29:42.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b8e582d5-74e4-41b1-9409-4e7b148b5d39", + "createdTime": "2021-01-15T22:29:41.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1df622c5-06fd-4f09-bf0c-cca9f5de8a94", + "createdTime": "2021-01-15T22:29:41.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce3dfb30-6715-44a3-8c1c-4676009d9d20", + "createdTime": "2021-01-15T22:27:55.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4c361221-42d7-4657-920a-4ce1aaf35708", + "createdTime": "2021-01-15T22:27:55.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c95260e8-0634-4940-9719-d8408a289106", + "createdTime": "2021-01-15T22:27:54.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f3830677-734d-422e-8c69-fd6cda51b7c6", + "createdTime": "2021-01-15T22:27:53.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9fc2bafb-57af-44a7-9db1-be78d9b2bd6e", + "createdTime": "2021-01-15T22:27:52.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f383d74-2218-48d5-a799-53d5ee17b2b7", + "createdTime": "2021-01-15T22:27:48.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7e7530fc-4231-40c2-bfc9-b5a04c7ff4d1", + "createdTime": "2021-01-15T22:27:47.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b40ea32e-33e2-4262-bbf8-993de0462aa4", + "createdTime": "2021-01-15T22:27:47.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4a61487-ce43-4778-9213-0f8111f1ca1e", + "createdTime": "2021-01-15T22:27:46.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f968dda-01fb-48ae-89d4-06d90de9579f", + "createdTime": "2021-01-15T22:27:45.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b439d1a-51a5-426a-96f3-e82533e7094d", + "createdTime": "2021-01-15T22:27:39.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "13956631-d901-44cd-9b90-e73b3e1eba4f", + "createdTime": "2021-01-15T22:27:38.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "153ffb2e-f51a-4782-9350-69ad968f3442", + "createdTime": "2021-01-15T22:27:37.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4305f5ba-800e-431e-b727-b35e02265fd0", + "createdTime": "2021-01-15T22:27:37.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15a94f3c-8a59-4136-8934-f2a2dea70541", + "createdTime": "2021-01-15T22:27:36.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23af3c7c-fcee-42c8-b083-d6449157eab1", + "createdTime": "2021-01-15T22:27:31.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b8e650fe-9e57-4f35-8da7-e851f127b85a", + "createdTime": "2021-01-15T22:27:30.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8fcc526a-8472-4f5f-b93b-a1126fe6658a", + "createdTime": "2021-01-15T22:27:30.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2c2456d8-8698-4b9f-b0f4-5bb46f8e9b31", + "createdTime": "2021-01-15T22:27:29.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "20555efd-a294-44e8-99f2-a75d437bee59", + "createdTime": "2021-01-15T22:27:28.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33b68261-4e8f-483a-b173-771773777292", + "createdTime": "2021-01-15T22:27:17.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e48c087-d880-4d71-a09b-1473d9eddfb7", + "createdTime": "2021-01-15T22:27:16.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e8895d6a-e48c-4359-834b-3ad70b31867c", + "createdTime": "2021-01-15T22:27:15.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d6c22672-6978-42b7-8260-04e69791fd62", + "createdTime": "2021-01-15T22:27:14.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "341eb9c6-f04f-45f1-86e8-474fa8c18824", + "createdTime": "2021-01-15T22:27:14.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d590e7b5-4193-400f-bf6d-ab148d1625ec", + "createdTime": "2021-01-15T22:27:10.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "744d82ed-ceb7-4941-93f5-80ec4e4eff78", + "createdTime": "2021-01-15T22:27:09.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e6b69137-7945-4e45-8baa-ef1f4fa2f6b2", + "createdTime": "2021-01-15T22:27:09.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "88838bca-732f-451e-8e09-5cd0554b8246", + "createdTime": "2021-01-15T22:27:08.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f120eb57-b097-4e6d-ba2f-9edea0845b74", + "createdTime": "2021-01-15T22:27:07.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee610d7f-ded0-4654-bcb2-d320b3bd13d8", + "createdTime": "2021-01-15T22:27:07.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f11260cd-a4ed-41a1-8f06-d3126ff5c5f3", + "createdTime": "2021-01-15T22:24:09.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "16f3a4c7-7877-410c-8411-3bda237af183", + "createdTime": "2021-01-15T22:24:09.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5323fc78-fcca-4a5b-89df-eef786f3ca7d", + "createdTime": "2021-01-15T22:24:08.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2bd4d0c-7e2d-429a-9df3-d49cc2c3b285", + "createdTime": "2021-01-15T22:24:07.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cec37f31-0301-412b-add2-d9cdf9f56de6", + "createdTime": "2021-01-15T22:24:07.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "52fd5e69-be1c-41d8-8e89-985bc13cdeec", + "createdTime": "2021-01-15T22:24:06.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1be3d46a-200b-4a80-ad22-4a445a94181a", + "createdTime": "2021-01-15T22:24:02.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bc21fa80-6a6b-4cd9-ba44-f3795dc0ef87", + "createdTime": "2021-01-15T22:24:01.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ef027498-bec1-4972-9766-eaa887467ffd", + "createdTime": "2021-01-15T22:24:01.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2f8a948-dcd2-487c-aed2-08417ac41bee", + "createdTime": "2021-01-15T22:24:00.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cbd48fd1-371f-4b24-9625-647bd4acc32e", + "createdTime": "2021-01-15T22:23:59.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8d2f3f80-e1ec-49f6-b6ff-1e52cca7129f", + "createdTime": "2021-01-15T22:23:59.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b966d731-8e42-4ac5-a4c9-b637bc64ed9f", + "createdTime": "2021-01-15T22:23:04.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "456afc45-fc42-43c8-9155-f5d02d7cb1db", + "createdTime": "2021-01-15T22:23:03.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "19b0d49d-4c33-45bb-b331-4a776b4dcbfc", + "createdTime": "2021-01-15T22:23:02.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea565676-2b18-4f1b-803e-5d73d9d5b5a8", + "createdTime": "2021-01-15T22:23:02.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d16afae9-dffa-449b-a150-937272d8bbde", + "createdTime": "2021-01-15T22:23:01.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8871ced3-ae2b-429f-ae6f-abe4c16e7f28", + "createdTime": "2021-01-15T22:23:00.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1b2f921-b034-4b3b-8cb9-ee1cc51b45c6", + "createdTime": "2021-01-15T22:22:57.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f005f466-1805-482e-9339-3f726b46feb2", + "createdTime": "2021-01-15T22:22:56.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "906634c0-67db-43c3-97da-7dc95757300d", + "createdTime": "2021-01-15T22:22:55.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f64adc53-d7b2-4826-84fd-f95a5c45fd36", + "createdTime": "2021-01-15T22:22:54.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ccb30ec-d4bb-4e8a-8f6e-f45509e42a8f", + "createdTime": "2021-01-15T22:22:53.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "41d0d1ba-ad70-4247-a535-a97bc8f8dc42", + "createdTime": "2021-01-15T22:22:52.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2b44dc7-4ff0-4932-8bb2-5cbc6fea7d65", + "createdTime": "2021-01-15T22:21:36.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78938f62-6d33-4589-be27-a7fe49d52509", + "createdTime": "2021-01-15T22:20:51.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9850f294-a5c5-444c-818b-5926bbeed74f", + "createdTime": "2021-01-15T22:20:21.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0218e43-ce9e-4e56-a92c-0bed28e57c69", + "createdTime": "2021-01-15T22:19:30.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "faafec77-0462-4df8-990b-bf52453a5372", + "createdTime": "2021-01-15T22:19:03.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2fdd1e1b-0098-4a56-aef6-012a8244c8da", + "createdTime": "2021-01-15T22:18:44.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "38488033-40c7-4227-b3a5-46661dd43527", + "createdTime": "2021-01-15T22:16:54.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30186b33-7d3e-4b83-8dbf-15fa56d006f4", + "createdTime": "2021-01-15T22:16:10.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50caab4c-4bd7-434b-a31f-e753ad4fc52f", + "createdTime": "2021-01-15T21:21:19.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "29379133-fd21-49c5-9c42-1cab4ffcc3aa", + "createdTime": "2021-01-15T21:21:15.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d181e8dc-9159-4a2f-b8ca-394a8674d2b9", + "createdTime": "2021-01-15T21:21:46.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9fc36bb1-8f73-4270-b258-d5eab1eb152a", + "createdTime": "2021-01-15T21:21:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6246631d-393f-4549-93f9-9a1d45fef618", + "createdTime": "2021-01-15T21:21:26.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "00205c92-3252-4d33-becb-cf8a3b1af284", + "createdTime": "2021-01-15T21:21:21.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6685c4b5-46ee-4f5d-86b9-40c2add4c02c", + "createdTime": "2021-01-15T21:21:20.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "07e7a179-30a4-4e74-bc62-0c228b9178dd", + "createdTime": "2021-01-15T21:21:45.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0fb52223-7d1f-4788-932a-e8f77e393aa3", + "createdTime": "2021-01-15T21:21:44.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b390c22c-a730-465b-a8b2-0950d15b0c1d", + "createdTime": "2021-01-15T21:21:44.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "59bb84cd-931c-47d4-b66d-55d2f4be0714", + "createdTime": "2021-01-15T21:21:43.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "213c7e14-714b-4431-802e-08436fa817e7", + "createdTime": "2021-01-15T21:21:42.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cf7383c-e00d-48a2-a5ac-13bf351feb46", + "createdTime": "2021-01-15T21:21:38.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "89b766c7-4b47-44eb-9055-eeb6cd92951f", + "createdTime": "2021-01-15T21:21:38.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "91d5d5aa-c826-4447-be14-90c3aeb9ab6a", + "createdTime": "2021-01-15T21:21:37.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2df737d5-7088-4fc2-a08b-d48036b68c07", + "createdTime": "2021-01-15T21:21:36.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "61288851-1522-4c0f-af1f-79083932281b", + "createdTime": "2021-01-15T21:21:35.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d133834b-2524-41f4-9e50-e0d1c46242bf", + "createdTime": "2021-01-15T21:21:25.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7833d544-41ed-4275-b297-bd2763c34543", + "createdTime": "2021-01-15T21:21:24.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "aedac735-2f33-4a61-a949-d7636ddd81c0", + "createdTime": "2021-01-15T21:21:23.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "72759eac-2fc7-4594-99e8-2a073cc812e4", + "createdTime": "2021-01-15T21:21:23.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6080385d-8c09-4d9a-9e13-ce05d6b508c8", + "createdTime": "2021-01-15T21:21:22.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58321663-6fc1-46bc-86b0-2ff9f521ff2c", + "createdTime": "2021-01-15T21:21:20.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa64d1bc-2298-4d6b-bd25-bc412b26db41", + "createdTime": "2021-01-15T21:21:20.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "faeb07c1-430a-410e-895e-56cc828b5080", + "createdTime": "2021-01-15T21:21:19.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4a9324aa-385d-4ef8-b0d3-9d56f9cf97ae", + "createdTime": "2021-01-15T21:21:19.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2781eac5-20d2-4441-82dd-95396ec4a835", + "createdTime": "2021-01-15T21:21:19.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6108b3d5-93ea-4913-9562-a13b7bd3cac0", + "createdTime": "2021-01-15T21:21:18.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1ae6dd9f-5714-46a3-9aad-507a8142c6e9", + "createdTime": "2021-01-15T21:21:18.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a5d87ba3-cd51-4a7a-8641-aeee6114da84", + "createdTime": "2021-01-15T21:21:18.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d7065af4-06d8-4bc0-9c40-39edbd820282", + "createdTime": "2021-01-15T21:21:18.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d229c2aa-079a-4dd4-ac59-18c2632fedb0", + "createdTime": "2021-01-15T21:21:17.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "38084e22-009f-4c8f-9555-0833054156a2", + "createdTime": "2021-01-15T21:21:17.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "32b38efb-268b-4a52-834e-90837664f7e9", + "createdTime": "2021-01-15T21:21:17.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad009ae3-38ce-4197-a58e-0bd850a29932", + "createdTime": "2021-01-15T21:21:16.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da5565cf-7771-4cdb-b3bd-903535f8e824", + "createdTime": "2021-01-15T21:21:16.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a71bae1b-90ea-4179-91bf-05a8e12e0ac0", + "createdTime": "2021-01-15T21:21:15.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2713b32c-0053-4a4b-b8ee-e0adfc8c7dfc", + "createdTime": "2021-01-15T21:21:14.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db14a0fb-4558-414e-be00-03efd3744d02", + "createdTime": "2021-01-15T21:21:14.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fd39b039-d113-4ce4-bf72-13c80b76826f", + "createdTime": "2021-01-15T21:21:13.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4ba8073-2e49-4dff-8c57-9cbd2a9491bb", + "createdTime": "2021-01-15T21:21:13.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "12359dc9-16ca-4480-92fa-027fdfe6a7ab", + "createdTime": "2021-01-15T21:21:12.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f7e269fa-c0ad-44cb-8562-d134c28075ed", + "createdTime": "2021-01-15T21:21:12.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1256b08c-5c14-45bf-ad3b-13543782db42", + "createdTime": "2021-01-15T21:21:12.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c9f0ef92-e896-44fa-905b-d4d258464f00", + "createdTime": "2021-01-15T21:21:12.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9801053c-1edc-4c1c-8f50-9849e20ef7c2", + "createdTime": "2021-01-15T21:21:11.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8dedfa33-261e-453b-ae73-fef418f31956", + "createdTime": "2021-01-15T21:21:10.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fa129d3d-f263-458e-b7b7-ee0f7a47c4f8", + "createdTime": "2021-01-15T21:21:10.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8750b36e-e0e8-4ed9-ae91-b5821a4f81f1", + "createdTime": "2021-01-15T21:20:47.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f57780b6-9eba-472e-adee-57841ea45391", + "createdTime": "2021-01-15T21:20:46.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7a34f1-a492-48dc-a99f-b1cc5808b350", + "createdTime": "2021-01-15T21:20:46.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f09c7ad8-92ca-46df-b208-035a7cd8c7ee", + "createdTime": "2021-01-15T21:20:45.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eb431d6c-0712-42ce-a7cb-c8b57d54dc01", + "createdTime": "2021-01-15T21:20:44.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5905ba12-8871-4cd9-aaa4-bfa3e6940d6c", + "createdTime": "2021-01-15T21:20:43.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f9e9129-3137-4f9c-96f0-7ae673c58192", + "createdTime": "2021-01-15T21:20:40.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2b522df8-5254-462d-92e1-638a30f55f39", + "createdTime": "2021-01-15T21:20:40.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "07878fa0-b79c-4f2a-8961-dd3b46fba923", + "createdTime": "2021-01-15T21:20:39.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "921af42d-a735-4289-b40a-e98905997f17", + "createdTime": "2021-01-15T21:20:38.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6490fdc-9408-4248-8fa3-7b4f1424f3d6", + "createdTime": "2021-01-15T21:20:38.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c3fcc851-2acb-42ca-bcd2-72251b61b115", + "createdTime": "2021-01-15T21:20:37.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a603d128-d58f-4ae2-ae73-89420c8e209a", + "createdTime": "2021-01-15T21:20:04.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ee729d6a-c31e-48ad-af1a-3c9f32db2123", + "createdTime": "2021-01-15T21:20:03.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0c6f6213-e21c-418e-83e5-3a81f090cf5a", + "createdTime": "2021-01-15T21:20:02.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2e7338aa-b7e6-4717-9c0e-8e5d5e2b98da", + "createdTime": "2021-01-15T21:20:01.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b99d3009-e6bc-4748-ba1d-7417b9bb8b49", + "createdTime": "2021-01-15T21:20:01.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a945e9dd-2d76-4db2-b27c-d3b2dfa6417e", + "createdTime": "2021-01-15T21:20:00.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4033a439-a1dc-475e-9b88-7e9818ad3660", + "createdTime": "2021-01-15T21:19:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a87351c9-9cdb-4660-a738-a2dbe490a876", + "createdTime": "2021-01-15T21:19:56.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d5a42124-674d-415a-bcc4-bcbb8df72f67", + "createdTime": "2021-01-15T21:19:56.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c74f78f-e3f5-4f00-aad2-9edca85f6b89", + "createdTime": "2021-01-15T21:19:55.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e5d3491d-9b8a-4d4a-a1ce-aaf1e70d88e8", + "createdTime": "2021-01-15T21:19:54.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ee116711-1149-4f6f-ae42-48f9e40255d8", + "createdTime": "2021-01-15T21:19:52.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "11cc6f69-08f2-4abd-8639-fc04887d92e3", + "createdTime": "2021-01-15T21:18:28.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c0a5d6b1-70c9-4f55-b580-a30c2b8327af", + "createdTime": "2021-01-15T21:18:28.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ea0c022b-fe16-4867-ad29-b4a3fcd9ae3f", + "createdTime": "2021-01-15T21:18:27.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6ec7d6c-e8ff-4fa9-99e5-e6178923e7e0", + "createdTime": "2021-01-15T21:18:26.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2552ba9d-65f0-42d7-b021-4063691a45b0", + "createdTime": "2021-01-15T21:18:25.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ce43bb6e-3770-4655-8ed2-08b6ef67162e", + "createdTime": "2021-01-15T21:18:24.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9369658e-9f25-431c-8eaa-3dffbe13417c", + "createdTime": "2021-01-15T21:18:21.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ab5444f0-d3d5-4160-ac42-6810a858944a", + "createdTime": "2021-01-15T21:18:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e33bc3ee-535b-4973-a905-b151bb6701c9", + "createdTime": "2021-01-15T21:18:20.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7665178b-4d28-4f19-af50-06f4b9bd7d2e", + "createdTime": "2021-01-15T21:18:19.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee21854a-71fc-4284-bca0-1e52e1f82aad", + "createdTime": "2021-01-15T21:18:19.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbb7b909-b563-43b4-b7c3-7cd130249ba5", + "createdTime": "2021-01-15T21:18:18.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "984448f7-6967-4412-a349-ef4e7216b3e2", + "createdTime": "2021-01-15T21:17:41.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8cba583-0b73-47dd-9e60-6f5963858867", + "createdTime": "2021-01-15T21:17:40.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "155b8778-06d4-45ca-bca0-df9502a1ba94", + "createdTime": "2021-01-15T21:17:40.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f35a8cc-4433-4d8a-bd78-466d14c9786b", + "createdTime": "2021-01-15T21:17:39.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e8e657b1-7564-4f20-b2e3-c6683285c105", + "createdTime": "2021-01-15T21:17:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6013748b-2de0-402d-a893-6682f07709d6", + "createdTime": "2021-01-15T21:17:36.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b75e0270-6d5a-462d-97a9-f70c0fbd6112", + "createdTime": "2021-01-15T21:17:32.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57cf32d7-0e7c-4fda-8091-0aabb9204253", + "createdTime": "2021-01-15T21:17:31.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e2b5724f-ab14-4cf8-84ae-d8a95a432b86", + "createdTime": "2021-01-15T21:17:31.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c1ee1aea-9778-479a-a695-0331fe1c56c7", + "createdTime": "2021-01-15T21:17:30.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b4c3a28-d50a-4a44-a9da-6705df9aa822", + "createdTime": "2021-01-15T21:17:29.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4012cc9e-2775-4b82-8eb5-cf7d6a516cb0", + "createdTime": "2021-01-15T21:17:28.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b0f7727-cc58-493e-ac3b-2faee1f53f08", + "createdTime": "2021-01-15T21:13:03.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1325c1f4-2727-4020-8684-5e9e485ceaf1", + "createdTime": "2021-01-15T21:11:45.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a7513e-0ca8-43fb-8107-c5a6b84f34e1", + "createdTime": "2021-01-15T21:11:42.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f237882d-0899-421e-91f4-d96e1a702e1b", + "createdTime": "2021-01-15T21:11:24.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "962cf525-7130-4de1-bf0f-655a27386ed7", + "createdTime": "2021-01-15T21:11:03.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28683162-0564-45c3-84d3-7c0a6609bb32", + "createdTime": "2021-01-15T21:09:58.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16ab0427-e896-4daa-ac71-e78b262825cf", + "createdTime": "2021-01-15T21:08:22.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6545eacc-6183-45f1-8a6a-733676abf556", + "createdTime": "2021-01-15T21:07:40.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b66f4a70-4a07-44e5-8934-e666eaf76f62", + "createdTime": "2021-01-15T21:01:41.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "646b420d-d5b3-41d7-a131-8ffcdb4bfe96", + "createdTime": "2021-01-15T21:01:41.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "36f404c6-da9a-45a8-ae0f-eb3265d55f54", + "createdTime": "2021-01-15T21:01:40.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e3d2bf09-6ee3-4bab-811d-08205c3a340b", + "createdTime": "2021-01-15T21:01:39.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7775a44a-09a9-4f37-9396-77ae57cdce96", + "createdTime": "2021-01-15T21:01:39.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3777a678-a302-40b1-8a0a-2c718d2ddb6b", + "createdTime": "2021-01-15T21:01:38.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e35dc22b-c2d5-4106-a37e-64d3bb37c197", + "createdTime": "2021-01-15T21:01:34.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "31606dbb-e032-410b-9d9c-2692b6adf9de", + "createdTime": "2021-01-15T21:01:34.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3febc422-77f0-4811-acfd-0cf1e063e13f", + "createdTime": "2021-01-15T21:01:33.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0594bdb7-06ee-4b7b-95e4-2f4f4eb6b065", + "createdTime": "2021-01-15T21:01:32.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c06d26d3-275d-4f12-9e18-1b67d7d1b179", + "createdTime": "2021-01-15T21:01:32.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "85c4165c-d2be-4059-b8c9-2ac3d782c21c", + "createdTime": "2021-01-15T21:01:31.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5ddf0a7-bf11-4e3b-a8b0-9459dd874f7a", + "createdTime": "2021-01-15T21:01:05.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b2ea45e0-8cd6-493c-9353-eefefcc49a9a", + "createdTime": "2021-01-15T21:01:04.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7322f64f-15fc-459c-8b0a-539b86d6c21f", + "createdTime": "2021-01-15T21:01:04.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "254414ac-d603-4f05-8507-64d7b09b8c56", + "createdTime": "2021-01-15T21:01:03.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a6451c0a-09b6-4dee-a475-8e95702829e7", + "createdTime": "2021-01-15T21:01:02.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3fe63789-9aa6-4807-91f0-a81aa3ca5157", + "createdTime": "2021-01-15T21:01:02.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96b372a3-8e0f-4569-a81a-23751716e0e3", + "createdTime": "2021-01-15T21:00:58.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ea9c48fd-88ce-4922-82c8-a12f73ed10e9", + "createdTime": "2021-01-15T21:00:58.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db63900a-be0c-409d-9301-e12bb95138e6", + "createdTime": "2021-01-15T21:00:57.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7609d759-67ca-427b-8437-0fbec9169f92", + "createdTime": "2021-01-15T21:00:57.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cfcac3cd-6fd1-424f-a49e-53453bb66528", + "createdTime": "2021-01-15T21:00:56.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "623d62ae-57e4-4ada-85d0-7464e7464c6e", + "createdTime": "2021-01-15T21:00:55.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba161c90-8d7e-4f5c-9ddb-ef1c3f9f1091", + "createdTime": "2021-01-15T21:00:40.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ed775661-0071-45b1-8782-b5fec6c45b18", + "createdTime": "2021-01-15T21:00:39.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6d93736-0243-4b03-baea-1bf9a0ce0ec5", + "createdTime": "2021-01-15T21:00:39.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "44cafa71-aa3c-4df9-8fba-8727c6561c1a", + "createdTime": "2021-01-15T21:00:38.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba74221e-dd32-4e5c-8dd0-a692a1db2a54", + "createdTime": "2021-01-15T21:00:37.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "dbfe8a84-17c0-4107-97f7-e1cf9759b8e1", + "createdTime": "2021-01-15T21:00:37.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0d72c31-5998-46de-a228-9fa0fbe2d17d", + "createdTime": "2021-01-15T21:00:33.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d716eb27-aae6-43d6-bf96-f3424304decc", + "createdTime": "2021-01-15T21:00:32.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "277ad9b9-2376-45d5-8bf1-4c23b79dcd68", + "createdTime": "2021-01-15T21:00:32.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "369af7b9-3cb8-498e-8590-fcad9c781a2b", + "createdTime": "2021-01-15T21:00:31.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba743cff-7e9d-4e6e-8dd1-f8f9ba9d0112", + "createdTime": "2021-01-15T21:00:30.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3294cf53-cc82-461c-be63-913c991e15a3", + "createdTime": "2021-01-15T21:00:30.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64e0a7e3-9ed4-4d90-b131-538553ede9d4", + "createdTime": "2021-01-15T21:00:14.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6c6e7070-96eb-4bd0-95ba-a3b3514af65f", + "createdTime": "2021-01-15T21:00:13.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7fc93be-01be-4f09-a3f2-b3fd56c99545", + "createdTime": "2021-01-15T21:00:13.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0979b8e2-b8c2-4c71-8791-6b035df222d4", + "createdTime": "2021-01-15T21:00:12.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ad1432fe-0bad-4764-b6d2-63aec3f4bc3c", + "createdTime": "2021-01-15T21:00:12.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "abc2c956-bb77-4795-ac00-6a7661e27851", + "createdTime": "2021-01-15T21:00:11.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d64d96a6-9a3c-43ff-9ecb-475f48a1c86f", + "createdTime": "2021-01-15T21:00:08.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "58fa266f-fc14-4cb0-bef3-b9e317c85228", + "createdTime": "2021-01-15T21:00:08.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7b91d4bf-5273-4069-8f86-1a8102fcfdd3", + "createdTime": "2021-01-15T21:00:08.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0a9382df-cd09-432f-88c9-6df9ceeeefa6", + "createdTime": "2021-01-15T21:00:07.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ca12e774-2b32-4f1e-b9c9-873838aba69c", + "createdTime": "2021-01-15T21:00:07.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3054833-6fea-4291-b7a1-b89731091f55", + "createdTime": "2021-01-15T21:00:07.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "664da0b3-3090-41d0-910f-81c511f9b4b2", + "createdTime": "2021-01-15T21:00:07.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2a2dc035-ef4a-45dc-ba4b-7dd49b14edf8", + "createdTime": "2021-01-15T21:00:06.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5e68476e-f4d0-4dc5-8b31-14b2793dfb65", + "createdTime": "2021-01-15T21:00:06.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cc89b87e-7f55-4ceb-b1b3-fbbf067705e6", + "createdTime": "2021-01-15T21:00:05.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2744844-ab16-4b12-8b61-b4489b11eee4", + "createdTime": "2021-01-15T21:00:05.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "05472e9f-77f5-45a9-aebe-c026e84b973f", + "createdTime": "2021-01-15T21:00:05.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cacccd4d-a0f1-44fa-88f6-6295534e5bec", + "createdTime": "2021-01-15T21:00:03.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0bb3c1c4-d603-4de3-87bc-c348ce4d1bb6", + "createdTime": "2021-01-15T21:00:02.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9763192f-777d-4cc1-aa9c-54c577f0db39", + "createdTime": "2021-01-15T21:00:02.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "78babee7-0eb7-45f5-9e06-f15d1a7342bb", + "createdTime": "2021-01-15T21:00:02.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "23daa9ad-e44d-476e-9346-5a2b6473becc", + "createdTime": "2021-01-15T21:00:01.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acdf2d5d-6b6e-45fe-ac75-23b46c5e52c2", + "createdTime": "2021-01-15T21:00:01.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9bfb6913-11b1-471e-a7ae-4a13d2edfb92", + "createdTime": "2021-01-15T21:00:01.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b27bafef-d7ff-4175-9711-3e96680eaa31", + "createdTime": "2021-01-15T21:00:01.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2b72bd2a-081f-4163-a4d1-c38bcc62ca83", + "createdTime": "2021-01-15T21:00:00.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "da4dd496-5bea-4ac6-b5a7-b0a6a707eebc", + "createdTime": "2021-01-15T21:00:00.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d8f62ab7-36a0-4a66-9991-1b738ca96007", + "createdTime": "2021-01-15T20:59:59.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3e386a1c-8fdf-4ff2-9103-5f05f34d69c8", + "createdTime": "2021-01-15T20:59:59.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3cabb89-d51f-4ee1-98f0-da3c5c47a6f2", + "createdTime": "2021-01-15T20:59:55.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b95cbeff-d386-4817-9213-61c2f80c012b", + "createdTime": "2021-01-15T20:59:54.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "17a68111-a06b-452d-a26a-dbc36e3cae6d", + "createdTime": "2021-01-15T20:59:53.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5f3789fe-e5d3-4ab7-a7f1-12ca8af43fc7", + "createdTime": "2021-01-15T20:59:52.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "22726465-67d7-414d-92af-56c4e906243b", + "createdTime": "2021-01-15T20:59:52.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8f1bc795-857a-4ff6-8382-1e52fd4bec38", + "createdTime": "2021-01-15T20:59:51.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b31ce7f9-f772-471c-94ce-acf416a83705", + "createdTime": "2021-01-15T20:57:01.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "cc5b5ea4-adcf-4d3e-b88e-88117573cfb3", + "createdTime": "2021-01-15T20:57:00.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "890f75bd-4652-442a-8408-d2ee2af8aa6c", + "createdTime": "2021-01-15T20:56:59.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "137969f3-350a-4e2a-9b85-86a706ed2655", + "createdTime": "2021-01-15T20:56:59.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "87a1781a-784b-48e2-bf40-1c557962bfe4", + "createdTime": "2021-01-15T20:56:58.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "140fc26d-eb47-4075-bd9a-999790b490ba", + "createdTime": "2021-01-15T20:56:57.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd5f831c-5b9f-4aea-adb3-44af20352a9b", + "createdTime": "2021-01-15T20:56:54.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "48296885-603b-4f99-8e77-b33360b86eca", + "createdTime": "2021-01-15T20:56:53.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "455ab152-2520-4b56-9834-96ef9e73d509", + "createdTime": "2021-01-15T20:56:52.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "439026f6-fedf-4960-a8c4-d46e51a9e025", + "createdTime": "2021-01-15T20:56:52.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c2c8b2d9-265b-4874-819d-8a75632fab5a", + "createdTime": "2021-01-15T20:56:51.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f46ad627-73ba-4d09-9080-5800bdfeca41", + "createdTime": "2021-01-15T20:56:51.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "184413cd-723b-48cf-be93-4648ab020bcd", + "createdTime": "2021-01-15T20:56:40.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3c62d529-1735-48f5-b898-222330bd9c9c", + "createdTime": "2021-01-15T20:56:40.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fc6eae13-4a8f-49a1-be6b-f86fcaccd07e", + "createdTime": "2021-01-15T20:56:39.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bbfee62f-80e9-4754-9772-e86602a0c2dc", + "createdTime": "2021-01-15T20:56:39.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0c2b0d1b-1eab-413b-b197-4e4d3ad88ea3", + "createdTime": "2021-01-15T20:56:38.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7b6f950e-cba0-4971-a720-d88280f0882c", + "createdTime": "2021-01-15T20:56:37.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "44f0947f-e777-446a-9681-7ae63d4c69ef", + "createdTime": "2021-01-15T20:56:33.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b8bd978c-9c6c-4def-abff-5ffb3f3de052", + "createdTime": "2021-01-15T20:56:32.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "db2b2f1d-ecf4-4a8d-a0a8-56445995b32f", + "createdTime": "2021-01-15T20:56:32.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ad33773c-d624-48f2-9164-1ed9157c250b", + "createdTime": "2021-01-15T20:56:31.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bab4f452-2ca4-491c-a89d-4563c3bcf5c0", + "createdTime": "2021-01-15T20:56:30.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4c0f3596-7fc6-4205-ada0-8f4e20da15e3", + "createdTime": "2021-01-15T20:56:30.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ec9dcca-3b86-4a44-bd74-6e8b66a9c7e3", + "createdTime": "2021-01-15T20:53:16.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "463eccb5-0b8c-4da1-842a-7d0c49a538b1", + "createdTime": "2021-01-15T20:52:54.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6f00969-f029-4e84-8d8e-e4c845ab7b12", + "createdTime": "2021-01-15T20:52:33.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1156199-c9ac-442e-a425-83ee7ebc8285", + "createdTime": "2021-01-15T20:52:28.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fb163fe7-6e22-499d-ab8e-fced5798aa4d", + "createdTime": "2021-01-15T20:52:23.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffe2606-d260-4b4a-a789-67882f9bec3e", + "createdTime": "2021-01-15T20:51:50.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17853ede-715e-44ac-9609-7cdbfff8d35f", + "createdTime": "2021-01-15T20:49:29.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28b6afba-9b6d-4e32-87fd-6bc5f3bf7e33", + "createdTime": "2021-01-15T20:49:00.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f9a88bc-1803-4a56-a0bf-e6242cd686f3", + "createdTime": "2021-01-15T20:43:47.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f073e44b-abb2-4475-b73a-3e7ea7f5d6b5", + "createdTime": "2021-01-15T20:43:47.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5ed06583-fed9-4d35-88ec-342ace3d8c77", + "createdTime": "2021-01-15T20:43:46.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b4590ed-b812-4325-a5e0-186e79be9f97", + "createdTime": "2021-01-15T20:43:46.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e4622b93-c462-4f92-abe6-11028a724408", + "createdTime": "2021-01-15T20:43:45.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a73ef12f-3d32-4005-abd3-0d22117a793e", + "createdTime": "2021-01-15T20:43:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a15930e-01cb-4fd6-b6c2-e5fbe3a9e4e8", + "createdTime": "2021-01-15T20:43:42.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3ab3b635-117a-49d1-9180-6e951f108d2a", + "createdTime": "2021-01-15T20:43:41.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5e0dccd6-9143-4f86-993f-e93982aa8188", + "createdTime": "2021-01-15T20:43:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95e967f2-32af-4cb3-b943-a7fc9cd48971", + "createdTime": "2021-01-15T20:43:40.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5a855f7a-b495-403c-ac80-3206be50c44b", + "createdTime": "2021-01-15T20:43:40.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8e5f3c2b-4094-40c1-9e23-a655c292f527", + "createdTime": "2021-01-15T20:43:39.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc68d3ac-907b-4af5-924f-ffb09205b003", + "createdTime": "2021-01-15T20:42:30.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "23ee8b52-1b77-4298-a22f-c9d6e23c042b", + "createdTime": "2021-01-15T20:42:29.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fa5f4df4-dcdb-4d28-8d5e-3fc20b23a884", + "createdTime": "2021-01-15T20:42:29.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "21487945-470a-41f6-b716-2d4590a77c3a", + "createdTime": "2021-01-15T20:42:28.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "963ff9a9-0c4f-4109-8094-66a09f07e43a", + "createdTime": "2021-01-15T20:42:28.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9c8f9e81-0806-4d78-b960-cb92a01ec4a1", + "createdTime": "2021-01-15T20:42:27.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c6efd48-027d-4a21-84a5-b83153e6fb69", + "createdTime": "2021-01-15T20:42:25.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6e719dbe-c4bf-4c63-91e3-f10a743641bd", + "createdTime": "2021-01-15T20:42:24.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "14925443-e703-4e75-a770-8ab7104a332e", + "createdTime": "2021-01-15T20:42:24.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33d58a77-f026-4d1a-a194-83d38fae4ade", + "createdTime": "2021-01-15T20:42:23.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0698d3a4-57ca-4af7-9fea-0483c11d5e1a", + "createdTime": "2021-01-15T20:42:23.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82c649ad-35f9-4794-9d14-bdaf75aec5c6", + "createdTime": "2021-01-15T20:42:22.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2943830a-3782-49b5-bd83-5cf7676848eb", + "createdTime": "2021-01-15T20:42:02.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22061768-0d66-48ca-b413-6b5f7437cefc", + "createdTime": "2021-01-15T20:42:01.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02abcfb3-0d4a-4c06-9fb4-b7fd76eb6324", + "createdTime": "2021-01-15T20:42:01.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "520fa2f8-4c9f-4cfa-bde6-070289f51f3d", + "createdTime": "2021-01-15T20:42:00.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "17bbc28a-b38b-4bc0-9207-c92baf06cd98", + "createdTime": "2021-01-15T20:42:00.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "15e6c9ef-5f78-4e16-aa3e-b90afc41aae9", + "createdTime": "2021-01-15T20:41:59.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06906aa7-12ce-49cf-b07d-6920ce8a7f52", + "createdTime": "2021-01-15T20:41:57.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "84cf7fe8-0adc-49df-afb4-cc186efbd76c", + "createdTime": "2021-01-15T20:41:57.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "76fb6744-4033-4312-a9e4-980fe8a74c2a", + "createdTime": "2021-01-15T20:41:56.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d57c9954-a9a3-4e67-b72f-513345f7dde7", + "createdTime": "2021-01-15T20:41:56.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98228d58-8a56-4211-ad01-fed869bb2298", + "createdTime": "2021-01-15T20:41:55.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "79aa11d7-c364-44ee-a595-12f66c222faf", + "createdTime": "2021-01-15T20:41:55.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53bf2296-f0f8-42ba-a327-68cefa66d25b", + "createdTime": "2021-01-15T20:41:26.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "21653add-a9e1-411c-a436-26d5dbb0c52f", + "createdTime": "2021-01-15T20:41:26.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6d94fc2e-ba18-4c0b-86b4-1b0a12788e0e", + "createdTime": "2021-01-15T20:41:25.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "792413b8-987a-4eed-b821-0ed23b75cad6", + "createdTime": "2021-01-15T20:41:24.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fb89322f-67f2-4cc0-a38b-e7818755b39a", + "createdTime": "2021-01-15T20:41:24.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0f5ac3cd-4f75-493f-ad81-19f7837169ba", + "createdTime": "2021-01-15T20:41:23.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d046b962-3054-42c0-b775-69b61253b020", + "createdTime": "2021-01-15T20:41:23.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cf9f4ab-70fc-46a1-93bf-97bb5eddeab7", + "createdTime": "2021-01-15T20:41:22.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a283146-0f2e-4817-9cfb-917dac5c32c4", + "createdTime": "2021-01-15T20:41:22.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "067d7e08-f058-456b-a572-22ee2246335b", + "createdTime": "2021-01-15T20:41:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8c6c4d1e-bb0d-4470-91bf-6ff3298f4fed", + "createdTime": "2021-01-15T20:41:21.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a13be996-4723-415f-a898-649a58d3fd0c", + "createdTime": "2021-01-15T20:41:21.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0534b514-3469-4961-9acd-4f88431e4c99", + "createdTime": "2021-01-15T20:41:21.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4846ac06-81d4-4bb4-b0c7-ca2999fd295f", + "createdTime": "2021-01-15T20:41:20.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e11e4cbf-4a55-4bf4-a791-94aee68d7989", + "createdTime": "2021-01-15T20:41:20.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce7226f1-f3d9-480a-a577-1414bf84b350", + "createdTime": "2021-01-15T20:41:20.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7809639b-de9d-4d9f-a77d-0670961459cb", + "createdTime": "2021-01-15T20:41:19.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cde4d7f1-73fa-4e9c-9d65-d187426933f2", + "createdTime": "2021-01-15T20:41:18.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d4a37c5-5d31-4f7f-9a1f-5fdf35f64655", + "createdTime": "2021-01-15T20:41:17.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c4d9135-f938-4290-8e5c-89dcda52f862", + "createdTime": "2021-01-15T20:41:16.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d1118ef5-5d78-4835-b53b-8aca67494ea6", + "createdTime": "2021-01-15T20:41:15.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0dd5ab3-1cd4-4509-bd9b-647e0e1adb51", + "createdTime": "2021-01-15T20:41:14.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "76803282-c4ff-4ba9-a430-baba5ee48982", + "createdTime": "2021-01-15T20:41:14.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b50b78c1-d486-4fdd-87dc-8ed10a0bcefd", + "createdTime": "2021-01-15T20:41:13.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b369ac47-5aa7-4716-bcf0-879c65eebafa", + "createdTime": "2021-01-15T20:41:13.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7c46382c-ad7c-4196-8c2d-37a97f28ee8c", + "createdTime": "2021-01-15T20:41:12.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b684da94-b6d4-4b06-8176-9852a19250e6", + "createdTime": "2021-01-15T20:41:12.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f91e380e-e281-4d8e-9a51-519be5c75cfe", + "createdTime": "2021-01-15T20:41:11.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa56a3c5-b18e-4db5-9437-b32493f6ae60", + "createdTime": "2021-01-15T20:41:10.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2e4356ed-6890-407b-95b1-04674b2ce9ec", + "createdTime": "2021-01-15T20:41:10.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b05e3fee-ceee-40f3-8e32-eb986e41c248", + "createdTime": "2021-01-15T20:41:06.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f42a21b0-b25d-4ecf-8eae-dfc622d2d6b5", + "createdTime": "2021-01-15T20:41:06.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ac1d0ff8-84a9-4550-a9ee-09669e6a94ba", + "createdTime": "2021-01-15T20:41:05.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95a178d8-5464-4b63-8826-cc664c281ad3", + "createdTime": "2021-01-15T20:41:04.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f099c281-d864-4839-ad45-f9628811744d", + "createdTime": "2021-01-15T20:41:03.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "49b6808b-edca-483d-8b16-be1060f1e68c", + "createdTime": "2021-01-15T20:41:02.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39b23c65-3d68-4f09-8c4e-9f6ca1dafd32", + "createdTime": "2021-01-15T20:38:38.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "c197421c-e2e9-498e-907f-7dc68b0e5470", + "createdTime": "2021-01-15T20:38:37.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ace42c9c-c6b0-404d-9acb-7ca4bbb0d0f5", + "createdTime": "2021-01-15T20:38:36.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0e8632c7-c07a-4774-bcfd-ed20e4482143", + "createdTime": "2021-01-15T20:38:35.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8167c5a2-3d6d-4f23-be47-2178493d10a7", + "createdTime": "2021-01-15T20:38:35.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "91faf3f3-3da5-4077-9bb8-ef47cdc0e85e", + "createdTime": "2021-01-15T20:38:34.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62714bf9-ebee-4acb-a2d0-5b0625eec10d", + "createdTime": "2021-01-15T20:38:30.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a0caa006-0e77-4bd5-a63a-38a4f5cc4bb7", + "createdTime": "2021-01-15T20:38:29.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f0a5736f-20bd-4829-a337-3530045bd75b", + "createdTime": "2021-01-15T20:38:29.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "85dc2c9d-ac42-426a-b398-09e5b3f84db3", + "createdTime": "2021-01-15T20:38:28.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b96ef778-dca8-4b35-8d97-e8b4496b2aee", + "createdTime": "2021-01-15T20:38:27.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "48ca47f9-d97c-4581-80f2-f183c97c0910", + "createdTime": "2021-01-15T20:38:26.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba66e806-8daa-4cdd-a100-2e6447647e48", + "createdTime": "2021-01-15T20:38:01.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f58339ce-b1da-4cea-9a33-abd81f4b157d", + "createdTime": "2021-01-15T20:38:00.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "12a81aff-14a4-46be-9d77-a313ba0a0c83", + "createdTime": "2021-01-15T20:38:00.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "246e4492-dca5-4d95-a84c-0efea4d335f0", + "createdTime": "2021-01-15T20:37:59.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "83cdd240-deed-4579-b309-608132ff83ae", + "createdTime": "2021-01-15T20:37:58.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b0af4ef4-845e-4ce3-aa2d-00e32676b905", + "createdTime": "2021-01-15T20:37:58.277Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4b97c7cd-5c53-4e04-9d04-7775f6bd8118", + "createdTime": "2021-01-15T20:37:54.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "beedec76-5b0f-4687-bafd-315114bc97be", + "createdTime": "2021-01-15T20:37:54.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4d4011a4-02b6-4bf3-849d-f579b12d1377", + "createdTime": "2021-01-15T20:37:53.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9d815056-ccce-4446-aaf8-83112e1f4e78", + "createdTime": "2021-01-15T20:37:52.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "242a70ff-f220-41ca-aba0-8a2861a5a0d0", + "createdTime": "2021-01-15T20:37:52.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "b9912ceb-1543-498f-907b-11e02288ca1b", + "createdTime": "2021-01-15T20:37:51.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d3243cb-93e9-4f49-b110-c01af7edae60", + "createdTime": "2021-01-15T20:37:35.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a8d1b0f-97ce-471d-95f1-8887f7038bcc", + "createdTime": "2021-01-15T20:35:03.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fcb4876-f324-4e0b-a9c0-543a13fd7bdf", + "createdTime": "2021-01-15T20:34:36.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "640024be-5957-493f-8cda-2fb7c397f3ca", + "createdTime": "2021-01-15T20:33:43.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b386acb1-9b07-4192-878a-66833befc234", + "createdTime": "2021-01-15T20:32:56.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d5370165-a9d6-4f0a-9cfd-cfe70ae9a9a1", + "createdTime": "2021-01-15T20:32:54.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75215d40-feea-4488-b032-e76d171af34a", + "createdTime": "2021-01-15T20:30:19.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2dce8de-7790-498d-a5b3-af5046fbd989", + "createdTime": "2021-01-15T20:30:11.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59b38131-8405-4179-9c99-d40e57fb9c6f", + "createdTime": "2021-01-15T20:12:03.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "028e386d-2ecd-4470-8927-e7036e5916f0", + "createdTime": "2021-01-15T20:19:02.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "59804b52-a97e-42cb-a8b7-078e0af90b43", + "createdTime": "2021-01-15T20:19:56.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e146df2-28b1-49c0-af05-1b4a09e597ef", + "createdTime": "2021-01-15T20:19:56.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57e01edf-3e6c-457c-b68b-c4031ed626a4", + "createdTime": "2021-01-15T20:19:55.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "860ff57e-2d16-4a10-a913-d970293603da", + "createdTime": "2021-01-15T20:19:55.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0af1ea52-23b5-453e-8c85-696f6ec1f97d", + "createdTime": "2021-01-15T20:11:52.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "179ddc4e-e6b3-4023-be2a-dd4313204ca5", + "createdTime": "2021-01-15T20:12:44.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "65cf3795-191b-4491-8a29-28358d53bc37", + "createdTime": "2021-01-15T20:13:29.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7cd923b-9867-4f8e-acd3-2f2a67f6928f", + "createdTime": "2021-01-15T20:19:02.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9edfa2ae-0fe2-445c-a97f-36c5c058dc6a", + "createdTime": "2021-01-15T20:19:01.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f85d023e-61d9-4a94-a1e7-ec3afb7f2d82", + "createdTime": "2021-01-15T20:19:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ecc0371-9eb7-48b2-aa45-875aa3e7072e", + "createdTime": "2021-01-15T20:13:29.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "464f7688-c448-434a-b913-322daf41dd20", + "createdTime": "2021-01-15T20:13:28.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "de7686d9-6dfa-4c04-aaa7-5224c174fcbe", + "createdTime": "2021-01-15T20:13:28.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b9b0bfc-7586-4514-918a-54932e1b8396", + "createdTime": "2021-01-15T20:12:46.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d286241c-0e0d-451a-ae38-32390c4c8222", + "createdTime": "2021-01-15T20:12:43.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d1ac0223-d82b-4a25-bf2c-0768d8fba703", + "createdTime": "2021-01-15T20:12:42.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a09d0429-93a8-4e13-b715-eed74edac0eb", + "createdTime": "2021-01-15T20:12:03.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "898c088e-ae1b-4661-91a6-ef178006aa21", + "createdTime": "2021-01-15T20:12:02.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "25d92240-de48-4cf9-9dd3-ea1934c0ef51", + "createdTime": "2021-01-15T20:12:02.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f649883-3888-4cb4-8bba-23cd2e8e8a59", + "createdTime": "2021-01-15T20:11:52.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b7b1cb7b-7469-4c96-bad1-0da264e7c0b8", + "createdTime": "2021-01-15T20:11:51.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0661310c-4e73-41e3-80ff-b09f3d19d5ca", + "createdTime": "2021-01-15T20:11:51.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab269a33-e9eb-4135-90b8-4e88822e0294", + "createdTime": "2021-01-15T20:11:40.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "400930e5-7f7b-4327-9f88-c4f899cd8aa7", + "createdTime": "2021-01-15T20:11:39.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ddfd0502-3f12-43b5-8879-8005d6965e8f", + "createdTime": "2021-01-15T20:11:39.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5816f8d3-584e-4a46-a78e-dbde22379abd", + "createdTime": "2021-01-15T20:11:38.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c4c087c-a028-4ad8-9628-e129522bb68d", + "createdTime": "2021-01-15T19:06:34.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7a95a58d-4734-4318-993b-70c52f916285", + "createdTime": "2021-01-15T19:06:23.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "87133b15-78ed-42b6-bfcb-4deff7a019ab", + "createdTime": "2021-01-15T19:03:19.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30b746b4-39a9-4307-b372-9bac88a8bf46", + "createdTime": "2021-01-15T19:06:18.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "22d4d197-27eb-461e-86c8-8ad393c50419", + "createdTime": "2021-01-15T19:06:11.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae8018c-211f-4044-bda5-8c27166e6db0", + "createdTime": "2021-01-15T19:06:05.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1c62f191-f549-40ef-a528-268315ce5534", + "createdTime": "2021-01-15T19:06:02.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "a3a8cee5-6477-4528-aefc-e8a3e6a602f1", + "createdTime": "2021-01-15T19:05:58.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1aa7940c-d00d-4b01-a23b-b06458c94048", + "createdTime": "2021-01-15T19:06:57.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3f1feb65-628b-46b1-84c4-13158673eb5d", + "createdTime": "2021-01-15T19:05:57.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8fd4ef8d-a469-4709-9996-8fa5080ee894", + "createdTime": "2021-01-15T19:05:53.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1145c8da-8a96-4beb-af6b-ea38ac50bd91", + "createdTime": "2021-01-15T19:05:52.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bae392bc-4ac3-47ca-b134-aa870e8d2bae", + "createdTime": "2021-01-15T19:06:51.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1ab8443f-4f55-4775-9980-c880fe08d8d5", + "createdTime": "2021-01-15T19:05:47.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "5be16cf0-fe27-416e-8972-d6888d7518b1", + "createdTime": "2021-01-15T19:06:40.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "36be5df5-faf3-4a64-841f-2f2fce7cf33d", + "createdTime": "2021-01-15T19:06:57.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803244b8-a76a-489c-8281-d5f81e19fc3a", + "createdTime": "2021-01-15T19:06:56.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3f4f0747-17d8-4ca0-9924-de94e5a272a2", + "createdTime": "2021-01-15T19:06:55.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7e26c14-f6e9-40ec-9c02-e29c5243c56b", + "createdTime": "2021-01-15T19:06:55.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "47eb3cb8-8d23-4523-9db5-6f4fb04f18f8", + "createdTime": "2021-01-15T19:06:54.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9705723-d4de-43ad-a0e5-2024320d37a9", + "createdTime": "2021-01-15T19:06:50.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5abfa6f-470d-4abb-ad9d-fa4ff90f7e92", + "createdTime": "2021-01-15T19:06:49.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d8b1cf6c-61ad-4ec1-8064-9839954d5b76", + "createdTime": "2021-01-15T19:06:49.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c4fd830e-4162-48ed-9089-01be2196f2d9", + "createdTime": "2021-01-15T19:06:48.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c7b7d389-5d11-405e-8137-32f5bc5f9ecd", + "createdTime": "2021-01-15T19:06:48.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17c8e446-f41d-4b5f-b9bc-c6ba5a426533", + "createdTime": "2021-01-15T19:06:40.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "010b9216-1d70-47c6-ac0e-45a11ff4b598", + "createdTime": "2021-01-15T19:06:39.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4cf355b8-a82e-4599-891c-eb7bd8238b7d", + "createdTime": "2021-01-15T19:06:39.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5b4fbaed-cda9-43d2-8dc5-94ab866e86a9", + "createdTime": "2021-01-15T19:06:38.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7f67935b-0099-4a59-abe3-404a01d98203", + "createdTime": "2021-01-15T19:06:37.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5d56ebb-59ad-4829-95f8-0b44a3735d87", + "createdTime": "2021-01-15T19:06:33.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c9d6abc-ad8e-4cd9-8297-56a07555ec92", + "createdTime": "2021-01-15T19:06:33.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1665b5d-058f-4d5d-9841-fee3bc57ec12", + "createdTime": "2021-01-15T19:06:32.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bcbbf1d2-0968-4d9b-8033-5136aacdd8ad", + "createdTime": "2021-01-15T19:06:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0481f298-2f78-41e5-85e7-b496b6aac908", + "createdTime": "2021-01-15T19:06:31.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c64673c5-d61a-486c-aec0-8c93acdcb4f0", + "createdTime": "2021-01-15T19:06:22.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5373eaf6-d07d-4d6d-ada3-05dc43b0e951", + "createdTime": "2021-01-15T19:06:22.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "947cbf4f-941d-430d-ae68-717da4798dd4", + "createdTime": "2021-01-15T19:06:21.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "de943b97-52e9-49c0-822d-7ef6cbb19581", + "createdTime": "2021-01-15T19:06:21.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4710b8f2-c582-4a2b-a997-c5bbcc61481a", + "createdTime": "2021-01-15T19:06:20.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d318eafd-883e-4abd-a4a2-dfd1cb23c652", + "createdTime": "2021-01-15T19:06:18.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c696cf50-9e2e-48d8-ad61-7a6e26ed4e4d", + "createdTime": "2021-01-15T19:06:17.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "812db430-f5f0-4296-bf13-3b52b152de21", + "createdTime": "2021-01-15T19:06:17.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "14dee22f-e899-49b2-8835-781f87a2df54", + "createdTime": "2021-01-15T19:06:16.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7d2b0a9b-31eb-4045-b9bc-9bcb1ecc773d", + "createdTime": "2021-01-15T19:06:16.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "505ed816-5801-4d70-881c-94a842f60560", + "createdTime": "2021-01-15T19:06:10.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c223bc12-f85e-4f30-a5cb-0d681221ce97", + "createdTime": "2021-01-15T19:06:10.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "47ed1ecd-d71a-4f9b-a572-3fb8654e74d3", + "createdTime": "2021-01-15T19:06:09.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b3fdb13a-e469-49dc-9a3a-e242f659d8bd", + "createdTime": "2021-01-15T19:06:09.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "7ac2ed59-1fca-4522-a378-7bb82248535e", + "createdTime": "2021-01-15T19:06:08.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "08e84b17-97aa-424b-a204-4581885b97a8", + "createdTime": "2021-01-15T19:06:04.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c70809cc-d4bd-481f-b950-2d7a65503e3c", + "createdTime": "2021-01-15T19:06:03.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "fe153242-bfa7-4499-8f1d-f6f145391368", + "createdTime": "2021-01-15T19:06:03.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "49977dde-7cae-49de-a160-6f5ebe5e8bef", + "createdTime": "2021-01-15T19:06:02.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8349e2d7-2fe7-4c59-9f6c-271bea0f2a0e", + "createdTime": "2021-01-15T19:06:02.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5f05bd7-d667-4d59-bfc6-a9716bd02020", + "createdTime": "2021-01-15T19:06:01.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2bca6d53-e8a5-44cb-ba46-93262b247502", + "createdTime": "2021-01-15T19:06:01.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "70f9f2e4-b3a8-48b7-8dd5-64e0aed36278", + "createdTime": "2021-01-15T19:06:00.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "10de23c3-a12d-406e-a55c-f77f3327f2df", + "createdTime": "2021-01-15T19:06:00.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "902bb3b8-71c2-443d-9954-85715b0930ce", + "createdTime": "2021-01-15T19:05:59.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b4c740f3-8761-4fce-bb13-386c4ad768ed", + "createdTime": "2021-01-15T19:05:57.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c51483db-dfab-4799-8015-8edadf446fc2", + "createdTime": "2021-01-15T19:05:57.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d309153b-69e2-4ec4-a1a9-0b59bb83a15e", + "createdTime": "2021-01-15T19:05:56.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "673a7297-4a24-4044-b8eb-9bbcd929b6ff", + "createdTime": "2021-01-15T19:05:56.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ef6d6ff1-1691-48d8-b729-eb6216912e88", + "createdTime": "2021-01-15T19:05:56.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "ab3017a8-dba7-4326-a2e1-d373ea7d8dc4", + "createdTime": "2021-01-15T19:05:55.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ddde456b-8fc9-447a-a12b-204c29b562fe", + "createdTime": "2021-01-15T19:05:55.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "15581959-d7cb-4fff-8e99-6ed4da88b8d1", + "createdTime": "2021-01-15T19:05:55.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c627704f-15b0-4390-ba55-233b70cd81e5", + "createdTime": "2021-01-15T19:05:54.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d7db8aef-3366-41c2-a749-32cac63e11a7", + "createdTime": "2021-01-15T19:05:54.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f8208cb-c754-48f6-8d41-7dfa61160378", + "createdTime": "2021-01-15T19:05:53.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "032e152e-6f4e-4870-9d6f-842ece3c8511", + "createdTime": "2021-01-15T19:05:52.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3d6974d2-ed3d-4496-9187-b7e6b4c8cacb", + "createdTime": "2021-01-15T19:05:52.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0cad8e40-89ab-43c4-a5ff-1b1afcf5baaf", + "createdTime": "2021-01-15T19:05:51.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c70becba-f005-4e39-880e-eaae756edf96", + "createdTime": "2021-01-15T19:05:51.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33cf2dd8-d495-43f4-81be-d84c4be1ef26", + "createdTime": "2021-01-15T19:05:51.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "8c219499-653f-4319-addd-96e11c9b6fab", + "createdTime": "2021-01-15T19:05:51.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "068cad20-4f87-44d7-a21c-42b24703f799", + "createdTime": "2021-01-15T19:05:50.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f65de20-3ed6-4429-a363-ce399f245359", + "createdTime": "2021-01-15T19:05:50.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "6a8ad5e4-85a2-4d6e-94df-041ff42c3f31", + "createdTime": "2021-01-15T19:05:49.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06768d22-86a8-4e35-8601-b58cb3eb4c49", + "createdTime": "2021-01-15T19:05:46.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "72d05582-49db-46d5-b5a2-27d4c65721ce", + "createdTime": "2021-01-15T19:05:45.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "afcb69b2-038c-4f9f-90c1-e072bd8299ae", + "createdTime": "2021-01-15T19:05:45.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ebc93928-9e4c-4772-b9ed-8bb8146d1bec", + "createdTime": "2021-01-15T19:05:44.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5cbd48e8-822a-4798-8a39-6ab835c63b8e", + "createdTime": "2021-01-15T19:05:43.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d41bfcc-103a-4778-95ce-9cb241472816", + "createdTime": "2021-01-15T19:03:18.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "768714bf-7165-4e7c-82b3-834113795848", + "createdTime": "2021-01-15T19:03:17.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b19867b8-40e9-460e-838a-19a2017ba09f", + "createdTime": "2021-01-15T19:03:16.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d429a387-30d5-4981-b9c3-dd0ed614b3ff", + "createdTime": "2021-01-15T19:03:16.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4cedd1d5-0d33-4755-81d6-5dd684b0aa76", + "createdTime": "2021-01-15T19:03:15.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05f76a20-1aaa-4e33-bf0b-db0812828692", + "createdTime": "2021-01-15T19:03:12.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "bf4ef598-cf98-42cd-8bf4-a88fe601d5f1", + "createdTime": "2021-01-15T19:03:12.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c2b1991f-b609-40c6-bc72-5341e94f0b8d", + "createdTime": "2021-01-15T19:03:11.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "316483c7-ec2a-47ef-a4f4-f4ddb64c70db", + "createdTime": "2021-01-15T19:03:11.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0618aa4-ead2-4725-add1-a6a96acb7f4b", + "createdTime": "2021-01-15T19:03:10.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "aff9fda2-e93e-4f9c-969b-472dec12f3e8", + "createdTime": "2021-01-15T19:03:09.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1b6226f-ea48-4a24-9833-ee8c1b636d19", + "createdTime": "2021-01-15T18:56:17.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e414d98d-6234-4520-ab51-26e268584017", + "createdTime": "2021-01-15T18:55:11.022Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "486ba0a3-27a5-4d86-8a8e-c5c66383c0e8", + "createdTime": "2021-01-15T18:55:09.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea608bfa-8310-467c-a81e-c6df9f48a260", + "createdTime": "2021-01-15T18:54:43.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "844c8911-74b1-4312-b3ba-6ece98dd76f2", + "createdTime": "2021-01-15T18:54:42.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "52082120-dded-43e9-93bd-5a407b641bb8", + "createdTime": "2021-01-15T18:54:35.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baf86bdc-c48c-4b57-a8b7-63d32a0b6ed2", + "createdTime": "2021-01-15T18:53:49.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88a66ce9-124a-49fe-b9ff-6d0ba5f73535", + "createdTime": "2021-01-15T18:52:00.075Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7afcc970-66fa-4643-b8d0-b0729be06861", + "createdTime": "2021-01-15T13:58:35.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d126569a-1dfb-4bf6-adf0-04841eeac30e", + "createdTime": "2021-01-15T13:59:33.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "372eaafe-2ed8-4ae0-bdb9-16d38a168047", + "createdTime": "2021-01-15T13:58:30.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1d1d8d67-46b8-41a7-992e-3f62c5fdc37c", + "createdTime": "2021-01-15T13:59:28.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "461ba9fa-f394-4daf-a183-78860203c0e8", + "createdTime": "2021-01-15T14:01:27.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f55a14bb-1d04-47d0-90c2-7170619c5c9a", + "createdTime": "2021-01-15T13:59:26.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "de2cab3d-61dd-4172-a48a-37d809c1af30", + "createdTime": "2021-01-15T14:01:22.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "01e2f04c-5427-43a6-a23d-980ecb2546cd", + "createdTime": "2021-01-15T13:59:20.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "24884131-7770-4e83-8bf2-bdc4c87043a7", + "createdTime": "2021-01-15T14:01:18.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3bc227f5-307e-47dd-a9f9-1768f2bb5ed5", + "createdTime": "2021-01-15T14:01:12.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b3081549-8c02-4f32-8ce9-06fb93236fe5", + "createdTime": "2021-01-15T14:01:51.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2ed32d6d-6dc3-4c23-aa50-6bdd7584c08e", + "createdTime": "2021-01-15T14:01:50.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e031d433-c1ed-44f8-a9cf-ab17aff19ada", + "createdTime": "2021-01-15T14:01:50.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5497d5c5-1c1a-4274-a4de-a97f91f8f2ae", + "createdTime": "2021-01-15T14:01:49.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3004d827-45d4-49d4-827c-aa8770896ace", + "createdTime": "2021-01-15T14:01:48.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d9777865-a8fb-4816-a1ce-c1980169d1a1", + "createdTime": "2021-01-15T14:01:48.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e994c408-4491-4913-9ecf-b738cfab38d7", + "createdTime": "2021-01-15T13:55:44.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "30084d3f-8ad2-41ef-b37f-9c1e6e4f199b", + "createdTime": "2021-01-15T14:01:45.46Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d77dc8e9-75e9-42ef-97eb-09c0109dc0d8", + "createdTime": "2021-01-15T14:01:44.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "75a9bbd4-7857-45cd-b8fd-62df63413115", + "createdTime": "2021-01-15T14:01:44.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "03020e70-d9fe-4b4c-af7b-b4b5a9bb0088", + "createdTime": "2021-01-15T14:01:43.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c03ffda6-036a-4072-9132-9a421e32a502", + "createdTime": "2021-01-15T14:01:43.094Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "39204ed8-d633-4d9a-b629-18e805525358", + "createdTime": "2021-01-15T14:01:42.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f73608e2-7806-4c87-9f9a-8b859985b749", + "createdTime": "2021-01-15T14:01:27.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f4275696-e0a4-444a-86ba-cd865d67974f", + "createdTime": "2021-01-15T14:01:26.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "713282c5-2474-4dab-95d5-444f98d43f9f", + "createdTime": "2021-01-15T14:01:26.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9ab4ed0b-f1cc-4021-8e85-1f3d65410faf", + "createdTime": "2021-01-15T14:01:25.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c2bc97da-0719-45b3-bcd7-daaceca3fcb2", + "createdTime": "2021-01-15T14:01:25.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df34e81d-abc2-4f1c-baa9-084c9223f841", + "createdTime": "2021-01-15T14:01:22.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a1b25096-8a4f-4213-83df-e21fdc053f90", + "createdTime": "2021-01-15T14:01:21.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "472709b7-e8f2-46fe-ba0c-ca38d43914d1", + "createdTime": "2021-01-15T14:01:21.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6f49e787-646c-4561-b572-2a9f5c150694", + "createdTime": "2021-01-15T14:01:20.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe597f73-0473-47b9-8faa-e25caf515631", + "createdTime": "2021-01-15T14:01:19.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "992dc115-064e-4829-824a-bf48fa705761", + "createdTime": "2021-01-15T14:01:18.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9f01017b-4436-4307-8ac7-7918cd80a759", + "createdTime": "2021-01-15T14:01:17.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a6315eef-78a0-4faf-8de3-dfc851a4d2d1", + "createdTime": "2021-01-15T14:01:17.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a479045-16c0-4efe-a5d9-41dd9a5b655b", + "createdTime": "2021-01-15T14:01:16.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "81461f56-f804-4f4a-9f8d-0652664e3d3e", + "createdTime": "2021-01-15T14:01:15.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "972e6721-9d44-4acb-be2b-cd518d55bafc", + "createdTime": "2021-01-15T14:01:12.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6e5e42ba-d59c-4b0b-af18-86080e22a1b0", + "createdTime": "2021-01-15T14:01:11.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "483b54bd-e877-4132-b704-f7ebaff1efcb", + "createdTime": "2021-01-15T14:01:11.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7ac7ddef-7cb2-49f7-a7da-59a0441187cc", + "createdTime": "2021-01-15T14:01:10.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d340b3ec-03a4-4fa5-8bee-5a844d2eb018", + "createdTime": "2021-01-15T14:01:10.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f8e5435-e190-40a9-a8da-aac65891bf0f", + "createdTime": "2021-01-15T13:59:32.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "887dc187-6b31-4137-9a71-9bbb1a37cda5", + "createdTime": "2021-01-15T13:59:32.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3b800d43-ee6e-47f5-a858-5b107c4c0200", + "createdTime": "2021-01-15T13:59:32.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "3122ecbc-04d4-4c94-8929-9a5a3db208c9", + "createdTime": "2021-01-15T13:59:31.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "5308d8ab-1913-43fa-94c9-202cf7ec7994", + "createdTime": "2021-01-15T13:59:30.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "078c1ec1-3c56-464d-b419-5f0b1b95d5ed", + "createdTime": "2021-01-15T13:59:28.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a471b7f8-adb2-4461-90bd-4d7c95f203f5", + "createdTime": "2021-01-15T13:59:27.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "dd1dcfe2-385e-435e-a9c3-0de08088851a", + "createdTime": "2021-01-15T13:59:26.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee7346ac-2e2a-4448-a59a-6172b4a8c70b", + "createdTime": "2021-01-15T13:59:26.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "08706471-76f3-43e3-bce0-7469bf713c13", + "createdTime": "2021-01-15T13:59:25.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55b7100e-a6cb-4189-ad4c-7bc101a6d405", + "createdTime": "2021-01-15T13:59:25.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f67abce7-ca22-4ebb-9ff2-4ee1bc528103", + "createdTime": "2021-01-15T13:59:24.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "0d7d7d0d-90ad-475f-ae5b-670f42786598", + "createdTime": "2021-01-15T13:59:24.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "01c8a7a8-73de-42a0-8aa3-77864f78201a", + "createdTime": "2021-01-15T13:59:23.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "faec74f0-8e87-485d-bc25-10397e079f06", + "createdTime": "2021-01-15T13:59:23.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62d6418e-58e8-430b-96f6-c3f04258410a", + "createdTime": "2021-01-15T13:59:19.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1bb1794e-7ebc-4c74-a0d5-d1b3d7b707b0", + "createdTime": "2021-01-15T13:59:19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "98662986-ba2d-40c8-b66f-8b25c18d64f2", + "createdTime": "2021-01-15T13:59:18.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "125de8c2-e79e-4c76-8528-857e7ff13381", + "createdTime": "2021-01-15T13:59:17.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cafa95b3-affd-43f7-bfa4-cc8af5a16b9f", + "createdTime": "2021-01-15T13:59:17.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edee361a-5bde-4f4c-8d2e-a340940896b1", + "createdTime": "2021-01-15T13:58:35.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bfa40072-02df-4bd4-b3cb-9d57f56a5fa3", + "createdTime": "2021-01-15T13:58:34.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b422bb6f-0c49-4090-b3de-6246d4408c56", + "createdTime": "2021-01-15T13:58:33.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8bb314c8-79bd-4eab-b4ec-85fed81c5a5c", + "createdTime": "2021-01-15T13:58:33.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "0517bb42-3d63-4eaf-9516-f8f3e22ac952", + "createdTime": "2021-01-15T13:58:32.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "feb1103a-8958-446b-b716-44639f20e5a8", + "createdTime": "2021-01-15T13:58:29.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6964f1ec-fb25-46e3-9cc2-40b3f2b63108", + "createdTime": "2021-01-15T13:58:28.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bb38434a-729f-4f41-82b4-342b139c26b5", + "createdTime": "2021-01-15T13:58:28.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0e96ec5b-40d8-47a5-a6b7-4cc25d6a6633", + "createdTime": "2021-01-15T13:58:27.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2a31d68d-32b5-477f-9b13-2cdcb5597ca5", + "createdTime": "2021-01-15T13:58:27.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "359496af-a317-4983-aa9e-90d7684dbfdb", + "createdTime": "2021-01-15T13:55:43.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e1adde86-8c4b-47d8-bc48-35e806c8efde", + "createdTime": "2021-01-15T13:55:43.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "54879c77-06cf-4744-8494-03611a865825", + "createdTime": "2021-01-15T13:55:42.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "093eb28b-7da0-4d0c-80a4-e5323638799c", + "createdTime": "2021-01-15T13:55:41.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f319ee84-bcf1-49f9-bf35-505ff132ab63", + "createdTime": "2021-01-15T13:55:41.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30812f05-e147-4afe-98c7-bf342878b76c", + "createdTime": "2021-01-15T13:55:37.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f941b35d-a45b-4c45-9d48-7b61629bb44c", + "createdTime": "2021-01-15T13:55:36.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "783604df-8899-4b5e-86ee-dae65aefbf22", + "createdTime": "2021-01-15T13:55:36.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "716ec527-44e1-4f9a-8683-10a53f05199a", + "createdTime": "2021-01-15T13:55:35.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0f22f498-11ab-412f-925f-03516d2226af", + "createdTime": "2021-01-15T13:55:34.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "30be140a-9b01-4cdc-adab-2a44ee58e3c3", + "createdTime": "2021-01-15T13:55:33.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b964cf9c-b015-473c-98ea-c39775f65265", + "createdTime": "2021-01-15T13:53:39.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d25cbf7-c115-47c1-9064-cf05b877051a", + "createdTime": "2021-01-15T13:53:19.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c3cce8b-54cc-4b5c-b57b-2041993fd6fd", + "createdTime": "2021-01-15T13:52:57.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a1d7427-0fc0-4d25-bcab-2b6a65775851", + "createdTime": "2021-01-15T13:50:56.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12a050da-da72-4be5-92e6-f7e18b87dd77", + "createdTime": "2021-01-15T13:50:20.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d955a69-6f82-4829-bf39-62e9ea23ca2f", + "createdTime": "2021-01-15T13:49:30.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dfa50be7-83c6-461a-81a2-f67fba5269c4", + "createdTime": "2021-01-15T13:48:15.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2806c530-6588-4adf-90aa-c0b6a8299d9b", + "createdTime": "2021-01-15T09:16:03.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad3485fa-5175-41e5-bf75-340e23d2822c", + "createdTime": "2021-01-15T09:16:02.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8f5e0d70-d41f-4e5b-ad22-31448740153c", + "createdTime": "2021-01-15T09:16:02.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "93ebc5c7-c3bc-4618-917c-caf70b7f2f95", + "createdTime": "2021-01-15T09:16:01.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57062d89-11ce-4e5f-ae29-1f3e0639f913", + "createdTime": "2021-01-15T09:12:12.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ab65de02-9fc6-4d96-a1e0-3d638b3dae95", + "createdTime": "2021-01-15T09:12:11.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c1ead2b-7b18-4874-8394-3abd2a9f3d01", + "createdTime": "2021-01-15T09:12:10.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f60a05a-bd50-4d71-b9cc-3d86431175b2", + "createdTime": "2021-01-15T09:12:10.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbfe8d6e-bec0-4acd-8a4f-565af8542a7f", + "createdTime": "2021-01-15T09:05:21.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ce861e50-8f3e-48ff-baca-550ec25a4084", + "createdTime": "2021-01-15T09:05:20.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b39c9fdd-1fc2-419e-8e6a-1a44259ee231", + "createdTime": "2021-01-15T09:05:20.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "98faee57-f828-492f-a9e3-50d7171bda64", + "createdTime": "2021-01-15T09:05:19.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eef8960c-521b-494e-91a6-632b3ecd9a55", + "createdTime": "2021-01-15T09:01:23.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41575b95-c21d-49bc-8998-50ee8cbe9d4d", + "createdTime": "2021-01-15T09:01:22.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35f66bb3-cbb7-47d8-baa3-d9764f7d0007", + "createdTime": "2021-01-15T09:01:21.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb79d206-5494-414c-b502-f17d82951e4b", + "createdTime": "2021-01-15T09:01:21.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ecf14bec-6682-4f78-969d-8b411fe9405c", + "createdTime": "2021-01-15T08:47:08.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "338e416b-11a1-4c6b-9310-3cc7b8956f66", + "createdTime": "2021-01-15T08:47:07.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "547d037c-34b0-487c-8632-530ed5183254", + "createdTime": "2021-01-15T08:47:07.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf5ed8ab-660d-4244-9022-40454c9ac66b", + "createdTime": "2021-01-15T08:47:06.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "226cc709-4df3-4c5b-a0ed-944d97cfd547", + "createdTime": "2021-01-15T08:41:30.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "62c31ae0-c267-41c0-849e-75980efa1ff3", + "createdTime": "2021-01-15T08:41:29.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d16a90c-9fac-41b7-a1b2-55af5b7a08b6", + "createdTime": "2021-01-15T08:41:28.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f395e21-5466-4a51-ab59-399aceb19839", + "createdTime": "2021-01-15T08:41:27.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b904950-c3ba-42f9-85cb-2468105f7d34", + "createdTime": "2021-01-15T08:24:01.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "61601be6-8e0c-4239-acb5-58cc5d47834c", + "createdTime": "2021-01-15T08:35:50.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5ea9b864-168b-4b1a-8bd3-2b49548e0f64", + "createdTime": "2021-01-15T08:40:41.034Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c1b7dcd-386a-4c8f-8b08-d3a71dd6684d", + "createdTime": "2021-01-15T08:40:40.119Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0446b1b5-d167-40fc-855a-7891b22e49ee", + "createdTime": "2021-01-15T08:40:39.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60e79bd4-e261-4b1b-9548-333dfb086978", + "createdTime": "2021-01-15T08:40:38.252Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9aabab7-d67b-4706-b124-7d2ee007a896", + "createdTime": "2021-01-15T08:32:04.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f71639d0-aa4e-4b1b-87ea-7f8debdcaf69", + "createdTime": "2021-01-15T08:35:49.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05109794-faf4-4c22-b271-51cb094f5596", + "createdTime": "2021-01-15T08:35:49.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96f07200-0d18-4b16-bb8d-3c086f31e501", + "createdTime": "2021-01-15T08:35:48.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65fef6d2-aaf4-4068-aba3-10a6d0f3d005", + "createdTime": "2021-01-15T08:32:04.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bed71064-bb8d-49c4-b894-ddf4a0eb7874", + "createdTime": "2021-01-15T08:32:03.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b902bc0-7d64-45b2-8e0f-5bbdccb8085d", + "createdTime": "2021-01-15T08:32:03.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5be25d9-6310-4432-b7dd-692027ba640c", + "createdTime": "2021-01-15T08:24:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2f4f7a03-22d1-4a45-8413-0c8f2b920366", + "createdTime": "2021-01-15T08:24:00.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0ea1667e-732d-403b-b7ad-d6f225aa6e97", + "createdTime": "2021-01-15T08:23:59.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4dddd10d-4144-4ea2-997f-c7f686900b8c", + "createdTime": "2021-01-15T08:20:31.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8ca0e293-5a34-4566-aa04-fb179477888e", + "createdTime": "2021-01-15T08:20:30.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "efca5a2d-76c3-405e-accc-08e4c68af66a", + "createdTime": "2021-01-15T08:20:30.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a89c5bf-479b-4e53-9382-e620066bbb71", + "createdTime": "2021-01-15T08:20:28.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c689a13-fd26-46e0-90c6-daf733ae7f37", + "createdTime": "2021-01-15T06:18:44.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bd06452d-a327-4aaf-b852-95a97b923e76", + "createdTime": "2021-01-15T06:18:46.101Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6c70d3cb-f56c-48b3-ad66-f2e8f1016573", + "createdTime": "2021-01-15T06:18:43.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ede4f21b-5bc7-48db-8367-87f42092a7a3", + "createdTime": "2021-01-15T06:18:42.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee0b241d-53dc-4fd9-be6a-a9931fc25e07", + "createdTime": "2021-01-15T06:17:47.476Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cc4f455e-b40c-4326-877e-19f47256d982", + "createdTime": "2021-01-15T06:17:46.563Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "068818fb-b2c7-4e60-9971-192d6f9c2e2f", + "createdTime": "2021-01-15T06:17:45.557Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "66c19bc5-9cd8-45fe-8dbd-bd48e5ed475f", + "createdTime": "2021-01-15T06:17:43.784Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d9e8a99-99ba-4bd2-8629-62ceb1bfd574", + "createdTime": "2021-01-15T00:52:24.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "eaa06967-d778-44fd-8482-2384327b8f83", + "createdTime": "2021-01-15T00:52:23.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "363e3643-169d-42c1-a9f2-d881d3682556", + "createdTime": "2021-01-15T00:52:23.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "10764e2a-e81e-4589-acc3-a797ff1a20a7", + "createdTime": "2021-01-15T00:52:22.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "77f6c86a-084e-45c7-ba71-33f3aae3ea3f", + "createdTime": "2021-01-15T00:52:21.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "ed854604-2add-4b03-9c62-702eda237d99", + "createdTime": "2021-01-15T00:52:21.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c6b2892e-6450-40f5-9344-7cbf947b4c9d", + "createdTime": "2021-01-15T00:52:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3402ea17-278e-40e1-8c04-d99508503fd7", + "createdTime": "2021-01-15T00:52:17.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4dbc1f44-0f52-44d0-97c8-b3b0481ca3e6", + "createdTime": "2021-01-15T00:52:17.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "96dba8d3-d9c7-4487-9716-c8eb08143678", + "createdTime": "2021-01-15T00:52:16.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "63c1a356-955a-4b45-bfff-c33c42cf36f3", + "createdTime": "2021-01-15T00:52:16.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "267cfaba-c2a1-4329-a72f-7b86482e6c0d", + "createdTime": "2021-01-15T00:52:15.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8223bd6-811e-40a6-afd1-f50c2c3f6361", + "createdTime": "2021-01-15T00:46:44.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0fcbcf72-d4b4-4a43-a2e9-d466d46c5435", + "createdTime": "2021-01-15T00:35:07.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "8d6383b7-756e-4a4b-8ea9-7b3c39c713d3", + "createdTime": "2021-01-15T00:33:49.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7abb7266-cb13-4826-a6cf-e1d4e7d0adc5", + "createdTime": "2021-01-15T00:36:48.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d959f662-f73d-4f26-a3f8-7b1f7f9d08da", + "createdTime": "2021-01-15T00:34:47.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "91a41921-128c-44df-83cf-b8ab1c888747", + "createdTime": "2021-01-15T00:32:44.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "7dffc1ad-b156-4445-b71f-c2b438335ded", + "createdTime": "2021-01-15T00:33:42.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1edd897b-1448-4bd5-bb14-a4c2a79fd82e", + "createdTime": "2021-01-15T00:36:41.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d2869702-0d77-42b2-91d2-32ec51af91b4", + "createdTime": "2021-01-15T00:34:40.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1b84f3ca-01ee-4a0a-8d1b-1094bd761b74", + "createdTime": "2021-01-15T00:35:29.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "2c205f6e-02ce-4e25-8994-2ec87522b49e", + "createdTime": "2021-01-15T00:35:22.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f7e9e1c2-fe14-460a-8b0e-79103431067e", + "createdTime": "2021-01-15T00:37:19.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d8152dad-6430-45ee-9f48-0b3ad552c0e5", + "createdTime": "2021-01-15T00:37:19.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2bb30a8-a994-4cf9-a80e-eb770450c800", + "createdTime": "2021-01-15T00:37:18.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5c0ee0ec-c128-4e46-9bff-1e703be06b3a", + "createdTime": "2021-01-15T00:37:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8ef7ecf0-ff8b-43ca-bdcd-ab89e6fbff0d", + "createdTime": "2021-01-15T00:37:17.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fc9eb64e-ff79-45e2-9dfd-74cee97c5b1a", + "createdTime": "2021-01-15T00:37:16.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9cd5d346-7b1d-4f5a-b383-e68c49ef481e", + "createdTime": "2021-01-15T00:35:13.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4fa2b406-8d3f-4880-8681-90bffb4b8bb3", + "createdTime": "2021-01-15T00:37:13.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "4feaf397-b9bd-447e-8ae1-28c323eaebd7", + "createdTime": "2021-01-15T00:37:13.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f15ec22a-09f1-4a8d-93f4-fd596940a90c", + "createdTime": "2021-01-15T00:37:12.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "803c6917-0d22-4d69-9397-b0397846599c", + "createdTime": "2021-01-15T00:37:12.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "31f9f9a2-a784-4e19-8e05-7eef9b40017f", + "createdTime": "2021-01-15T00:37:11.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "82ca0013-70cb-4d3f-909c-5743daaf9e75", + "createdTime": "2021-01-15T00:37:10.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b62a316f-e147-4214-83aa-abe7c9a30696", + "createdTime": "2021-01-15T00:36:47.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "02d04707-66a7-45f0-b867-c54a4891eac8", + "createdTime": "2021-01-15T00:36:46.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "34b2aa74-4f01-4724-b7c3-edc2d37a4c79", + "createdTime": "2021-01-15T00:36:46.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "897c1fd2-bcb7-4b3f-9147-8069d33f0b48", + "createdTime": "2021-01-15T00:36:45.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c616bd5b-2b3f-40e2-b036-42b2864a274f", + "createdTime": "2021-01-15T00:36:44.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "567026e0-8a31-4fd9-b1bd-10b09fe9aa17", + "createdTime": "2021-01-15T00:36:40.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7287381a-838e-4ce1-8660-3c1444bfe2a8", + "createdTime": "2021-01-15T00:36:40.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1647dcbf-e605-433b-8545-199aaa4b7c24", + "createdTime": "2021-01-15T00:36:39.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e2b781d3-c987-4e92-aa48-ff597f7c4596", + "createdTime": "2021-01-15T00:36:39.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d3b36aaa-288a-4842-b219-2b3df6af5cd7", + "createdTime": "2021-01-15T00:36:38.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "179f0777-97c2-476f-b4b9-7fd39021e009", + "createdTime": "2021-01-15T00:35:28.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "4392d86e-0d88-478b-8eb5-4aaf8be3ebcf", + "createdTime": "2021-01-15T00:35:28.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "67fd414b-176a-4df5-b8de-f51aa4a273ce", + "createdTime": "2021-01-15T00:35:27.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9093540c-088e-4745-8399-680b4a8197f6", + "createdTime": "2021-01-15T00:35:26.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4196f6cd-0d9b-4b9c-a126-0503541b9485", + "createdTime": "2021-01-15T00:35:26.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a0f3614-145b-4ec0-8a3a-6badb184b33a", + "createdTime": "2021-01-15T00:35:21.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a583e232-3329-4493-b342-498273a92d28", + "createdTime": "2021-01-15T00:35:21.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "33676a74-1ce1-4fa4-93b1-e983e30a1ec7", + "createdTime": "2021-01-15T00:35:20.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6621aba3-c0d4-49cd-afac-a353454ddf7c", + "createdTime": "2021-01-15T00:35:19.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "3dc46692-ae05-4a35-8817-bbfecc40b980", + "createdTime": "2021-01-15T00:35:19.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f962c24-8beb-422a-adf5-82637d60603b", + "createdTime": "2021-01-15T00:35:13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "d3721f93-b300-464d-b1e2-9a1e58892dcd", + "createdTime": "2021-01-15T00:35:12.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "bff462a4-fda0-45da-a0ca-3cc50cad35c7", + "createdTime": "2021-01-15T00:35:11.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a4e5681f-64e0-4ff0-8bf6-1cf6e7e91616", + "createdTime": "2021-01-15T00:35:11.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "73db4976-921c-43f3-924f-a958e53eb537", + "createdTime": "2021-01-15T00:35:10.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d2d8250-1545-4c3a-8797-90f31846a78d", + "createdTime": "2021-01-15T00:35:07.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3c9e26e-2b34-4f8d-8987-f00343a640c7", + "createdTime": "2021-01-15T00:35:06.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "9ae0c504-7cd0-4220-b2ff-207383140dc1", + "createdTime": "2021-01-15T00:35:06.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1b7d0e2f-c1bd-4b53-83f5-ef5c5bd9daff", + "createdTime": "2021-01-15T00:35:05.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "a891b38f-0405-43c8-966b-76ea494f66c7", + "createdTime": "2021-01-15T00:35:04.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f2b0b0c-3c00-4fb2-a29c-1d2523d09c61", + "createdTime": "2021-01-15T00:34:46.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a0c24af4-be2c-4e07-8d02-92356d4b93b1", + "createdTime": "2021-01-15T00:34:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "f3d2037e-50e0-4bff-968d-915f85b59bde", + "createdTime": "2021-01-15T00:34:45.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6edd97cd-942d-47ab-bcd3-3854d6c529d7", + "createdTime": "2021-01-15T00:34:44.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c9fcf996-15a9-45d5-bdb7-ebab03967644", + "createdTime": "2021-01-15T00:34:44.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6902d281-18df-4074-a008-b242c987c782", + "createdTime": "2021-01-15T00:34:40.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "95370b46-5024-428a-a87d-7c76497fc6e8", + "createdTime": "2021-01-15T00:34:39.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8c24c9b0-f475-4a97-becd-e9210ad52980", + "createdTime": "2021-01-15T00:34:38.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1587d0e7-575b-4277-904a-8d8e5e25fadc", + "createdTime": "2021-01-15T00:34:38.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "deda3e13-d19f-4569-980c-55b50945d1c8", + "createdTime": "2021-01-15T00:34:37.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79109ad9-fbef-4513-98ce-e0a290c512f8", + "createdTime": "2021-01-15T00:33:48.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "acb117be-3b56-481b-856d-1a5079e2b368", + "createdTime": "2021-01-15T00:33:47.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1dbde4a9-abe4-4f53-bc8e-a1e106c7e3cc", + "createdTime": "2021-01-15T00:33:47.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c68b1707-96bd-4f26-b5fc-665310a2fec8", + "createdTime": "2021-01-15T00:33:46.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "015b3307-6463-4bd0-8aa2-b94363bf01b0", + "createdTime": "2021-01-15T00:33:46.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "174f3729-3ddb-4290-bd37-07e9832c0faf", + "createdTime": "2021-01-15T00:33:42.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28fff6b7-9767-413a-b545-4f443677e049", + "createdTime": "2021-01-15T00:33:41.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "6f6bc036-067a-4ac9-9e89-c90dff2704d5", + "createdTime": "2021-01-15T00:33:40.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "43cb4bb4-221b-45f1-be46-6095d1af46b6", + "createdTime": "2021-01-15T00:33:40.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "4f04b312-528f-43de-aade-6d6a46644f05", + "createdTime": "2021-01-15T00:33:39.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba5178ee-5d42-46e7-b4fc-8f40f8066243", + "createdTime": "2021-01-15T00:32:43.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a565d335-ab91-4eeb-9859-54ba829f55d3", + "createdTime": "2021-01-15T00:32:42.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "de80b484-a926-4089-a507-23903201bc5f", + "createdTime": "2021-01-15T00:32:42.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98067a81-1f73-4fbb-a1b1-ef23c0413e93", + "createdTime": "2021-01-15T00:32:41.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "837f6ba1-9b70-4f2b-9f4e-73d9adee1604", + "createdTime": "2021-01-15T00:32:41.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5db9b4f-4831-4bc7-be4a-9d46375c4ec0", + "createdTime": "2021-01-15T00:32:37.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "1a1be7ce-e9b7-42e1-a8ec-28b833878e34", + "createdTime": "2021-01-15T00:32:36.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a7829c81-8d11-4264-9b55-027c38537a52", + "createdTime": "2021-01-15T00:32:36.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "2417bcf4-c292-4944-82a4-5381a7250a06", + "createdTime": "2021-01-15T00:32:35.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1a3064ba-5f5b-417c-8017-abd4613673d4", + "createdTime": "2021-01-15T00:32:34.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1a4d2ff1-d102-42b2-b370-ed995b924b9e", + "createdTime": "2021-01-15T00:32:33.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bca89a7a-f4bd-44c4-84bb-7e21195d1808", + "createdTime": "2021-01-15T00:29:00.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2e7c9c9-9a95-4093-bd46-2b0c19ea9ae4", + "createdTime": "2021-01-15T00:27:56.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51e31a6d-53fa-47ed-a080-43fd85b18f60", + "createdTime": "2021-01-15T00:27:00.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03c20569-bb32-4f3d-b92c-87aaed959a21", + "createdTime": "2021-01-15T00:26:51.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9993875d-c733-4a3e-be46-973c329ffb36", + "createdTime": "2021-01-15T00:26:36.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ce0357d-9dbd-4d5d-8090-c463c2025398", + "createdTime": "2021-01-15T00:25:00.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02bcc115-e1b6-4158-bee1-3aa4d105bcc2", + "createdTime": "2021-01-15T00:24:15.23Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc4c8b98-482e-471c-8171-cc30b27bf571", + "createdTime": "2021-01-14T20:10:05.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "41dad869-bbce-4ffe-bac1-4a839cda301a", + "createdTime": "2021-01-14T20:11:02.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce46ff4-ce36-4d11-98f9-d957029cc8e5", + "createdTime": "2021-01-14T20:14:00.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1e186f63-5ee6-42dd-bdb9-61a483af2aef", + "createdTime": "2021-01-14T20:14:51.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "42433eb2-e841-40d8-90d2-5e2251cec442", + "createdTime": "2021-01-14T20:10:39.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "baa439a0-b440-4624-84bc-c5642aacb8ec", + "createdTime": "2021-01-14T20:16:32.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2d64667b-8754-4f8f-b5b5-dc8a659ccf0c", + "createdTime": "2021-01-14T20:16:32.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7869c585-c283-4e82-8d99-8280be90dda2", + "createdTime": "2021-01-14T20:16:32.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0dae039e-af52-4740-9009-e8f0b2ac83a6", + "createdTime": "2021-01-14T20:16:31.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7994335-3a0b-4f5b-8c27-b62a2c0e6478", + "createdTime": "2021-01-14T20:14:51.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "26e4edbe-7dfc-4fe1-9c65-564110268c4d", + "createdTime": "2021-01-14T20:14:50.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2fabc4b4-da2b-48ea-ab79-0bc4b60ef921", + "createdTime": "2021-01-14T20:14:50.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff87d87-0271-4f01-8d9d-7d4ea6c4a211", + "createdTime": "2021-01-14T20:14:01.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2eafddc3-4265-4eef-a8b6-2e41a8a73de5", + "createdTime": "2021-01-14T20:14:00.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "84a05b04-6ed8-4532-8cdd-84fa0fe7c6fe", + "createdTime": "2021-01-14T20:14:00.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1cfb571-d994-43a9-abf6-625b38eb991e", + "createdTime": "2021-01-14T20:11:02.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9ce7294-2689-4726-9625-ca594960b283", + "createdTime": "2021-01-14T20:11:01.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bde83fe3-70e2-4f74-aa9c-5b34cd40b129", + "createdTime": "2021-01-14T20:11:01.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff69d416-6993-4538-8715-7ad09d1f21a0", + "createdTime": "2021-01-14T20:10:40.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0742de03-38ad-4fc1-ac95-c87452a4351b", + "createdTime": "2021-01-14T20:10:38.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cbb90eec-ad6f-4ce2-b630-8a8d8564e316", + "createdTime": "2021-01-14T20:10:37.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34214102-36f3-447b-afd5-0689f81d1742", + "createdTime": "2021-01-14T20:10:05.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f84f5c23-4063-407c-afd4-5035160b7f9c", + "createdTime": "2021-01-14T20:10:04.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9647343d-b57a-4972-b50c-03940967cfe3", + "createdTime": "2021-01-14T20:10:04.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "addf8f2e-dfe4-40ab-b06f-db05b807619b", + "createdTime": "2021-01-14T20:10:04.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f63bdad-c05e-44ad-bf75-ab60e2dc774a", + "createdTime": "2021-01-14T20:10:03.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f1b584ec-0438-4692-89dc-24d2b9cac6f4", + "createdTime": "2021-01-14T20:10:03.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adf83345-27a3-4d6f-9740-42218174b87b", + "createdTime": "2021-01-14T20:10:02.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc67dc7-d2e6-456d-9b37-4b7ec22c4ba7", + "createdTime": "2021-01-14T14:07:15.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72506e97-520b-429c-88bd-9beffb542070", + "createdTime": "2021-01-14T14:07:14.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3177ddc-6e45-4c5d-9ef5-be14ebe2d41c", + "createdTime": "2021-01-14T14:07:14.332Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1a10ce3a-616f-4cba-b032-6005733d0150", + "createdTime": "2021-01-14T14:07:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05b0615a-220b-4b48-9b4f-3851353ccb08", + "createdTime": "2021-01-14T14:04:22.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "204a1e6d-90a3-4cd9-8d69-b8122e6341dd", + "createdTime": "2021-01-14T14:04:21.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4389fa05-d197-4eb0-b269-83edad5a4c56", + "createdTime": "2021-01-14T14:04:21.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce2f964d-e3dd-46df-bb1a-284fad50a4fb", + "createdTime": "2021-01-14T14:04:20.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58422070-5db9-4555-9689-190108678a00", + "createdTime": "2021-01-14T13:56:32.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abf281af-9678-4519-8b3f-87d373de90b9", + "createdTime": "2021-01-14T13:56:31.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f507a07b-acfb-4a33-b426-818809a955e4", + "createdTime": "2021-01-14T13:56:31.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a0395af-87b3-4896-ad65-1ef15cde7aef", + "createdTime": "2021-01-14T13:56:30.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3382c221-2472-4505-8a71-0a242a61ff4e", + "createdTime": "2021-01-14T13:53:47.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d3d90b-5637-48a4-9c9f-c584028d3a78", + "createdTime": "2021-01-14T13:53:46.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ebeefc6b-29a3-4ebb-a8eb-fc5c41b418ad", + "createdTime": "2021-01-14T13:53:46.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e25b9b7e-d239-45dd-b58a-6a014e309af1", + "createdTime": "2021-01-14T13:53:45.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33c77229-2a27-422a-84e3-fb8885342c25", + "createdTime": "2021-01-14T13:44:09.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "50acafb8-1440-4a29-87cb-22d23a97db5f", + "createdTime": "2021-01-14T13:44:09.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea156fb5-03b9-4e12-939a-8e7600034d7a", + "createdTime": "2021-01-14T13:44:09.114Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "559ac852-6593-480c-8210-30c2e8253995", + "createdTime": "2021-01-14T13:44:08.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bcce751c-7277-4a4d-8da9-221e93b76ec2", + "createdTime": "2021-01-14T13:27:35.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27b61c3d-d8ae-488d-bc0f-b0dce6cc20bd", + "createdTime": "2021-01-14T13:31:26.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ee5a642f-b4d5-4fb8-91ec-52513b6d28f7", + "createdTime": "2021-01-14T13:19:53.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f1de6f89-b6d8-4c7a-b76a-45743030a99d", + "createdTime": "2021-01-14T13:31:26.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3b7e14f-0ce5-405b-aec4-6cce4452320d", + "createdTime": "2021-01-14T13:31:25.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "846f8e0f-e9b8-4a18-9505-5a69783f0da8", + "createdTime": "2021-01-14T13:31:24.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a6a630a7-d9de-4f80-becb-f8ca45c040cb", + "createdTime": "2021-01-14T13:27:34.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6c6f5569-f6f6-40eb-9a12-99bc8b80f8d1", + "createdTime": "2021-01-14T13:27:33.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a93ed1ef-a36b-4ca6-99b2-1e597d6fb961", + "createdTime": "2021-01-14T13:27:33.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e94f1011-8777-4149-aab3-8a7eafbd75dc", + "createdTime": "2021-01-14T13:19:53.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35b5da12-07bb-4229-8b4a-ae60e864491d", + "createdTime": "2021-01-14T13:19:52.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47ab17ad-80bc-4243-bafe-66c2c291de7b", + "createdTime": "2021-01-14T13:19:52.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c8bfda1-c96f-4fb9-9f4c-0d7897172390", + "createdTime": "2021-01-14T13:17:19.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd9a08b2-b7c2-472f-a955-ecbc1f368c19", + "createdTime": "2021-01-14T13:17:19.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff3bef5e-c13f-40c4-84d4-4c9fd1958507", + "createdTime": "2021-01-14T13:17:18.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f89290a-6ec9-47cd-b8f9-4294e38ba6ed", + "createdTime": "2021-01-14T13:17:16.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a44a3b15-bd45-44f4-9e9b-8bb1705d8061", + "createdTime": "2021-01-14T09:16:44.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51a61aec-f0c7-4f33-ac46-dd2838a84ee4", + "createdTime": "2021-01-14T09:16:43.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc9da33-b3d5-4034-a851-16bca08fb434", + "createdTime": "2021-01-14T09:16:42.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdd0b114-d49d-409b-a646-9750678f29ce", + "createdTime": "2021-01-14T09:16:41.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82d43c13-fb3b-4a1a-a182-a9b5f9029571", + "createdTime": "2021-01-14T09:13:02.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cb90ba3d-9dc4-4cb1-9514-041a2f65e4a7", + "createdTime": "2021-01-14T09:13:01.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac1d34c4-9c2e-4203-9194-ae5a9a304322", + "createdTime": "2021-01-14T09:13:01.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "32ae669b-57ac-4aaa-b187-c062a596357a", + "createdTime": "2021-01-14T09:13:00.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85ebf416-453a-4d41-b191-8073d612fc04", + "createdTime": "2021-01-14T09:03:56.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "36d0c56a-fafd-4388-ade5-62738479f87d", + "createdTime": "2021-01-14T09:03:56.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63869f25-f4fc-40c2-bd14-3f8a99be160c", + "createdTime": "2021-01-14T09:03:55.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c499d4ec-b5d0-4015-aa0c-b19c15a2a7d5", + "createdTime": "2021-01-14T09:03:54.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b6b8476-20b9-422d-a1cf-385fab8352ee", + "createdTime": "2021-01-14T09:00:02.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e2ff7c2-4165-4e63-a116-fef43c713bc3", + "createdTime": "2021-01-14T09:00:02.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8b3791fa-8f7b-4d59-8459-3d70e674d0e9", + "createdTime": "2021-01-14T09:00:01.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "546dc581-df7d-4fc6-8431-a58881d7817f", + "createdTime": "2021-01-14T09:00:01.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29780d2c-7fa5-4e67-978b-13176b391812", + "createdTime": "2021-01-14T08:48:04.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "05325a2a-4b10-4f7c-92ab-b2939d8beb3c", + "createdTime": "2021-01-14T08:48:04.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "79858130-ed4a-4da6-904b-630b7fe7cbd9", + "createdTime": "2021-01-14T08:48:03.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da275a4f-0fbf-44a0-8d5d-b356145b3bf8", + "createdTime": "2021-01-14T08:48:02.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4520cf58-c8bf-466a-bba5-cf96b064d8b0", + "createdTime": "2021-01-14T08:31:36.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "70b5517b-c6b7-41ef-886c-181c38a21110", + "createdTime": "2021-01-14T08:35:25.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d412faf3-bca7-411f-a9d8-7dfb544c3c39", + "createdTime": "2021-01-14T08:24:12.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "56cad88e-5a5c-43c4-92f5-8fbbb9ae1e17", + "createdTime": "2021-01-14T08:35:25.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b6d9bb2-f5a7-4f66-838e-f9d8ab8bdcfe", + "createdTime": "2021-01-14T08:35:24.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dfd94085-d973-4b2b-b62a-0bbb07a2e97f", + "createdTime": "2021-01-14T08:35:23.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69e94fdb-cb3c-4bd7-ab9a-2845a0dc6177", + "createdTime": "2021-01-14T08:31:35.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8dfc7e44-c084-49ac-94ff-6ab7a9af00a8", + "createdTime": "2021-01-14T08:31:34.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0b590c54-d2f3-4ff2-80f2-662ef0741a1f", + "createdTime": "2021-01-14T08:31:33.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83f7954f-9af8-429a-994b-8f3c2df648b9", + "createdTime": "2021-01-14T08:24:11.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf85b5c5-2882-449d-a2be-c2a4457353bb", + "createdTime": "2021-01-14T08:24:10.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9c55f25-a13a-4344-b815-4fba2b85878a", + "createdTime": "2021-01-14T08:24:10.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f93e1c0c-827b-4312-8b84-e7a883f97964", + "createdTime": "2021-01-14T08:20:22.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88394bd8-0b7a-452f-ac70-f869614b831f", + "createdTime": "2021-01-14T08:20:21.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "783eb848-972c-4acc-8e4e-90a8d268929a", + "createdTime": "2021-01-14T08:20:20.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5178eb44-213b-47f2-b477-67b74b4ebe1e", + "createdTime": "2021-01-14T08:20:19.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b1a2407-809e-48c7-99a0-741ede4b2634", + "createdTime": "2021-01-14T00:10:17.186Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d86a8fb-0e6a-4722-8c1a-a34ec07bd17c", + "createdTime": "2021-01-13T20:06:06.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9edc0dc9-579a-4a67-a5b0-bc0e8663aa47", + "createdTime": "2021-01-13T20:05:02.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64da1d5a-aa33-40e1-8f6e-42188feda23a", + "createdTime": "2021-01-13T20:05:47.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6b6eb7c-e85e-4aa0-8af2-8f16b11fd84a", + "createdTime": "2021-01-13T20:11:46.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f351e58-a0c7-47fa-9974-ba29dae7c74c", + "createdTime": "2021-01-13T20:07:38.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cb75c9dd-97d5-41e4-9839-164880ad773b", + "createdTime": "2021-01-13T20:10:17.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0f50131-61a3-44e4-b73d-293e8f847cec", + "createdTime": "2021-01-13T20:11:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "15a490c0-dd73-4adf-84cd-9b3f4a2c8634", + "createdTime": "2021-01-13T20:11:46.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "58086ab8-b9fa-4987-b495-f2d65b8e0da4", + "createdTime": "2021-01-13T20:11:45.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdbd6a2a-38fe-4ef0-bda4-a5d71371c0c3", + "createdTime": "2021-01-13T20:10:17.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1525a401-0615-43ba-b92d-4af1f0a03a5b", + "createdTime": "2021-01-13T20:10:16.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "85f34a6b-b7da-4e97-926e-365aac3ec15d", + "createdTime": "2021-01-13T20:10:16.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17103415-b297-40d0-afbd-5cfe0c995b1e", + "createdTime": "2021-01-13T20:07:38.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0569647b-e517-4073-a656-42d9d937b45e", + "createdTime": "2021-01-13T20:07:37.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "156a2d5d-90b8-433c-b97f-a7ec6581e074", + "createdTime": "2021-01-13T20:07:36.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00539d0a-fd16-4765-a4b6-3a67d9acbb1f", + "createdTime": "2021-01-13T20:06:07.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "48ba9c73-e5ae-4542-b662-49b5eb48d75a", + "createdTime": "2021-01-13T20:06:05.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5d1ef766-ba03-4108-b4d0-4500c0da46aa", + "createdTime": "2021-01-13T20:06:05.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f27dc93-b970-40e9-b6bd-229691849877", + "createdTime": "2021-01-13T20:05:48.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cdc234e4-4043-4bbe-9c31-394213b46266", + "createdTime": "2021-01-13T20:05:46.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "863a66a9-d98e-43d9-9f78-72f3587d6558", + "createdTime": "2021-01-13T20:05:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c26aa392-fde3-4a78-8814-4c86fdeed3f6", + "createdTime": "2021-01-13T20:05:02.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "17daea4e-8b29-4465-9a00-0646c47894e7", + "createdTime": "2021-01-13T20:05:01.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e7133435-efa0-483c-9ac1-ee94b3486ae9", + "createdTime": "2021-01-13T20:05:01.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77a0296a-eb2d-4527-8a04-2727481f950d", + "createdTime": "2021-01-13T20:04:43.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "97f9d203-dd2b-4577-8f98-a3426f14927f", + "createdTime": "2021-01-13T20:04:42.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8d6523bd-5e94-4702-ae46-8e5110229acc", + "createdTime": "2021-01-13T20:04:41.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dade334d-c5f6-4562-a003-b5addc534f0b", + "createdTime": "2021-01-13T20:04:41.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "156cdbdd-cef6-44a7-9471-751254243939", + "createdTime": "2021-01-13T09:21:50.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9c7a23ab-723a-4b27-b5f2-c27c721ccb1b", + "createdTime": "2021-01-13T09:21:49.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aeeddbda-08bf-417a-8751-4b6861f91797", + "createdTime": "2021-01-13T09:21:49.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3dbe83ca-8b6f-4d40-b8f1-33967f17fbeb", + "createdTime": "2021-01-13T09:21:48.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e4bcc4bf-3136-4403-bfa0-ba9638f77d6e", + "createdTime": "2021-01-13T09:18:11.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2c4469a5-cfa1-49eb-875c-2ce834516232", + "createdTime": "2021-01-13T09:18:11.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fdd72891-c238-4eb4-990e-add2bc445594", + "createdTime": "2021-01-13T09:18:10.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "83b7742f-b705-4ac3-8ff0-2f00c26170bc", + "createdTime": "2021-01-13T09:18:10.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e22d7f1-9365-4e97-a30f-e2537fe296d9", + "createdTime": "2021-01-13T09:02:42.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5b46393f-57ed-4298-8376-a12727711852", + "createdTime": "2021-01-13T09:02:41.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca2e2e4-0d4b-400c-b8ca-c3e16f6860d8", + "createdTime": "2021-01-13T09:02:40.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad218fc6-272d-43d2-87a5-eec8afc8443a", + "createdTime": "2021-01-13T09:02:40.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a4e6a6-9985-49f3-aced-4ce63e373f75", + "createdTime": "2021-01-13T08:58:44.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d61939-3dc8-46d3-a05a-00d75e705883", + "createdTime": "2021-01-13T08:58:43.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3d7ad22-3938-4f37-8601-af698741a89a", + "createdTime": "2021-01-13T08:58:42.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "18d64506-1188-4800-9402-17ad9653d5dc", + "createdTime": "2021-01-13T08:58:41.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6978006d-0c6b-45c8-a1c0-e678183559f9", + "createdTime": "2021-01-13T08:45:22.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8aa1d17d-8f7f-4b60-a9c7-5f952cf1006e", + "createdTime": "2021-01-13T08:45:21.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "341c08ef-2976-4db9-bdc0-9b0ed2c3fe74", + "createdTime": "2021-01-13T08:45:21.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42e0ad85-d761-41fb-b899-6a86b4cbfd2c", + "createdTime": "2021-01-13T08:45:20.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75bdcf11-a72d-474c-a578-5eca304b9e3d", + "createdTime": "2021-01-13T08:31:26.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf5faa8d-7b10-4229-8cd1-e219478c8a1d", + "createdTime": "2021-01-13T08:35:19.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03f0a27a-2759-414d-909a-8ac54c7773ac", + "createdTime": "2021-01-13T08:24:14.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acad6a6c-9773-44f6-8b21-53e23f9e0613", + "createdTime": "2021-01-13T08:35:19.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5b90de78-b8b9-40fd-a8e8-79e65f67f861", + "createdTime": "2021-01-13T08:35:18.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "925a304b-5353-4a3c-88e6-a5207734c111", + "createdTime": "2021-01-13T08:35:18.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8420003e-47d8-4052-95a7-e7847733f659", + "createdTime": "2021-01-13T08:31:25.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a7570520-1879-4e46-8fcd-eef51beaf7ae", + "createdTime": "2021-01-13T08:31:24.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "212d5424-ac2c-4871-81e3-509f575a53fa", + "createdTime": "2021-01-13T08:31:23.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57d78186-2a4b-4194-a26f-8529c68e2898", + "createdTime": "2021-01-13T08:24:13.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e1fdfbe-35b3-4fdf-8d58-e9e466670012", + "createdTime": "2021-01-13T08:24:13.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b9d9b1a8-42e6-48c1-8059-ef94ae2509d6", + "createdTime": "2021-01-13T08:24:12.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "393fedb0-ac33-490e-81db-577a8baed38d", + "createdTime": "2021-01-13T08:20:30.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6d039c48-45c6-4df2-bfd4-421e16f3b590", + "createdTime": "2021-01-13T08:20:28.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e1a68ddf-23ed-4ba9-abe0-e71036fd32ba", + "createdTime": "2021-01-13T08:20:28.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "07f54ed0-a6c7-4568-bea5-c710422c1018", + "createdTime": "2021-01-13T08:20:27.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67da7875-78b2-41c8-9845-20168baab347", + "createdTime": "2021-01-12T20:31:13.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "77dac7a3-576c-4668-9056-33a5f45984c8", + "createdTime": "2021-01-12T20:26:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c46df5dd-b68e-4872-bc6e-8008c8b9cbae", + "createdTime": "2021-01-12T20:24:49.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "86e41ea3-9506-4100-8f60-b8c6a29bac49", + "createdTime": "2021-01-12T20:25:45.137Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06bcfdc8-5970-4385-855a-ecac8c688c75", + "createdTime": "2021-01-12T20:24:42.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5cb50aa-5c83-4030-8c4c-d6acb38471ef", + "createdTime": "2021-01-12T20:28:38.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d21cee2c-0cad-43f8-a7b9-e54197c4ad20", + "createdTime": "2021-01-12T20:31:14.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57eb5f5a-7fb4-4de7-acb2-80728e67701d", + "createdTime": "2021-01-12T20:31:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eebf1270-6fd5-4f29-b4ae-994097445191", + "createdTime": "2021-01-12T20:31:12.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d88852ec-782f-48d6-ad00-e44cb29b5a89", + "createdTime": "2021-01-12T20:28:38.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c7c68435-0504-48ed-b0aa-8d641134aa81", + "createdTime": "2021-01-12T20:28:37.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d5f9fd7f-b28e-47b1-bef7-4ca56d512748", + "createdTime": "2021-01-12T20:28:37.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da1ec863-9d5f-4664-a927-5bc2e52785d2", + "createdTime": "2021-01-12T20:26:09.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0efb79bf-85bf-444e-ba4a-26d173f7613a", + "createdTime": "2021-01-12T20:26:08.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "950f860e-eb03-46c6-9459-70c1175fc9be", + "createdTime": "2021-01-12T20:26:08.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaf9fa35-cbae-4ed7-b376-dbeb9081e94b", + "createdTime": "2021-01-12T20:25:46.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "093581ff-81b0-4e97-92fd-f137e64f86d8", + "createdTime": "2021-01-12T20:25:44.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "db0ac784-b338-4e65-a715-08a724c1d78a", + "createdTime": "2021-01-12T20:25:43.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d34b778-66ce-4185-9541-f8ee73acb339", + "createdTime": "2021-01-12T20:24:49.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6a5bd429-b865-4b58-8237-dd1b27cb4f93", + "createdTime": "2021-01-12T20:24:48.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5f64ebb1-4d15-4903-898b-93841233de74", + "createdTime": "2021-01-12T20:24:48.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3156ddb8-6167-4bc2-bdce-c65abc80773a", + "createdTime": "2021-01-12T20:24:42.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4af3489-16b8-49a6-97c1-8bbd61590c6f", + "createdTime": "2021-01-12T20:24:41.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6749bbdd-f898-48cc-b90b-3ef6bb37b2b8", + "createdTime": "2021-01-12T20:24:41.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3355a0b9-a496-4be6-97c0-337e6f3fe157", + "createdTime": "2021-01-12T20:24:36.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e5121794-205d-4ae3-83a5-919ac47ee579", + "createdTime": "2021-01-12T20:24:35.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a8bf3867-85ca-43f5-b841-a2a11d002c2e", + "createdTime": "2021-01-12T20:24:34.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1fbc6f65-c4a9-47b4-aaf2-9b5659626f5b", + "createdTime": "2021-01-12T20:24:34.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10281834-0a41-480e-a032-99ee1f31dee9", + "createdTime": "2021-01-12T09:12:38.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b864efdd-840a-4c70-ba8a-2d79a04ac8f1", + "createdTime": "2021-01-12T09:12:37.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82d5d899-de40-46eb-8f8e-9bb9fb841135", + "createdTime": "2021-01-12T09:12:36.294Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "adb370d6-f4c0-4ff9-9857-2222625e5aba", + "createdTime": "2021-01-12T09:12:35.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9b397339-0e01-4751-8f4f-08ad019c1806", + "createdTime": "2021-01-12T09:08:50.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2fd120c4-5d04-428a-a643-9f33e2f3eb0f", + "createdTime": "2021-01-12T09:08:49.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "94522b17-806c-455e-8776-a96f5c58288c", + "createdTime": "2021-01-12T09:08:49.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eee53610-7ce7-4554-a881-cab47647f587", + "createdTime": "2021-01-12T09:08:48.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed5a5f0e-f74f-4988-a3d4-ad405263bbb8", + "createdTime": "2021-01-12T09:01:28.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0c2ccfae-4b1b-4508-b316-6635abc425d9", + "createdTime": "2021-01-12T09:01:27.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b1231b8-67df-44d7-85f4-56a0b051fb33", + "createdTime": "2021-01-12T09:01:26.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "254ecccf-61b6-43b9-be45-4260ffffc1b0", + "createdTime": "2021-01-12T09:01:25.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62688ffe-bf44-4f26-bbc3-773ea08fcbd4", + "createdTime": "2021-01-12T08:57:42.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3c0215e0-8070-4b97-b40f-d0907b0eef83", + "createdTime": "2021-01-12T08:57:40.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "83215345-deb7-42c5-a8e8-be0e475ac027", + "createdTime": "2021-01-12T08:57:40.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6c82d5-2756-4649-9c99-f149aad528b8", + "createdTime": "2021-01-12T08:57:39.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a5e34d2-384a-4ae7-8bef-e2798d16bce4", + "createdTime": "2021-01-12T08:48:21.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57bf4025-90b5-4770-89dc-3c4c3821db1f", + "createdTime": "2021-01-12T08:48:20.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "54de3543-5452-4732-ac01-82613f2ee850", + "createdTime": "2021-01-12T08:48:20.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69923da8-30f9-4f66-8377-06cdf4e1a37c", + "createdTime": "2021-01-12T08:48:19.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03004e90-7a85-4d27-b44e-1d7d144f702a", + "createdTime": "2021-01-12T08:37:12.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d886da2-8cd2-4815-b591-dce36e9f1ae3", + "createdTime": "2021-01-12T08:37:12.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b2502657-a041-49fd-8ffb-bc9b0bb1c4ff", + "createdTime": "2021-01-12T08:37:11.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7fbf0cc-db9f-4f3c-aafb-cfd90e9187ea", + "createdTime": "2021-01-12T08:37:11.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdfa9909-9ca7-4568-aa45-9393cc2c58d0", + "createdTime": "2021-01-12T08:33:27.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a99e56d6-d34a-416d-a6af-eea195a4e282", + "createdTime": "2021-01-12T08:24:05.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dcf9c02-88ea-4842-b084-72bdacdb5a1b", + "createdTime": "2021-01-12T08:20:26.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e639bdbf-adfc-4ce8-8889-be99d870fcbc", + "createdTime": "2021-01-12T08:33:26.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "628e46f9-44c4-4ea0-a457-46a7a252219d", + "createdTime": "2021-01-12T08:33:25.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a913202-a024-4eda-971c-136e6a17c697", + "createdTime": "2021-01-12T08:33:24.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71325e8f-0854-47ac-8166-79f7f9c6dd47", + "createdTime": "2021-01-12T08:24:05.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5791f964-4f03-490a-a515-a91f7d2bc6c7", + "createdTime": "2021-01-12T08:24:04.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd483a6c-82c6-49b8-ab1e-cd8203c57701", + "createdTime": "2021-01-12T08:24:04.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9dd6c345-825d-4451-9105-e4697d626e2b", + "createdTime": "2021-01-12T08:20:25.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c373ca0-0a78-4db9-8031-95a5763efc27", + "createdTime": "2021-01-12T08:20:24.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1428dd7b-eb68-4d1f-9bf2-19c4fa68c0c5", + "createdTime": "2021-01-12T08:20:23.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a853b3eb-4292-4389-91bd-e0bab3aee981", + "createdTime": "2021-01-11T22:43:02.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "53d8c1fc-4bc8-41e0-89a1-f6bd9fe42fd1", + "createdTime": "2021-01-11T22:43:01.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "28b1d568-2b7f-473d-b196-7378f6653128", + "createdTime": "2021-01-11T22:43:01.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "adcc8390-b5cd-4b89-85f4-e2d84fb404d5", + "createdTime": "2021-01-11T22:43:00.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f65a7328-3220-4236-ae45-adaf0ab59f5d", + "createdTime": "2021-01-11T22:43:00.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "31df969b-14ca-408e-9e7c-68482712d9b2", + "createdTime": "2021-01-11T22:42:59.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f683e57-5d49-4cd0-925e-08089bea7f70", + "createdTime": "2021-01-11T22:35:54.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b53982f-333e-4f55-a291-63461479769a", + "createdTime": "2021-01-11T21:34:18.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "746e4eeb-6f3f-4c39-9e3d-1e67a08815c8", + "createdTime": "2021-01-11T20:28:25.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ba3b8aad-3ca9-4788-aae0-dc36130659cf", + "createdTime": "2021-01-11T20:24:16.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9f9c554a-a5aa-41fd-be49-ad858557498b", + "createdTime": "2021-01-11T20:28:15.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "69c44822-17ee-486c-9d3d-886da3075c46", + "createdTime": "2021-01-11T20:24:50.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3ac53867-44bc-4b44-818a-19f2c34bb526", + "createdTime": "2021-01-11T20:31:46.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57a976f3-2b67-421a-8c3d-5ea33ad6ee83", + "createdTime": "2021-01-11T20:31:45.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5f2e8f8-e49f-4166-a22c-985ac4dc4392", + "createdTime": "2021-01-11T20:31:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cfdb985b-0e4c-4b7a-9802-23a4bcb80a78", + "createdTime": "2021-01-11T20:31:44.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17d063ab-aee4-488d-8f88-500f4efb1306", + "createdTime": "2021-01-11T20:24:26.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "deea8700-a580-48e0-af50-bc98c8db3c11", + "createdTime": "2021-01-11T20:28:26.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7f838b66-08da-444a-850f-307788f19543", + "createdTime": "2021-01-11T20:28:24.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8fbcfc9c-a67d-48ec-b1bb-cb70e929575c", + "createdTime": "2021-01-11T20:28:24.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d38d7767-016f-4c59-99fb-c548f18bfb19", + "createdTime": "2021-01-11T20:28:16.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a9f6030e-d9a9-4833-ac76-b5385d903223", + "createdTime": "2021-01-11T20:28:15.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3ca9e0bb-bf36-49cc-8411-2b488455b446", + "createdTime": "2021-01-11T20:28:14.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "81380cfd-35b3-4dfb-95dd-a39681d02566", + "createdTime": "2021-01-11T20:24:51.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3d84aa09-1730-4b5b-9c45-5b16b9b4085d", + "createdTime": "2021-01-11T20:24:49.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c5c29b18-5089-4f18-bee4-ad6f5e66799e", + "createdTime": "2021-01-11T20:24:49.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9bb89c01-b6a3-46ef-b95a-fbf2aa4e13a1", + "createdTime": "2021-01-11T20:24:28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5d46f766-b07b-482e-bc36-c4b42a929c77", + "createdTime": "2021-01-11T20:24:25.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a594e7e2-8fcf-4fdf-bbd2-9f61c560ecb4", + "createdTime": "2021-01-11T20:24:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3da237bf-f79a-437d-b533-72b344197be9", + "createdTime": "2021-01-11T20:24:17.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "81b5a08c-2d22-46fc-91e2-b05e3cadbba0", + "createdTime": "2021-01-11T20:24:15.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "447b063b-6b44-4974-9905-4a223f6e7f0e", + "createdTime": "2021-01-11T20:24:14.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86053b46-fa0a-40b4-aa67-6cbffba5eedc", + "createdTime": "2021-01-11T20:23:58.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f9e1fc3-b433-48ab-bdef-2afc5fd970a6", + "createdTime": "2021-01-11T20:23:58.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "598941c1-7b07-4852-a0e8-1e0f9f3437b7", + "createdTime": "2021-01-11T20:23:57.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2aacafd4-704a-48db-87eb-0d7b4e150ec2", + "createdTime": "2021-01-11T20:23:57.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f99601b8-b678-4aef-a99c-4fd3e76f2bc1", + "createdTime": "2021-01-11T09:17:26.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9f16da08-01fe-4445-9948-704159d05203", + "createdTime": "2021-01-11T09:17:25.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf5ed19-4cf1-4553-8fe4-1a6e430b4d26", + "createdTime": "2021-01-11T09:17:24.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3fc9463f-7a76-48e0-a492-1a1575be7c59", + "createdTime": "2021-01-11T09:17:23.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bb3d070f-090c-42b8-b04a-b6a318904db9", + "createdTime": "2021-01-11T09:13:47.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c85b2b0-b975-4077-bc92-390afd7a883f", + "createdTime": "2021-01-11T09:13:46.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e54a6fd-b234-4091-87cf-3bf76497c683", + "createdTime": "2021-01-11T09:13:46.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "583b3ed0-988b-47c5-8fb3-dba49a0f1018", + "createdTime": "2021-01-11T09:13:45.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4441117c-b154-47d2-930d-c37df93f2b1e", + "createdTime": "2021-01-11T09:00:20.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c714fab-ff92-43e4-bb35-45caec9a79c3", + "createdTime": "2021-01-11T09:00:19.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "349af338-e5f9-4e29-b13d-dfff96a61fdb", + "createdTime": "2021-01-11T09:00:19.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f9116904-3cb5-4948-a18c-b1e2af87363f", + "createdTime": "2021-01-11T09:00:18.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b582e4b1-0c37-454d-a53e-ddfe6bc5f75f", + "createdTime": "2021-01-11T08:56:29.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86b501d7-270e-463a-a975-9b63ef1f4cf3", + "createdTime": "2021-01-11T08:56:28.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf40e1d8-723e-4e57-a54a-79a72c97119d", + "createdTime": "2021-01-11T08:56:28.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62335039-2fc8-4497-83f6-56e106415c82", + "createdTime": "2021-01-11T08:56:27.19Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e223f769-4174-4954-8f0d-440a2f1e9423", + "createdTime": "2021-01-11T08:47:30.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8bfc164-2b65-414f-b6ac-8f12e8cfaef1", + "createdTime": "2021-01-11T08:47:29.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a1eecc29-8577-4cc8-ba0c-5bd8953d1e58", + "createdTime": "2021-01-11T08:47:28.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e0b2840-beae-45ed-810b-3a4049ce37e4", + "createdTime": "2021-01-11T08:47:27.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "edff630e-08a1-4b2d-b72e-e0e3ac43a188", + "createdTime": "2021-01-11T08:37:02.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "65cb94de-060b-4bee-9696-081bf002445d", + "createdTime": "2021-01-11T08:24:42.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bbc812f9-2a22-488d-a393-1ea2fa9ff997", + "createdTime": "2021-01-11T08:33:15.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "34446c09-bef4-4bd9-96da-cb344e622a87", + "createdTime": "2021-01-11T08:37:01.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95c812d4-eb69-4573-a576-777b3469a631", + "createdTime": "2021-01-11T08:37:00.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54eeb8d3-fa62-46db-a37f-988715691398", + "createdTime": "2021-01-11T08:37:00.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "deeb63c2-dd3e-4530-a2ab-521b8a7086c3", + "createdTime": "2021-01-11T08:33:15.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1af443c8-ae1e-4984-9002-2f35a1999b44", + "createdTime": "2021-01-11T08:33:14.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6df835a9-9870-4b69-8c23-1ff2bc7a7056", + "createdTime": "2021-01-11T08:33:13.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be9a8817-bb63-4442-98d1-5761edebf7f8", + "createdTime": "2021-01-11T08:24:42.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e884e87-a410-4f3e-a339-6cf7c084514c", + "createdTime": "2021-01-11T08:24:41.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "402fd3ea-c38f-4d2f-9805-b159d46526e0", + "createdTime": "2021-01-11T08:24:40.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a16ce83-1fa0-4233-938c-31726fafe7d9", + "createdTime": "2021-01-11T08:20:52.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e907fd7d-cd6e-4432-aba7-ef2cab3acda2", + "createdTime": "2021-01-11T08:20:51.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b35997f-7fa2-4a19-9c6d-1b40bc6d45c5", + "createdTime": "2021-01-11T08:20:51.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "72cab1a7-e2a6-465a-83b1-186e764fce20", + "createdTime": "2021-01-11T08:20:50.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ee199779-dcb8-46fb-8146-5a3ab72a93e7", + "createdTime": "2021-01-08T20:08:25.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b280b149-c573-4a2e-bcfe-75b9ae68a3b8", + "createdTime": "2021-01-08T20:10:58.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3a650755-1022-41ec-a242-d4a9202791fa", + "createdTime": "2021-01-08T20:06:57.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4c65b3a1-56f3-4124-bd78-2150e79267d9", + "createdTime": "2021-01-08T20:06:56.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d9f2fdcb-1ea7-4fab-bd75-e7696d20a1bc", + "createdTime": "2021-01-08T20:07:47.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b0a22122-4604-484b-8b3a-1564ffd09328", + "createdTime": "2021-01-08T20:12:26.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "437baf03-f0e2-4de6-b1fd-fc6f58ac6171", + "createdTime": "2021-01-08T20:12:27.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "511d28a7-c9f9-41c7-ae03-ce42036303ff", + "createdTime": "2021-01-08T20:12:26.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0c7b7f-a1af-49e1-9907-1ac3495a1b44", + "createdTime": "2021-01-08T20:12:25.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa8b5713-9e08-4d86-9b49-52859a64e744", + "createdTime": "2021-01-08T20:10:59.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4da5974-6eeb-4af0-8c49-0d18cb6c1237", + "createdTime": "2021-01-08T20:10:58.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bafda377-cf59-4a0e-b68d-6741f305e646", + "createdTime": "2021-01-08T20:10:57.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c5a3a50-252e-4a76-8814-26cf269691d4", + "createdTime": "2021-01-08T20:08:26.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8df83580-8853-409d-98ce-a02e8ba6ac57", + "createdTime": "2021-01-08T20:08:24.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4434103-2df6-48d7-a5e5-681c1414482e", + "createdTime": "2021-01-08T20:08:24.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfa30ebc-c6c2-43ae-be9a-e45142e18569", + "createdTime": "2021-01-08T20:07:48.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e03dcd5b-56b7-498a-80af-a0fb7cb44f78", + "createdTime": "2021-01-08T20:07:46.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "840a4a5a-b3ca-43c5-936b-da2ea7f0a86a", + "createdTime": "2021-01-08T20:07:45.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17f5e327-4365-4a06-9007-d25575eb7f63", + "createdTime": "2021-01-08T20:06:58.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a7c67fc4-892f-48d9-ab94-3cbc73f33b55", + "createdTime": "2021-01-08T20:06:57.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b09e4dd4-5932-4fb3-afee-5d3f5fa6e9fb", + "createdTime": "2021-01-08T20:06:57.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3996f23e-e00f-42c0-a6a9-4eb2799ca2de", + "createdTime": "2021-01-08T20:06:56.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bfe1e98-91a5-4a83-8480-a5e25f3babae", + "createdTime": "2021-01-08T20:06:56.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f52aa4df-104e-498d-94e0-34688d374d88", + "createdTime": "2021-01-08T20:06:55.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2f4353d-354b-4695-8c06-a7f3cfb26ce0", + "createdTime": "2021-01-08T20:06:34.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f689cc20-0f9a-4f56-ae1a-28297ca1803f", + "createdTime": "2021-01-08T20:06:33.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "25e48dc3-c368-40b7-b3a1-82eccac9dcbf", + "createdTime": "2021-01-08T20:06:33.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1577fc73-4aee-431d-b2d1-748bf6887600", + "createdTime": "2021-01-08T20:06:32.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d9805e1-53a6-4c01-b373-d2618766bf7b", + "createdTime": "2021-01-08T09:15:06.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "940f494f-7424-4326-9a54-e8619239996e", + "createdTime": "2021-01-08T09:15:05.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7355d19b-74a9-47c5-872c-3af939100099", + "createdTime": "2021-01-08T09:15:05.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b5014a9a-c18f-43b3-bfae-f709eb0395b3", + "createdTime": "2021-01-08T09:15:04.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d9062b5-1cbf-40c3-b068-33df32720bde", + "createdTime": "2021-01-08T09:11:25.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5fc8df59-9d23-496c-ab0b-edaf5d98ffab", + "createdTime": "2021-01-08T09:11:24.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a4a7ee2-6114-4f77-a11f-6adffcd40ce2", + "createdTime": "2021-01-08T09:11:23.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a012d2ce-0a6d-4dbe-b7a7-0cbae9c1236a", + "createdTime": "2021-01-08T09:11:23.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e494622a-c43d-4a25-aca9-3f90510ea560", + "createdTime": "2021-01-08T08:58:51.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9097b46d-3876-4108-88da-7bfe61e0624a", + "createdTime": "2021-01-08T08:58:50.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9edc5f6f-fed9-4911-bbc0-c0b98e685ac3", + "createdTime": "2021-01-08T08:58:49.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42a01786-d66b-49bf-9010-aa09f40d93e4", + "createdTime": "2021-01-08T08:58:49.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33cd4c8-dd98-4ee2-97ad-45be1c16c3f7", + "createdTime": "2021-01-08T08:55:26.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db61131e-cbdf-470a-bde3-ebf825c58b4d", + "createdTime": "2021-01-08T08:55:25.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9a20f70-cce1-4bc3-b272-bb2d333afc6b", + "createdTime": "2021-01-08T08:55:24.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f5837e6-39ea-4d0f-8531-3de78eceb9dd", + "createdTime": "2021-01-08T08:55:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f678ab8-936f-4bf0-9c96-2d5fbf67a837", + "createdTime": "2021-01-08T08:46:33.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72f1c81f-b8f7-4703-aa42-01a82ed5980b", + "createdTime": "2021-01-08T08:46:33.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd9eb62f-8fc1-4330-abc2-953b565a9991", + "createdTime": "2021-01-08T08:46:32.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "771dbe08-65da-488e-96b8-8896f4c8dac3", + "createdTime": "2021-01-08T08:46:32.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bc3bddd1-7e84-49ee-8590-bef9b040ec4d", + "createdTime": "2021-01-08T08:24:04.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d8f5a0-c32c-4f6f-a960-993512daec6d", + "createdTime": "2021-01-08T08:31:05.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66ac0de6-786a-46ca-953f-ecc744452f7d", + "createdTime": "2021-01-08T08:34:43.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c04bcd54-1ca3-4724-aced-28f7bccda553", + "createdTime": "2021-01-08T08:34:42.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43feb29e-15e8-47bb-b30b-5a4c89238128", + "createdTime": "2021-01-08T08:34:41.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6bddd586-e820-4a20-b23a-00b440ee3715", + "createdTime": "2021-01-08T08:34:40.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3c65c2b-8898-428d-bace-8373d04a1075", + "createdTime": "2021-01-08T08:31:05.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a7a7514-536f-47cc-aa2b-c1ed199716ea", + "createdTime": "2021-01-08T08:31:04.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "62c4563b-165f-4c53-a6d5-cc818a6b2d58", + "createdTime": "2021-01-08T08:31:03.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c1c3a7b-e961-4cf0-a017-a0c2d2a1dbd9", + "createdTime": "2021-01-08T08:24:03.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "37e6d2ae-b8be-4c9b-bc15-94409a75a76c", + "createdTime": "2021-01-08T08:24:03.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0aaf1452-6196-4b20-9943-9e1fa0f65ae0", + "createdTime": "2021-01-08T08:24:02.676Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5642370a-8f06-48b3-9ba4-b411786341a4", + "createdTime": "2021-01-08T08:20:27.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "46e0b1a4-6060-43c4-be06-f61eac335332", + "createdTime": "2021-01-08T08:20:27.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "34165f68-9651-4b93-b439-175e59742b42", + "createdTime": "2021-01-08T08:20:26.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db900127-085d-4015-b00d-8e903fae1abb", + "createdTime": "2021-01-08T08:20:25.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c200cb0-b64a-4d88-b273-189f2ef383ef", + "createdTime": "2021-01-07T20:32:34.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d5375094-3375-4f29-a462-aef497ef688f", + "createdTime": "2021-01-07T20:31:27.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "731c57a9-bf59-4d58-b633-5c42035e0c2d", + "createdTime": "2021-01-07T20:31:00.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a3a2fa75-8647-4d89-8d36-666456ae9248", + "createdTime": "2021-01-07T20:37:58.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c4778511-4c1b-42fd-9bc5-7ea1c824f599", + "createdTime": "2021-01-07T20:37:57.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b462f0c-69ca-4cde-8a32-e8a5a838d006", + "createdTime": "2021-01-07T20:37:56.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c4a8ee4c-75a2-4c73-b33d-a6b01323dea2", + "createdTime": "2021-01-07T20:37:56.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe52092e-c14c-4a23-af30-3355ca35d1e8", + "createdTime": "2021-01-07T20:30:44.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "47009bb6-8bbc-46c9-ac99-8e07f5348701", + "createdTime": "2021-01-07T20:34:37.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2b4163ca-7b37-4644-bb13-d1a2da37efd6", + "createdTime": "2021-01-07T20:34:37.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfb438bc-33b4-40a2-925c-43477d1b8166", + "createdTime": "2021-01-07T20:34:36.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0bfda9de-8f70-4fdf-8928-0c3cfc5b08ca", + "createdTime": "2021-01-07T20:34:35.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3a36b14-634f-44f0-8ab4-0ce84c53598c", + "createdTime": "2021-01-07T20:32:35.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1abf8598-9c59-4e74-9af4-5512d3af3c9c", + "createdTime": "2021-01-07T20:32:34.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6270b3be-17d3-4e6f-9442-2f9d58f788f1", + "createdTime": "2021-01-07T20:32:33.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b545b63-adea-4f4c-b2ac-498550fd60f8", + "createdTime": "2021-01-07T20:31:28.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "59d62a3c-1a0f-48cc-9aeb-30f72d9b9f8a", + "createdTime": "2021-01-07T20:31:27.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70200b3a-97fd-43fe-8f69-2b2751138b45", + "createdTime": "2021-01-07T20:31:26.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be557bac-f974-440c-9f0d-936117a34816", + "createdTime": "2021-01-07T20:31:00.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ceaa184b-e803-411b-a512-74a443ad3f6c", + "createdTime": "2021-01-07T20:30:59.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "75e47d24-1dac-4e5b-b4f9-93143e989cbb", + "createdTime": "2021-01-07T20:30:59.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fea3df2-81ab-44d5-900f-99b80693ea1f", + "createdTime": "2021-01-07T20:30:45.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c58646fc-68ba-4f35-9d2f-f7925c47609e", + "createdTime": "2021-01-07T20:30:44.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8b0394c7-42d5-4f3f-bf6d-454df504e599", + "createdTime": "2021-01-07T20:30:43.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b43c4b78-499e-4cd7-8b37-16f2b3602830", + "createdTime": "2021-01-07T20:29:52.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "009adfe8-76f4-4073-ab1c-a86bee525c6c", + "createdTime": "2021-01-07T20:29:51.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ce356f97-6328-4f59-9f3e-49ca8bf04fe2", + "createdTime": "2021-01-07T20:29:51.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "99575c51-9f43-49e7-b2ee-edfb41718a11", + "createdTime": "2021-01-07T20:29:50.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e74fe55-d337-473b-8366-f5af9da6cfc2", + "createdTime": "2021-01-07T16:33:57.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e1dc8518-68dc-489e-b398-e4be3eacabd5", + "createdTime": "2021-01-07T16:43:59.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "baaf7319-0946-4616-b851-5ec22c147301", + "createdTime": "2021-01-07T16:47:33.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8f5c7147-54a4-4191-9aa7-05c92035176d", + "createdTime": "2021-01-07T16:47:32.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a2b82963-d5f0-4ebd-a9d7-a9bb438687a2", + "createdTime": "2021-01-07T16:47:31.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "233c721e-1349-49c3-8379-f281d933a3e4", + "createdTime": "2021-01-07T16:47:30.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3df87eb9-1f3f-4943-a101-8ce18777ab88", + "createdTime": "2021-01-07T16:43:58.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "70b4d19f-02ad-4c38-a679-2ed7da213600", + "createdTime": "2021-01-07T16:43:58.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e9ab0f5-71b2-4dfa-a694-37604230e0f3", + "createdTime": "2021-01-07T16:43:57.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c58732b4-dcc9-46d8-baad-afc8080dcc3f", + "createdTime": "2021-01-07T16:33:57.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9de406b9-3386-4a10-b723-e674571c60bc", + "createdTime": "2021-01-07T16:33:56.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e4c987db-ba9d-44a4-b364-ed14d37b714f", + "createdTime": "2021-01-07T16:33:56.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c88af87a-6f6e-4f18-8190-13db70a53587", + "createdTime": "2021-01-07T16:30:50.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d1017176-83c7-4143-ab8b-3dfb6a8069b0", + "createdTime": "2021-01-07T16:30:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "29c988f5-893c-42e6-b8c6-aa839375b232", + "createdTime": "2021-01-07T16:30:48.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2a140a60-1e77-44c7-ad58-6b6375f3d8e5", + "createdTime": "2021-01-07T16:30:48.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f96929c-67c8-464b-b19b-0bcde1bca9c0", + "createdTime": "2021-01-07T09:17:24.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa706dfa-12dc-4a1a-9565-e7afc81d93d3", + "createdTime": "2021-01-07T09:17:23.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67ce7331-d98e-439a-95a4-71048dc09ef2", + "createdTime": "2021-01-07T09:17:22.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "746bc147-d7a0-4046-a5ea-c3043b006bd6", + "createdTime": "2021-01-07T09:17:21.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d33ed75c-d76d-4c99-93f1-f7e94e03c6cc", + "createdTime": "2021-01-07T09:12:15.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5dbe11ac-1bf8-40f9-b8df-f5b57864e9cd", + "createdTime": "2021-01-07T09:12:14.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cfadf8a7-bf8e-414f-9211-ef2c88745fa0", + "createdTime": "2021-01-07T09:12:13.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3faf39b7-c6dc-42d6-8264-592d45acab9a", + "createdTime": "2021-01-07T09:12:13.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83b94647-9148-4492-8a5d-556c505f9870", + "createdTime": "2021-01-07T09:02:17.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f4e792c6-bc77-4c9f-92db-9077aace6121", + "createdTime": "2021-01-07T09:02:17.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c3502e3-15a5-4ed2-8db8-13d627ecbae2", + "createdTime": "2021-01-07T09:02:16.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "391850fe-1642-440e-93d8-1ecc6faf3a4a", + "createdTime": "2021-01-07T09:02:15.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "975777f6-0665-4961-874b-a4662d4bb658", + "createdTime": "2021-01-07T08:58:36.172Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b709192-fb5a-47f5-93f3-82bbadf8b8d9", + "createdTime": "2021-01-07T08:58:35.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64377cf8-2dc1-4a2a-ba51-4b2c8e75559b", + "createdTime": "2021-01-07T08:58:34.404Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c7dc766-38c6-4f47-8f72-ab6b905eb109", + "createdTime": "2021-01-07T08:58:33.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4092e3a6-3a91-4e02-8294-43671ac04f8c", + "createdTime": "2021-01-07T08:48:40.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "87fd7dcb-ccd3-4fdd-b086-5d8b18e24f80", + "createdTime": "2021-01-07T08:48:39.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "710f1cc6-ed0f-46f5-8a8d-3fb2290779e6", + "createdTime": "2021-01-07T08:48:38.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "373d3fe6-f2d0-4dcf-8c8b-85cd2a71feff", + "createdTime": "2021-01-07T08:48:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8ab0ac8-40eb-494a-8b03-5e1cc66e9000", + "createdTime": "2021-01-07T08:34:26.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "82b00b92-bb64-4a07-895b-d615b3b4e01f", + "createdTime": "2021-01-07T08:38:21.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24fecac1-6c6a-4ff4-bbee-9f5fe5efa7eb", + "createdTime": "2021-01-07T08:27:13.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "086e37af-2f8f-44ef-a76b-01c3ecd72755", + "createdTime": "2021-01-07T08:38:20.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4b77e2b9-d109-4921-b4ed-99496c6741b5", + "createdTime": "2021-01-07T08:38:19.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "702e6948-2c78-49a4-a000-1f347e89c03c", + "createdTime": "2021-01-07T08:38:18.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93de05b1-a95d-44c9-af31-86dccdbaf8e2", + "createdTime": "2021-01-07T08:34:25.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b1c7a320-4487-400b-a18a-dd6b95548f5c", + "createdTime": "2021-01-07T08:34:24.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ef9cd63-ad30-4480-aa79-b1c22101c788", + "createdTime": "2021-01-07T08:34:23.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "13c54a4f-7059-49d4-b58a-7044e4e870ea", + "createdTime": "2021-01-07T08:27:13.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fc0cbe70-008c-4e82-848c-c31a67ff2053", + "createdTime": "2021-01-07T08:27:12.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "85b5f815-87f5-4412-bede-3335967cadfa", + "createdTime": "2021-01-07T08:27:12.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f655c99-5101-4cd1-a52d-e28865a03d5c", + "createdTime": "2021-01-07T08:23:42.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fbcf17de-927f-4439-b7e2-fa2de31d646b", + "createdTime": "2021-01-07T08:23:41.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5cc8067-fcda-44bb-ac75-0602a046d03e", + "createdTime": "2021-01-07T08:23:40.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5973202d-5fd8-4c28-8f00-f0c353a252cd", + "createdTime": "2021-01-07T08:23:39.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c306480c-3e2f-4f93-b474-b546643ce6d8", + "createdTime": "2021-01-06T20:11:31.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9cbd2e9c-6dd9-463a-92f4-4642c9d76720", + "createdTime": "2021-01-06T20:10:07.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "db9dec9c-43b4-4df1-8335-d7a2484c963c", + "createdTime": "2021-01-06T20:04:04.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "330e0973-1733-4f2f-aab3-9d8e628ced39", + "createdTime": "2021-01-06T20:06:04.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "06b204be-8a1b-41f6-81c2-8ea65466f519", + "createdTime": "2021-01-06T20:04:52.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "306c872b-86af-477d-93d7-b5a574e715f4", + "createdTime": "2021-01-06T20:05:40.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b76f3df8-b3fe-4a4c-9d54-5a387f24b4e8", + "createdTime": "2021-01-06T20:11:31.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "41bea400-29ce-49e4-98bd-598c0b42feda", + "createdTime": "2021-01-06T20:11:30.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "679b4fe3-a5fa-48a1-84d5-380035d53dfd", + "createdTime": "2021-01-06T20:11:30.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d409f116-5019-4209-8d49-dbb53a5eb1b3", + "createdTime": "2021-01-06T20:10:08.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "36b3b079-6643-4d2a-b093-b9537e4c3075", + "createdTime": "2021-01-06T20:10:07.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ef19a07-7da3-4046-b39e-192fd1352e7e", + "createdTime": "2021-01-06T20:10:06.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbd1997b-0040-4b42-b603-d99419559ab8", + "createdTime": "2021-01-06T20:06:05.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "df627e4c-d183-429b-990b-576fa76f44be", + "createdTime": "2021-01-06T20:06:04.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4d84b45b-4c8c-4f5b-bbe8-9f47506734c2", + "createdTime": "2021-01-06T20:06:03.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fc3f8d9-c8b7-4072-beee-07f0a2cc9e19", + "createdTime": "2021-01-06T20:05:41.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "eae8da1c-a9f7-411c-a286-3577ef09ad3f", + "createdTime": "2021-01-06T20:05:40.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c10a9c0c-f2fc-49f3-80ae-470bcd0c5a5f", + "createdTime": "2021-01-06T20:05:39.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e34ff20-aa1c-4db7-a39d-2e67b91177fa", + "createdTime": "2021-01-06T20:04:53.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5beefbc3-2e08-4d6a-b662-4042cf87cec2", + "createdTime": "2021-01-06T20:04:52.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "60293fb8-f1af-4726-b5d5-f3e3bd2380b5", + "createdTime": "2021-01-06T20:04:51.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73b96542-6162-4b80-8ca5-8d00c273bd71", + "createdTime": "2021-01-06T20:04:05.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f68141b7-1303-4907-af78-cebed40ed5ad", + "createdTime": "2021-01-06T20:04:04.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2e37eb2d-fc0f-4257-ad1c-2b23f5c673de", + "createdTime": "2021-01-06T20:04:03.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd8f29d3-46c4-45b7-98e7-3ed35a3c84a1", + "createdTime": "2021-01-06T20:04:02.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a173a5ea-ff49-4ece-975d-a2d54eacf72c", + "createdTime": "2021-01-06T20:04:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b6047b56-f182-4660-9177-beebb4039da0", + "createdTime": "2021-01-06T20:04:01.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "51097fe3-8fb4-42bc-847b-bf1b40b7402e", + "createdTime": "2021-01-06T20:04:00.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "403f1e86-ad93-472c-88ed-3dd5eab80a17", + "createdTime": "2021-01-06T09:12:47.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8061eeb2-e08d-4667-af76-9f7d0e7d22fd", + "createdTime": "2021-01-06T09:12:46.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8a97e5e9-3457-44c7-8394-e56e960b8d13", + "createdTime": "2021-01-06T09:12:45.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d4610f0f-dcd3-48ca-a330-86df5960081e", + "createdTime": "2021-01-06T09:12:45.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61781ae4-57ef-424f-808e-051ba64c2f6c", + "createdTime": "2021-01-06T09:09:06.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f9c3196-9cc4-4060-8d25-def5953e89a9", + "createdTime": "2021-01-06T09:09:05.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09dc38d6-2b83-4b5e-9648-78d45fe0226d", + "createdTime": "2021-01-06T09:09:05.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3a904ff7-4b7f-4dab-8d2e-9ff52a501ff2", + "createdTime": "2021-01-06T09:09:04.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "01f14b17-a73f-4a60-8aa0-45836666334b", + "createdTime": "2021-01-06T09:01:57.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "15dc4aff-c7b4-4e46-9728-12a233523a2c", + "createdTime": "2021-01-06T09:01:56.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1965ecb-1021-4772-8d48-d3f30eed3194", + "createdTime": "2021-01-06T09:01:56.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c391b8e-6280-4527-9f49-5147ee595254", + "createdTime": "2021-01-06T09:01:55.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0588ce5a-42ca-41cc-99d3-72db10a5f281", + "createdTime": "2021-01-06T08:58:14.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eda40fcc-c557-49a5-883f-63b1340247a3", + "createdTime": "2021-01-06T08:58:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "95fc0025-7b59-4d87-9ec9-983a0d4ec1d3", + "createdTime": "2021-01-06T08:58:13.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c226c1e-a929-4cb3-9bad-2ec33f237d94", + "createdTime": "2021-01-06T08:58:12.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "99612ded-53c6-4f4a-ab4d-91b9707643db", + "createdTime": "2021-01-06T08:49:11.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "16f05f71-8c93-4ac8-b5b2-07c496eb123b", + "createdTime": "2021-01-06T08:49:11.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9fb3f47-14fd-4b80-a41a-bd0fe9c8eeda", + "createdTime": "2021-01-06T08:49:10.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fee91e3a-e57c-473d-af57-4a61f47c6268", + "createdTime": "2021-01-06T08:49:09.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2f9f990-d516-4ca7-90cd-43dd061fd8cf", + "createdTime": "2021-01-06T08:35:31.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa94b870-2e1e-48b7-b153-e2f867a77ea1", + "createdTime": "2021-01-06T08:39:28.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92bf4cb1-4231-407d-b46a-85fa85b2c86c", + "createdTime": "2021-01-06T08:28:20.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "81911393-c70d-4657-8e56-9447791ca354", + "createdTime": "2021-01-06T08:39:27.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5092c6c-6500-423d-857f-b293032ca481", + "createdTime": "2021-01-06T08:39:26.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "99dba31c-4383-48e5-afbf-a0581d406c38", + "createdTime": "2021-01-06T08:39:25.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "68a5153d-d171-4023-a17a-150bbcd039ac", + "createdTime": "2021-01-06T08:35:30.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd262c7-8e03-43f9-a350-ef75a9e06b1c", + "createdTime": "2021-01-06T08:35:30.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5088b1a1-f880-4c32-8a3b-144c84f6b1e7", + "createdTime": "2021-01-06T08:35:29.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a9572a0-10c0-46de-9693-57fa316986f8", + "createdTime": "2021-01-06T08:28:19.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fd7217a7-558b-4c71-bacf-5e6d11597766", + "createdTime": "2021-01-06T08:28:19.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dca03f60-f9f2-4fac-88c3-8eeb97872a88", + "createdTime": "2021-01-06T08:28:18.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8320ec-4fda-42db-84c1-952f3455bff0", + "createdTime": "2021-01-06T08:23:01.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ba7e1d-1c5f-4f60-8621-dd765fa238f5", + "createdTime": "2021-01-06T08:23:01.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ca1b8e7d-e9a9-473d-8fc6-389425b241a8", + "createdTime": "2021-01-06T08:23:00.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7e5ec12c-abea-49a1-8358-e0139acf4595", + "createdTime": "2021-01-06T08:23:00.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d8c4e11-d796-4b8b-a429-9757dac9a42b", + "createdTime": "2021-01-05T20:05:48.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6901cca4-201b-480d-a927-e71ee2f68d0f", + "createdTime": "2021-01-05T20:06:39.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1ba1506c-1988-483d-a326-031ca2b7f2b4", + "createdTime": "2021-01-05T20:12:32.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5ddea8f-042b-4090-af63-8a334243ce60", + "createdTime": "2021-01-05T20:05:19.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "adbc06d9-d686-4040-b4f8-ff737ad09ef2", + "createdTime": "2021-01-05T20:07:09.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4a3d3217-fbc7-45b2-8fec-f2dacbc96c88", + "createdTime": "2021-01-05T20:12:59.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "066cea83-9d22-4442-ac69-88209f5f6eca", + "createdTime": "2021-01-05T20:12:59.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "143bb02b-8959-4e99-b0a3-d6717d29d302", + "createdTime": "2021-01-05T20:12:58.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4ba2718c-dec0-43c0-8f3d-a8e51c1fe32b", + "createdTime": "2021-01-05T20:12:58.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86a0943c-4879-4e74-b95f-b5dcd4d9657d", + "createdTime": "2021-01-05T20:12:33.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c2c0a85c-0cf9-4f55-a52d-9e382dc9ea61", + "createdTime": "2021-01-05T20:12:32.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f6ad566d-ba90-4ea5-94ac-213b108d59d6", + "createdTime": "2021-01-05T20:12:31.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "117b2caa-76c5-4cfe-b326-9cf708d8599c", + "createdTime": "2021-01-05T20:07:10.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6fcefd5b-d519-46be-9eac-569b10f1daa8", + "createdTime": "2021-01-05T20:07:09.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "784fdb55-97d0-402c-a4e0-6d0793eea60c", + "createdTime": "2021-01-05T20:07:08.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3bc7750-7124-45c1-b5a9-d2f382087435", + "createdTime": "2021-01-05T20:06:40.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fee82735-493a-4210-ac33-dea0acfab036", + "createdTime": "2021-01-05T20:06:38.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "adaa52d4-17b2-4067-b478-2018fd685f63", + "createdTime": "2021-01-05T20:06:37.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d02b463-6de2-48ae-83ab-bcfd6afc1924", + "createdTime": "2021-01-05T20:05:49.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "774e5149-ea51-4d02-b111-20bafb0002c4", + "createdTime": "2021-01-05T20:05:48.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "70c87b28-71d9-4c20-929f-db07296a77bc", + "createdTime": "2021-01-05T20:05:47.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de292309-30e6-4b9f-857c-7fe2eaee3549", + "createdTime": "2021-01-05T20:05:19.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0a2a4c69-c50c-4b28-886f-db71781a5e8e", + "createdTime": "2021-01-05T20:05:19.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b2bd50a7-cccf-4035-a7ad-154dd06693f0", + "createdTime": "2021-01-05T20:05:19.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68c956d8-8cf2-4e6a-b020-5ac8222ed5fd", + "createdTime": "2021-01-05T20:05:18.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "04ca474e-cf0a-4d3d-a71d-d790360d6336", + "createdTime": "2021-01-05T20:05:18.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fa8c8fcf-c393-4e78-84fc-14c7b155c196", + "createdTime": "2021-01-05T20:05:18.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae90d862-cf01-4ca9-9686-48891f6e17e3", + "createdTime": "2021-01-05T20:05:18.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b88b9e65-7d7f-4caf-ba78-888f58ad12da", + "createdTime": "2021-01-05T09:15:49.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25949c34-f8a6-4d76-b415-eefaae7d74bc", + "createdTime": "2021-01-05T09:15:48.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9968bc0-bcc9-4746-a9f6-c9bc9f5f1921", + "createdTime": "2021-01-05T09:15:48.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "60bed383-d8b9-4af0-b41d-137631787a18", + "createdTime": "2021-01-05T09:15:47.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a12fb560-04d5-461a-bc57-2c16391f8a78", + "createdTime": "2021-01-05T09:12:11.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17446967-da54-47a7-ae09-a461a3703559", + "createdTime": "2021-01-05T09:12:10.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b0bf7cf-f840-4fbe-bc54-c616e6f3e98a", + "createdTime": "2021-01-05T09:12:09.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b6bbe1c-9a79-478d-aaf7-9405add570f2", + "createdTime": "2021-01-05T09:12:09.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cbba494-7d47-46f1-9ce7-3de9d1209995", + "createdTime": "2021-01-05T09:00:18.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d597e9f4-6a4e-4a0f-a25f-cb4d179371ce", + "createdTime": "2021-01-05T09:00:18.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b42c5609-051b-4a91-b89a-69942df91b7b", + "createdTime": "2021-01-05T09:00:17.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ad099b7-6af9-4d4b-8b5c-c9da0c6c83dd", + "createdTime": "2021-01-05T09:00:17.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a13fa93f-83d9-48aa-9c0f-cf33e9c050a0", + "createdTime": "2021-01-05T08:56:48.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88532c49-1246-4bee-aa38-a3f0597d760f", + "createdTime": "2021-01-05T08:56:48.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a19e986a-6237-41b1-af77-cb6832eb98bb", + "createdTime": "2021-01-05T08:56:47.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "581eb52c-23c1-4652-b213-9ed53d38368a", + "createdTime": "2021-01-05T08:56:46.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a1bca85-da6c-4ebf-b95d-596accf0b80f", + "createdTime": "2021-01-05T08:47:15.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c07695e-6cf3-418c-972e-adb5058590c0", + "createdTime": "2021-01-05T08:47:14.756Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ea238045-781c-4224-a4e2-a40647bf5ccb", + "createdTime": "2021-01-05T08:47:14.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "502f2afd-4c49-43d7-bdc7-9483684f5d97", + "createdTime": "2021-01-05T08:47:13.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88525102-d45c-4cff-89bd-082d4de2001d", + "createdTime": "2021-01-05T08:31:34.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4c1811b7-0bf7-4fee-8143-0a1811caa46d", + "createdTime": "2021-01-05T08:35:17.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ca6bf768-576b-4e4f-97a0-bbc8b1fe7956", + "createdTime": "2021-01-05T08:24:09.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8caa343b-843d-425d-bfda-1a6cef555b48", + "createdTime": "2021-01-05T08:35:17.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff207966-4313-4e61-9d42-4459aeb5489c", + "createdTime": "2021-01-05T08:35:16.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4898d21e-a84a-451c-87d0-865ea5097413", + "createdTime": "2021-01-05T08:35:15.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2b54bdb-5dfa-4ef9-9caf-73eed2d4c823", + "createdTime": "2021-01-05T08:31:34.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d1e49d61-8270-408d-9e0f-11a849da1a71", + "createdTime": "2021-01-05T08:31:33.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a0c582a6-f39c-409f-964c-79400b0ad771", + "createdTime": "2021-01-05T08:31:32.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47471a55-e9f3-43f0-94bf-b4b10d65f118", + "createdTime": "2021-01-05T08:24:08.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe7f029a-646d-4927-ad8a-84ab36eaf87c", + "createdTime": "2021-01-05T08:24:08.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06b9448c-ec6b-4c34-94f3-4dc6fb9ff864", + "createdTime": "2021-01-05T08:24:07.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18af88bd-3812-4380-8997-890ff1f73963", + "createdTime": "2021-01-05T08:20:31.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "29ceb2ed-c53b-4099-ac33-5990889f26b0", + "createdTime": "2021-01-05T08:20:30.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e0bd0eb-5c0a-4531-881e-969918812006", + "createdTime": "2021-01-05T08:20:29.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3efa88b3-3bc1-49bb-87f8-3ca3232393cd", + "createdTime": "2021-01-05T08:20:28.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fcfcb359-8f07-42aa-9f8a-96ef50fc66bb", + "createdTime": "2021-01-04T20:10:12.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e9244948-7645-4967-a292-3ef19041542a", + "createdTime": "2021-01-04T20:09:02.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "76fbc739-5978-4afe-acf6-0bb14822b458", + "createdTime": "2021-01-04T20:08:47.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b84163ab-cdd5-473d-81d6-6e861ca68e98", + "createdTime": "2021-01-04T20:08:37.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "868e70e1-a242-4e1e-b544-4c045f7598c5", + "createdTime": "2021-01-04T20:08:24.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "60d28e8f-bcdd-4d6a-8161-0de1b58c7314", + "createdTime": "2021-01-04T20:13:20.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1bcfff35-2d4f-4770-a11c-cc5e4374a62c", + "createdTime": "2021-01-04T20:13:21.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be905caf-26ab-4357-b235-98c09de80e34", + "createdTime": "2021-01-04T20:13:20.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f05bbb7c-9883-4d4d-9b2e-e650c1e5553e", + "createdTime": "2021-01-04T20:13:19.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "19a76c0b-b45a-40f0-a199-a96228a905fe", + "createdTime": "2021-01-04T20:10:13.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "57d551c5-794c-4eca-a442-ae3614e58150", + "createdTime": "2021-01-04T20:10:11.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4a95c802-1443-416e-982f-08336dd8bfcb", + "createdTime": "2021-01-04T20:10:11.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "240a23da-3e7d-4690-af63-c1196003aaf6", + "createdTime": "2021-01-04T20:09:03.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6ce3b63c-b165-47f3-9014-fdb27f600bc9", + "createdTime": "2021-01-04T20:09:01.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c38bb76b-4ca6-4090-8d21-a93104852db3", + "createdTime": "2021-01-04T20:09:01.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5eacd696-4f34-46ae-a3a0-11d1a5f783cc", + "createdTime": "2021-01-04T20:08:48.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "75b0d4c1-8724-4f02-a95e-c69b57f962b3", + "createdTime": "2021-01-04T20:08:46.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e9007cd-92c1-415f-b33a-b7147419a1e4", + "createdTime": "2021-01-04T20:08:45.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a04655c-6d0b-498d-b3d1-137a94a68759", + "createdTime": "2021-01-04T20:08:38.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8488dbd0-900d-4990-be67-fd7f891cfaa5", + "createdTime": "2021-01-04T20:08:36.146Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2ae21ef0-4a4e-4c26-8653-59dccf5d9921", + "createdTime": "2021-01-04T20:08:34.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39ed981f-f021-4240-8a07-bb1ebb5fd9c4", + "createdTime": "2021-01-04T20:08:25.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "68803e0c-b85b-45b9-8814-073ab38e0ade", + "createdTime": "2021-01-04T20:08:23.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0e80580f-1360-4cbc-a0d4-b33b59d009e6", + "createdTime": "2021-01-04T20:08:22.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f20f944c-4887-485d-9e33-f299672b6e38", + "createdTime": "2021-01-04T20:08:07.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6d87c7ad-2867-44eb-837b-6594627e2d7f", + "createdTime": "2021-01-04T20:08:06.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8178a627-f47f-41c5-af4c-f3556c29df2d", + "createdTime": "2021-01-04T20:08:06.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1222dc5e-854a-4546-a20b-647f72b6df19", + "createdTime": "2021-01-04T20:08:05.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22ce40a8-7700-4ce4-aa68-a17bddfcddc6", + "createdTime": "2021-01-04T09:13:08.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f9f3bc6-c5b5-4974-9547-f8e1e0681639", + "createdTime": "2021-01-04T09:13:08.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1658f216-21a9-47a5-9ba9-be5f4a7e9864", + "createdTime": "2021-01-04T09:13:07.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc199980-922b-4675-8a95-2eebe390cabd", + "createdTime": "2021-01-04T09:13:07.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "84b7e2a6-a964-4c80-949d-f0b876bbd1d3", + "createdTime": "2021-01-04T09:09:29.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ec9e34e3-b9e6-48fd-abbd-661ad22936c6", + "createdTime": "2021-01-04T09:09:28.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99034b33-7266-4a3b-87bf-8c49b4778f7b", + "createdTime": "2021-01-04T09:09:27.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc42e2a9-530d-4c0d-a38b-8e712cf9f9c7", + "createdTime": "2021-01-04T09:09:26.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1933c37-8825-4d5f-a03e-4661d6747e47", + "createdTime": "2021-01-04T09:00:25.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "389c05d2-e7cc-4afc-9315-b9262388ac4e", + "createdTime": "2021-01-04T09:00:25.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b8a8bff6-42ee-4238-9226-1a24a10c44d1", + "createdTime": "2021-01-04T09:00:24.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63320392-ea24-42ab-b306-5f11006e1b46", + "createdTime": "2021-01-04T09:00:23.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdda947f-9075-47b9-8f0a-43d64ac51f15", + "createdTime": "2021-01-04T08:56:47.965Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "94a52817-618d-4715-a440-c90e56005ebf", + "createdTime": "2021-01-04T08:56:47.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c8d041-f2ec-4dc1-be3b-99cd4f9bc6bd", + "createdTime": "2021-01-04T08:56:46.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "155417f3-adc5-400f-a9c3-8bc323aec64d", + "createdTime": "2021-01-04T08:56:45.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d51d026e-02c8-4cb6-8075-00a52d06929f", + "createdTime": "2021-01-04T08:48:02.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "feda9901-4988-4fbd-b4dd-c73126991d02", + "createdTime": "2021-01-04T08:48:01.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "41ce8ea5-6fcd-4805-bd36-9f6f8d19a9f1", + "createdTime": "2021-01-04T08:48:01.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46158b6e-7cca-4564-bd06-fd3c2fecc8a6", + "createdTime": "2021-01-04T08:48:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6eeee9f-350a-46b7-af1a-f45a72e17376", + "createdTime": "2021-01-04T08:31:51.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e3acb57-e717-4b0d-adf3-a84debc0bd4e", + "createdTime": "2021-01-04T08:24:44.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e16109ad-becd-477e-a2de-bb6f55ca4c51", + "createdTime": "2021-01-04T08:35:30.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7cb678e5-aa76-4392-91ad-1f8afae46610", + "createdTime": "2021-01-04T08:35:29.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "932e7047-aa00-4821-a823-36248d7876de", + "createdTime": "2021-01-04T08:35:28.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd050682-d6f3-496f-a0d4-72748c32c165", + "createdTime": "2021-01-04T08:35:27.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d5affab-4f1e-44a2-b74e-7098add0106d", + "createdTime": "2021-01-04T08:31:50.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "53600b80-6363-4779-98b1-55d223f7e4c4", + "createdTime": "2021-01-04T08:31:50.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "90d7d2a8-4228-4800-ade6-2f79275ff7f8", + "createdTime": "2021-01-04T08:31:49.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b7d834c-ff27-4e4b-abf6-571cc59e7931", + "createdTime": "2021-01-04T08:24:43.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3f47ea7a-7dfd-4aa9-8c8d-f6d76ed68a55", + "createdTime": "2021-01-04T08:24:42.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63881cc6-b107-4fee-a73d-67a4ea777a27", + "createdTime": "2021-01-04T08:24:41.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05c3da49-ede2-44a2-81df-daacdfda9814", + "createdTime": "2021-01-04T08:20:58.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03e31d03-cddb-4ef2-abe1-43718a708bd7", + "createdTime": "2021-01-04T08:20:57.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51bfbaf0-20b4-4243-bed4-b7dd2b47d958", + "createdTime": "2021-01-04T08:20:57.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e3442c6-656a-484d-a0d3-2156cf3d9c52", + "createdTime": "2021-01-04T08:20:56.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "27a4dee6-070b-4af9-9c9f-caef9194d7c2", + "createdTime": "2021-01-01T09:08:19.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c419bfc-6287-4b26-bc83-9bf4f53f0123", + "createdTime": "2021-01-01T09:08:18.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dcbc058-53a8-4dd1-bfde-9f63247fe5c4", + "createdTime": "2021-01-01T09:08:17.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7fa95f02-9561-4c31-adc6-58531cfebd6e", + "createdTime": "2021-01-01T09:08:17.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdb75060-cffa-4288-b829-1baaa7591b50", + "createdTime": "2021-01-01T09:04:59.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "14ed2d4c-9b17-435b-be34-c021fab0a78d", + "createdTime": "2021-01-01T09:04:58.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d06be283-86f3-457d-a8a8-39aa7c79f38d", + "createdTime": "2021-01-01T09:04:58.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f78f6c85-91e1-4f9f-883a-c754fa2dceeb", + "createdTime": "2021-01-01T09:04:57.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45166c9f-66b6-4e11-96d2-0ca64f7b9a90", + "createdTime": "2021-01-01T08:58:18.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ca074c-bc6b-4d03-8c57-bb847f5897b9", + "createdTime": "2021-01-01T08:58:17.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eea77a54-32f7-45a0-aaf3-3d5fa61bbe1f", + "createdTime": "2021-01-01T08:58:17.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce6b2a85-81d1-4593-8e24-a3a10c274014", + "createdTime": "2021-01-01T08:58:16.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9a6f78e-ede2-4f9f-8fe5-1de1b8ad0b8b", + "createdTime": "2021-01-01T08:54:34.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1ef59c34-e24b-4fef-beef-49a9cc3efe30", + "createdTime": "2021-01-01T08:54:33.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "01d28f54-c798-4fdb-9327-f3e6edcf1b1e", + "createdTime": "2021-01-01T08:54:32.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "56bb5c41-150f-42dd-85fc-0ca189c6dda7", + "createdTime": "2021-01-01T08:54:32.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7d4a1cc-fbf4-4e4b-81aa-2fcb41924c8c", + "createdTime": "2021-01-01T08:45:36.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8034fff3-e20f-4e55-9bb4-c57e3b43a067", + "createdTime": "2021-01-01T08:45:35.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2c067c15-2a63-4405-a48d-bbb8c9d910ed", + "createdTime": "2021-01-01T08:45:35.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e2cbf03-9d7c-4450-a5a4-39c691bd3074", + "createdTime": "2021-01-01T08:45:34.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccef1e17-b02c-45eb-ad4c-c8a27c65afca", + "createdTime": "2021-01-01T08:23:57.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92222554-284f-4aa6-8b47-1a4fd2a98bc0", + "createdTime": "2021-01-01T08:35:31.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "168ca31f-ce5b-41ac-b251-c358c10e00aa", + "createdTime": "2021-01-01T08:32:15.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d72479e4-03d3-4961-9074-2acbe41bad90", + "createdTime": "2021-01-01T08:35:31.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a5b1b7d-93a1-4fcd-840e-b99a295950be", + "createdTime": "2021-01-01T08:35:30.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f6a67f42-20f1-4381-8840-adef96d4d0ca", + "createdTime": "2021-01-01T08:35:29.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4907a9d7-0e34-4657-86bc-d1b9b7458d9a", + "createdTime": "2021-01-01T08:32:14.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cdfda8f-0f0d-4c9c-b36f-64b158b74f7a", + "createdTime": "2021-01-01T08:32:13.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "072c2766-da2c-44a4-a603-c83fbdf532b5", + "createdTime": "2021-01-01T08:32:13.188Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e7fbd19-88b9-46ed-8e70-649155e7af2d", + "createdTime": "2021-01-01T08:23:57.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b01c6998-e989-4930-a12e-d186a1569704", + "createdTime": "2021-01-01T08:23:56.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d300a4d1-9552-40cd-87f0-b50f7ccfb60e", + "createdTime": "2021-01-01T08:23:56.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c26f93-56ae-4072-a84a-84b4aab2da0a", + "createdTime": "2021-01-01T08:20:28.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5f2c9fc2-e426-488e-b13f-47aa6ebaa47f", + "createdTime": "2021-01-01T08:20:27.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39f33192-b7bd-49b5-a8d1-f2bd2e30b004", + "createdTime": "2021-01-01T08:20:26.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06074f4a-7a39-4628-ae55-8234f1e0e8e6", + "createdTime": "2021-01-01T08:20:25.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f88e27e-428f-41f9-a66a-f90c5e6783a8", + "createdTime": "2021-01-01T01:12:31.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a119087-2769-4c50-b435-8c41de441b67", + "createdTime": "2021-01-01T01:12:30.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "42e28b3b-ba6c-4982-84c7-283759475bc4", + "createdTime": "2021-01-01T01:12:29.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c446c0af-eda5-44c7-9ece-1eb46b688983", + "createdTime": "2021-01-01T01:12:28.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "563902a7-9dd6-430d-bec9-aed4775f5c1d", + "createdTime": "2021-01-01T01:09:03.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "abe553d6-0459-4a8a-a2f3-e7170f429fb7", + "createdTime": "2021-01-01T01:09:03.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09400a89-486b-45ad-85dd-09e3dcafc870", + "createdTime": "2021-01-01T01:09:02.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ac6e1fe0-a61b-4fc8-b464-612dfd478ce4", + "createdTime": "2021-01-01T01:09:01.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b80c88d4-e84a-430b-a63d-00fa3e99a6ea", + "createdTime": "2020-12-31T09:10:53.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f403490a-dc0e-422e-b67e-04d77865ba7d", + "createdTime": "2020-12-31T09:10:53.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a803b079-e58a-4eaa-801c-3cd8d06dd06d", + "createdTime": "2020-12-31T09:10:52.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "95d916a6-88dd-43a0-bbe8-3e73329f933d", + "createdTime": "2020-12-31T09:10:52.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a1c0c80-8334-408b-9df2-943e94639ac1", + "createdTime": "2020-12-31T09:07:32.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27ba7945-a2b1-4575-a000-1870240c2039", + "createdTime": "2020-12-31T09:07:31.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "024388a8-e204-4fdf-b750-199a7ae18ff7", + "createdTime": "2020-12-31T09:07:31.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "47289e8b-1af1-486b-b8fb-794a2d287064", + "createdTime": "2020-12-31T09:07:30.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c3ae44ec-c9c9-4136-be64-009ac889beff", + "createdTime": "2020-12-31T09:00:41.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ef4ae2cc-d5ed-4078-9444-9ffcf94f2122", + "createdTime": "2020-12-31T09:00:40.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "daad3f1a-df51-47a9-8998-3c054105a70e", + "createdTime": "2020-12-31T09:00:39.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c540a912-6d51-4271-b432-b052b24408c9", + "createdTime": "2020-12-31T09:00:38.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4312387a-3e20-4212-bd35-97aa26fdaacf", + "createdTime": "2020-12-31T08:57:04.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88065dff-4929-4419-bb62-927a0e52cced", + "createdTime": "2020-12-31T08:57:03.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ed40905-54de-40a4-9839-4d548f994f3d", + "createdTime": "2020-12-31T08:57:03.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "034d466d-6d8d-41e6-92ad-0e30c3cf3ac8", + "createdTime": "2020-12-31T08:57:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16effbbf-9129-4ba1-aa90-efa377ab364c", + "createdTime": "2020-12-31T08:48:07.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f0f9b0b5-2e4a-4699-b744-5ab11562cdc5", + "createdTime": "2020-12-31T08:48:07.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75c65118-43f8-4805-b3a4-7daa2768617d", + "createdTime": "2020-12-31T08:48:06.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb8ac1f7-cf61-4ed4-842f-a1c2351c59d7", + "createdTime": "2020-12-31T08:48:05.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a52ec63-7894-47a3-8e73-dd68d028e06c", + "createdTime": "2020-12-31T08:23:58.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69b96ad4-f740-4171-9ef4-e31e6d00c6e2", + "createdTime": "2020-12-31T08:30:54.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e6bb3e32-2296-4249-8365-42697df77d71", + "createdTime": "2020-12-31T08:34:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3644b01c-d55e-4e2a-8385-0617411154c6", + "createdTime": "2020-12-31T08:34:19.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0c4bfc72-c2c5-4895-a5dc-75ebe47d3a85", + "createdTime": "2020-12-31T08:34:18.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1543d8b2-255d-40da-bac6-70e60e29860d", + "createdTime": "2020-12-31T08:34:17.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25df8f27-15af-4adf-97a4-fab634948334", + "createdTime": "2020-12-31T08:30:53.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e6c12fc-87f0-4844-94dc-2dcd0a682682", + "createdTime": "2020-12-31T08:30:52.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b4b9ab2a-2da2-4569-8a77-b26030774b0c", + "createdTime": "2020-12-31T08:30:52.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd1241fd-d0c0-4201-a439-3cf5c2b3382d", + "createdTime": "2020-12-31T08:23:58.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "07abe614-cdb8-4e3f-96cd-5ae26ef8edba", + "createdTime": "2020-12-31T08:23:57.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c9490f2-1984-4f88-86c5-1195fd14e1c0", + "createdTime": "2020-12-31T08:23:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b2bcddc-ca73-423d-afd4-25a904777b48", + "createdTime": "2020-12-31T08:20:21.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "898ca250-4e33-4c26-ac10-2ebc772f96e8", + "createdTime": "2020-12-31T08:20:20.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c8b86015-c41a-47c0-89ed-9ad6dedbb857", + "createdTime": "2020-12-31T08:20:19.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f8b42e4-9352-4437-8179-29ff8424c460", + "createdTime": "2020-12-31T08:20:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b07e861-bb7c-4694-9bd1-b810792ea492", + "createdTime": "2020-12-30T09:10:00.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63b516bc-21b6-4a3a-af74-71f9f1f1c341", + "createdTime": "2020-12-30T09:09:59.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf21194-8f56-4d2d-a2ac-9ec8f35627b1", + "createdTime": "2020-12-30T09:09:58.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a9e7c6f1-4e43-4f94-988a-4c3c07c1d94b", + "createdTime": "2020-12-30T09:09:58.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05668173-fe69-4305-b3e3-3b5d554af216", + "createdTime": "2020-12-30T09:06:37.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9a3816e-7863-44ce-884d-3e299f8d728c", + "createdTime": "2020-12-30T09:06:36.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c5492c9c-e699-43c2-b37d-bf69ee580b14", + "createdTime": "2020-12-30T09:06:35.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d118e464-2e74-4d1c-9513-77905a23d4f0", + "createdTime": "2020-12-30T09:06:34.385Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ec12b0df-7b27-4a93-97ba-124dc1bdea21", + "createdTime": "2020-12-30T08:59:19.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ea7310eb-6db3-4d75-9dfa-483458091937", + "createdTime": "2020-12-30T08:59:18.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c22aef0c-5786-4e27-a526-827c1a01d28f", + "createdTime": "2020-12-30T08:59:18.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49277e44-751f-46a0-bc8b-3aa9a07a1c88", + "createdTime": "2020-12-30T08:59:17.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fac045f-a105-4fd6-87d1-4278faca64a8", + "createdTime": "2020-12-30T08:54:45.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7ba6930-4f01-47e6-862f-0ee39644b7fe", + "createdTime": "2020-12-30T08:54:44.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6151cb8-7345-4e84-adfb-4fb11d519523", + "createdTime": "2020-12-30T08:54:44.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc37ee8d-8553-464e-bf6d-85509174b57f", + "createdTime": "2020-12-30T08:54:43.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fa3668f-f76a-4641-8c34-365a7da2318b", + "createdTime": "2020-12-30T08:45:17.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d25de72-0fbd-449e-92f9-fc068c9bb217", + "createdTime": "2020-12-30T08:45:16.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f390acec-1b19-4add-acc8-f2c1e524bdf5", + "createdTime": "2020-12-30T08:45:16.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d2442ca5-61b6-47a6-a5af-822a83fe302a", + "createdTime": "2020-12-30T08:45:15.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "654ea60a-1a4f-4e5a-9734-1c036f9ac593", + "createdTime": "2020-12-30T08:24:00.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f77d3a14-4ef3-4f08-9783-df352dfafed5", + "createdTime": "2020-12-30T08:30:37.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e9af07b6-4d21-4b0c-a00c-12c6a815e39c", + "createdTime": "2020-12-30T08:34:05.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "85a62d90-ea69-4ce6-9c47-e5d572546bd8", + "createdTime": "2020-12-30T08:34:04.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc20f9c9-71fe-4d40-8dbd-c40c23028468", + "createdTime": "2020-12-30T08:34:04.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "39eecc3d-bd42-428c-a5cf-35371f93ae3d", + "createdTime": "2020-12-30T08:34:03.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae7d2a8e-b177-402a-8f05-d8b0d8483763", + "createdTime": "2020-12-30T08:30:37.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f4abe8bd-1872-4546-bf31-ff37a74fd2e6", + "createdTime": "2020-12-30T08:30:36.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c32f021-d70f-4b25-b46d-52579af14980", + "createdTime": "2020-12-30T08:30:35.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "013d5e41-c255-4d2e-88af-e134d06ea130", + "createdTime": "2020-12-30T08:24:00.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fb037dd6-d64a-4115-8ea2-1cf946a3c17b", + "createdTime": "2020-12-30T08:23:59.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6017f41e-9064-4b1b-bd0e-ea6818efeb99", + "createdTime": "2020-12-30T08:23:59.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17203519-2edb-42cd-a363-d0a8f9251158", + "createdTime": "2020-12-30T08:20:31.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b02f56da-1920-4caa-af52-97dd2c105554", + "createdTime": "2020-12-30T08:20:30.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1fba0b3b-b990-4b38-8d5b-43d5f705831a", + "createdTime": "2020-12-30T08:20:30.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a91c53f1-57d6-4ea5-bb26-dd75444cb967", + "createdTime": "2020-12-30T08:20:29.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9149e0b0-de41-4ab5-b854-11abfafd8881", + "createdTime": "2020-12-29T20:06:25.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c3b4bef9-16a8-48ef-9d83-7ff9ac6c5229", + "createdTime": "2020-12-29T20:11:14.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "15782071-a511-49b9-b5f5-1f5c2a17c90e", + "createdTime": "2020-12-29T20:08:11.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9c0ed278-d6c7-4b75-b7e3-d17ba3f4bfda", + "createdTime": "2020-12-29T20:04:45.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f9c85808-b055-47ba-9b76-b50353e7bd07", + "createdTime": "2020-12-29T20:05:42.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "654c7f5f-1131-4c9c-b0e6-e00e533649d0", + "createdTime": "2020-12-29T20:05:32.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d61f42fe-5a0d-4c3c-a44f-53fa47b7f35f", + "createdTime": "2020-12-29T20:11:15.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b42a5cb-7b45-403d-b4bb-91c9ae97b1a2", + "createdTime": "2020-12-29T20:11:14.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e9e241e8-c6aa-4d56-8871-629fd0a58ddd", + "createdTime": "2020-12-29T20:11:13.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2981f08-bff9-4ea5-8ae5-226b670499ee", + "createdTime": "2020-12-29T20:08:12.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5bd10f34-8c39-458e-b055-cda02e1701ca", + "createdTime": "2020-12-29T20:08:10.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fe02b8c2-6a44-47e2-a363-38de53cd24a1", + "createdTime": "2020-12-29T20:08:10.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd4f4fa7-58d8-407b-94ff-dc59151e33bc", + "createdTime": "2020-12-29T20:06:26.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "28d369fb-a76a-47c8-a5dc-8eee48a47708", + "createdTime": "2020-12-29T20:06:24.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "baf125ec-97a2-4359-979c-1e4f9bdc29fa", + "createdTime": "2020-12-29T20:06:23.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7396e660-5cdd-467d-86f2-3cdfb4783abe", + "createdTime": "2020-12-29T20:05:43.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b815b5f0-715f-4739-9543-a3dd6b6239e6", + "createdTime": "2020-12-29T20:05:42.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0aa04859-fd99-47f7-995d-9b55989588c0", + "createdTime": "2020-12-29T20:05:41.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d199f29-c49c-4d0c-838e-7d3e368533f7", + "createdTime": "2020-12-29T20:05:33.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1650f2b1-4f50-4948-b667-a314a972543d", + "createdTime": "2020-12-29T20:05:31.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "26a9c1a1-c00a-48bf-90f8-478267283e3f", + "createdTime": "2020-12-29T20:05:30.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f487279-b426-4c8d-a9b8-ba708460c2e1", + "createdTime": "2020-12-29T20:04:46.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d6e0f886-e6d6-41be-b6d0-9fb1c915c5f1", + "createdTime": "2020-12-29T20:04:44.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4aea61d5-4159-461e-bcd0-da10b3764fe1", + "createdTime": "2020-12-29T20:04:44.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66d14879-fc9e-4770-a981-d3cd44b74c37", + "createdTime": "2020-12-29T20:04:39.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cf8a2cce-3f76-4b71-8d0e-1cf86425da00", + "createdTime": "2020-12-29T20:04:38.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "17153da0-a236-4f4b-b69c-ebde67ed51b3", + "createdTime": "2020-12-29T20:04:37.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b48be36b-6122-4798-ab1c-9934a4267126", + "createdTime": "2020-12-29T20:04:37.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "023a2ad4-f219-41b1-8cde-ff8d2f3c170b", + "createdTime": "2020-12-28T20:06:21.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7d43e75d-4b60-4134-942e-0cf15a945d6c", + "createdTime": "2020-12-28T20:11:57.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c16cd0c-5cc5-4315-8d7e-3e5e3af9fd9b", + "createdTime": "2020-12-28T20:11:56.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53145bbf-0a31-49f7-aae1-d9a3a8def343", + "createdTime": "2020-12-28T20:04:48.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ecb24d7d-ae9b-4166-8666-57890bfa88e0", + "createdTime": "2020-12-28T20:11:55.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "64043313-c120-4f28-9624-610d6be73193", + "createdTime": "2020-12-28T20:11:55.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d45121a0-4ec2-41db-907e-0dce1b5dad29", + "createdTime": "2020-12-28T20:04:47.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6b24502-00aa-40dc-98df-2504525c8170", + "createdTime": "2020-12-28T20:04:44.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f77c2e65-728d-4080-b923-29646fe22b27", + "createdTime": "2020-12-28T20:08:23.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "027ca7c1-7083-435d-acd4-0f276321cd42", + "createdTime": "2020-12-28T20:08:24.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dc079424-26c0-423e-9a1b-edb3652c7943", + "createdTime": "2020-12-28T20:08:22.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0af9c65f-d5e9-4678-a6c5-be7687db1b09", + "createdTime": "2020-12-28T20:08:22.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d118ce5-0c62-41f5-9861-472d529c7ebc", + "createdTime": "2020-12-28T20:06:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9e5f6691-8e09-46a5-bf78-7d0ec26a9d12", + "createdTime": "2020-12-28T20:06:21.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1123ef88-5402-4a80-ab92-6a58678524dc", + "createdTime": "2020-12-28T20:06:20.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a23602a-27ba-4be7-9c4a-423081f7f814", + "createdTime": "2020-12-28T20:04:48.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bfeed532-ff1f-4356-adb7-f9bad927a2ba", + "createdTime": "2020-12-28T20:04:47.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3a2b719f-1e17-4476-9590-64558807ccc6", + "createdTime": "2020-12-28T20:04:47.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0b83a0bd-6975-421f-986d-6c8874f47f7a", + "createdTime": "2020-12-28T20:04:46.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "079f9d92-3953-4a40-8083-8e3939aa5dd5", + "createdTime": "2020-12-28T20:04:46.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "eec9f09c-22ce-4dda-88c7-d191f2d42ed6", + "createdTime": "2020-12-28T20:04:45.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f89e2f3-daca-4c04-8921-2ff521784c95", + "createdTime": "2020-12-28T20:04:45.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9310176b-b4ca-4216-ae2b-585c7a84178c", + "createdTime": "2020-12-28T20:04:44.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "435975f3-ad17-4050-ad68-98832a4fdeeb", + "createdTime": "2020-12-28T20:04:43.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b9d07318-e3b4-4975-a3af-711df7e55eeb", + "createdTime": "2020-12-28T20:04:43.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4695ade2-a2e7-4f59-8abf-81c055370dc8", + "createdTime": "2020-12-28T20:04:43.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0c1c8d1a-fe1a-42f1-ab87-6e2e250dd11c", + "createdTime": "2020-12-28T20:04:43.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61c32bbe-393a-4891-9211-b1e35ecf2ad1", + "createdTime": "2020-12-28T20:04:42.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c39a0a39-ea33-4189-84ed-2beedf66ee0d", + "createdTime": "2020-12-26T19:41:44.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "946f4c6d-dce4-4e23-94b2-590632d1fd05", + "createdTime": "2020-12-26T19:41:43.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6974f23d-4a62-4f8e-983d-8b5fedee1e6d", + "createdTime": "2020-12-26T19:41:43.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3662ca6d-6135-4aff-87fc-281a9586ec63", + "createdTime": "2020-12-26T19:41:42.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c11532d9-6de0-40e7-82cd-12f8589130b3", + "createdTime": "2020-12-26T19:40:53.147Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5139a051-9cff-43ff-a528-16719c838fd5", + "createdTime": "2020-12-26T19:40:51.994Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f8e0adf5-00fb-47be-978f-da5119f94204", + "createdTime": "2020-12-26T19:40:51.024Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "baa7b58a-9a2e-4d4a-8e38-3c18fac7cbbc", + "createdTime": "2020-12-26T19:40:50.129Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "549bf864-2a14-4707-a7b5-0c614cba022b", + "createdTime": "2020-12-26T19:34:42.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd5f0a43-9408-4892-bcc5-02f4cd8a7858", + "createdTime": "2020-12-26T19:34:42.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43f562ae-2085-4395-9944-cb9b7bc2a7c7", + "createdTime": "2020-12-26T19:34:41.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f7ac75b-f6d0-4131-8aa6-ecb927c8106a", + "createdTime": "2020-12-26T19:34:41.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7b385d2-a0d6-4628-9845-1ec2224b459c", + "createdTime": "2020-12-26T19:33:35.974Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db47d04d-4408-4db1-9651-b90cf58f1c95", + "createdTime": "2020-12-26T19:33:34.485Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25125b91-5f22-4623-bf6c-5eb41c1b820d", + "createdTime": "2020-12-26T19:33:33.375Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6635e2c5-b176-4c86-8232-2aed87a040b9", + "createdTime": "2020-12-26T19:33:32.132Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "70856037-9d1f-4d18-91f8-010979d5fe08", + "createdTime": "2020-12-26T19:18:16.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "227ed7d3-4e4f-4121-9682-8db2710f9a70", + "createdTime": "2020-12-26T19:18:15.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b0d8c5ea-488d-4aa4-9116-685f34c1c594", + "createdTime": "2020-12-26T19:18:15.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f3392c07-7180-4f14-9848-95ae55e2a540", + "createdTime": "2020-12-26T19:18:14.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa2bd0d5-2087-42cc-8b69-4d39b16f9909", + "createdTime": "2020-12-26T19:17:22.949Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb30f39-f7ca-47d5-a284-c7f41bf10d99", + "createdTime": "2020-12-26T19:17:22.064Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ef74749-a942-4166-843e-2a7a003f3ff2", + "createdTime": "2020-12-26T19:17:21.266Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8160914d-905c-47d7-8819-c514ddf8f134", + "createdTime": "2020-12-26T19:17:20.327Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eeedde34-57b0-4199-adee-db54bc957cc0", + "createdTime": "2020-12-26T19:08:37.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2d512357-1280-455c-be7e-221777df490a", + "createdTime": "2020-12-26T19:08:37.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b23f07d3-bcbc-46d0-92a5-c72b46d8e850", + "createdTime": "2020-12-26T19:08:36.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d2c1e81-1069-41da-8ec1-d976426dd62c", + "createdTime": "2020-12-26T19:08:36.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30318465-8205-46c7-9f9a-f5e39def0f62", + "createdTime": "2020-12-26T19:07:43.809Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f90a819f-d0a9-4e8a-92d8-e4680b0cdcb9", + "createdTime": "2020-12-26T19:07:42.479Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c64bae98-c2cb-4e39-8661-e2413971e706", + "createdTime": "2020-12-26T19:07:41.283Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d37fd3c3-f442-4274-bda8-243e13a4d985", + "createdTime": "2020-12-26T19:07:40.089Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "91884e2c-ca90-46a5-9be6-6517ecb47063", + "createdTime": "2020-12-26T18:48:42.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c772e292-4ec0-43e6-a5ca-922be0c6e064", + "createdTime": "2020-12-26T18:47:32.909Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a6f73d8e-a7f0-4d3e-8285-4ef037337749", + "createdTime": "2020-12-26T18:51:51.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "279daab8-c19d-4501-a489-137aecbaca2e", + "createdTime": "2020-12-26T18:51:50.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4f36200b-ee7c-4275-be34-37dcd8daece0", + "createdTime": "2020-12-26T18:51:50.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4da6bab-c749-4f15-be37-4385bb444497", + "createdTime": "2020-12-26T18:51:50.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2d00ccb-f237-4916-893d-bea94995b50d", + "createdTime": "2020-12-26T18:48:41.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "393a16a3-0fae-4827-9d3b-b02f89958851", + "createdTime": "2020-12-26T18:48:41.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7c2c51c3-f436-4d19-a0ab-9f539efc6c47", + "createdTime": "2020-12-26T18:48:40.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8138acc3-bd22-4feb-b7b9-72c4475b38f8", + "createdTime": "2020-12-26T18:47:31.404Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25e04d0a-2b7b-4715-a59b-bc03a3c841d0", + "createdTime": "2020-12-26T18:47:29.833Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "14ba6c05-8493-47cd-8ee4-962e711e0260", + "createdTime": "2020-12-26T18:47:28.099Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "acb3465c-779f-4907-a6d9-4d8343c0c381", + "createdTime": "2020-12-26T18:41:10.697Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6c0e6c5-7404-4691-9e3b-d8ea7d8e386e", + "createdTime": "2020-12-26T18:33:25.85Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3333381f-ec97-445b-a920-069a16e67d42", + "createdTime": "2020-12-26T18:31:25.998Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "404d2e90-390d-48f5-ae96-532c4b2e0cd7", + "createdTime": "2020-12-26T18:31:23.744Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "62696134-7885-40c7-b50a-7430ad33146a", + "createdTime": "2020-12-26T18:31:21.604Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "92f43471-3e64-4609-8a15-0170c0448aab", + "createdTime": "2020-12-26T18:31:19.951Z", + "userPrincipal": "f850650c-1fcf-4489-b46f-71af2e30d360", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c14d8a5c-8d64-4f3d-9b0e-6ea896648023", + "createdTime": "2020-12-25T09:09:32.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a9802184-335a-4a2c-9b46-1377f3e98cdf", + "createdTime": "2020-12-25T09:09:31.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8de91df0-5f23-4ee9-86e7-39bc4b426c8e", + "createdTime": "2020-12-25T09:09:30.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4f86963e-894d-45df-8089-331a55e2244a", + "createdTime": "2020-12-25T09:09:29.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b58973a-2e80-469d-9bcb-a46bcab64918", + "createdTime": "2020-12-25T09:05:59.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e94785a9-2317-4005-9091-88dbb70ffe67", + "createdTime": "2020-12-25T09:05:58.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "536af1d6-acd5-41c0-9170-22ec0fb83fed", + "createdTime": "2020-12-25T09:05:58.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "77e45f55-35de-476b-b350-78cdae335f08", + "createdTime": "2020-12-25T09:05:57.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ea02ad1-4407-41b9-b99e-744cc3cfebdb", + "createdTime": "2020-12-25T08:59:08.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bacabf11-3864-4629-bd71-e33bd87c43ae", + "createdTime": "2020-12-25T08:59:07.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "942cb0b8-c618-4720-b6f7-7efa578bbb02", + "createdTime": "2020-12-25T08:59:06.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "725367b8-fdc0-4866-aa65-1034b91a86ac", + "createdTime": "2020-12-25T08:59:06.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d06a623-ae13-4639-811e-0c636c826e0f", + "createdTime": "2020-12-25T08:55:40.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9a0410f-e2b3-461e-b21b-e082e6fb8e85", + "createdTime": "2020-12-25T08:55:40.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "61d50871-8a3e-41da-8241-c5bf949ddef2", + "createdTime": "2020-12-25T08:55:39.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c2dd13c9-abe9-4054-95bf-ed4f4c34b095", + "createdTime": "2020-12-25T08:55:38.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0f651ae-30a0-4afb-96c5-b3626855f842", + "createdTime": "2020-12-25T08:47:01.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a985b0f8-2d34-4f70-a8a5-fef154121e00", + "createdTime": "2020-12-25T08:47:00.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35a76e63-f11f-43ed-b313-cfc14d93f37f", + "createdTime": "2020-12-25T08:46:59.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "479e76aa-f34b-48ac-be45-8f1af9dfd7c3", + "createdTime": "2020-12-25T08:46:59.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9dec1de-3069-4953-88a1-02f945331541", + "createdTime": "2020-12-25T08:26:13.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4281866e-d3d7-474f-9851-8459332f7dfc", + "createdTime": "2020-12-25T08:33:10.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2121dcc8-a5f1-49e3-bffc-e0b26ab3a3a8", + "createdTime": "2020-12-25T08:36:45.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb55db8e-ba3e-4f61-8f91-ae16d1efa41f", + "createdTime": "2020-12-25T08:36:44.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "11116714-f1bf-458a-8374-e65d87a2d137", + "createdTime": "2020-12-25T08:36:43.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "69c38f4e-ad59-4672-9add-e8e00376f1ad", + "createdTime": "2020-12-25T08:36:42.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2aa0f77-6a73-4d28-a11a-7062262280b7", + "createdTime": "2020-12-25T08:33:10.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c7a32716-29c0-4f86-a5a6-5a2a1e33c697", + "createdTime": "2020-12-25T08:33:09.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bca9531-f861-4620-a92d-2a51a0a7a76d", + "createdTime": "2020-12-25T08:33:09.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8dadeec-a6a6-4899-8712-ff39628ccb95", + "createdTime": "2020-12-25T08:26:12.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e50c9ef-5567-43dc-9484-d53c82a697d8", + "createdTime": "2020-12-25T08:26:11.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "816cbb81-dc0a-43ba-8d63-edfa379b8ce7", + "createdTime": "2020-12-25T08:26:11.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c8e3fc5-3fbb-47fc-ba8f-05aa21262774", + "createdTime": "2020-12-25T08:22:48.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "caad3f90-77aa-4263-b76e-407ed4a09a1e", + "createdTime": "2020-12-25T08:22:47.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6cf12817-e10a-42e9-bcbd-f47d2b22551c", + "createdTime": "2020-12-25T08:22:46.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "11602a67-36ae-42cd-bba8-9d6d3e4953b4", + "createdTime": "2020-12-25T08:22:46.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a43fbdc-ab73-4e99-8c84-d4e386e808f8", + "createdTime": "2020-12-24T20:15:36.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dbb9a780-4430-4c43-b1f8-054061f194e2", + "createdTime": "2020-12-24T20:15:35.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "edde2701-d541-4a18-94de-2e9911647287", + "createdTime": "2020-12-24T20:15:35.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7db4b3f5-c639-433b-858f-1b777982ee73", + "createdTime": "2020-12-24T20:15:34.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "068f4d52-c4bf-49b6-87c7-681b7ec3f975", + "createdTime": "2020-12-24T20:06:44.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7c7da011-2846-4ab7-8270-c27e0c6dc809", + "createdTime": "2020-12-24T20:05:42.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a6c7cfa6-becf-46f8-824b-7fe78ae0b4c2", + "createdTime": "2020-12-24T20:05:19.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f12a119b-da05-446a-8178-56576243a02d", + "createdTime": "2020-12-24T20:08:53.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7130810d-019c-40b4-bf35-a3a8a0489a99", + "createdTime": "2020-12-24T20:04:48.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3556c2cb-fc0d-4842-baa1-6184bead8fda", + "createdTime": "2020-12-24T20:08:54.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7474e4ca-c62e-4d61-a256-e99389c6011a", + "createdTime": "2020-12-24T20:08:52.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8bcb59b9-38f4-4842-b708-346d10515e85", + "createdTime": "2020-12-24T20:08:52.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a50f775d-e969-425d-aa66-30043fb1f31d", + "createdTime": "2020-12-24T20:06:45.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b46a6857-a63b-4675-93c6-092e76f37169", + "createdTime": "2020-12-24T20:06:43.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "518c7b4c-a8f0-4757-a1dc-b63d864998db", + "createdTime": "2020-12-24T20:06:43.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ed2b8c3-9d1e-4e99-8a65-bdf64ab9aee6", + "createdTime": "2020-12-24T20:05:42.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f36f7e8a-5b59-48ea-952d-f312385d0d6b", + "createdTime": "2020-12-24T20:05:41.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6eaa4933-fdef-4df4-a329-6e78319e5e26", + "createdTime": "2020-12-24T20:05:40.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47171d57-32e5-45f0-94f4-cd5e50e817a1", + "createdTime": "2020-12-24T20:05:20.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c5d6e224-024c-4990-8580-11d96fcf9d3d", + "createdTime": "2020-12-24T20:05:18.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "169f1de2-36ec-4512-9ce4-63ce18c1fb23", + "createdTime": "2020-12-24T20:05:17.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4faff2e-461b-4861-a64f-2024a9568d3a", + "createdTime": "2020-12-24T20:04:49.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7e0bf8f7-6b6e-4817-911b-2b092f695d6b", + "createdTime": "2020-12-24T20:04:48.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "38e45064-6a9f-4b6c-8d62-d6d9756ff8b2", + "createdTime": "2020-12-24T20:04:48.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "42e16f55-a418-4ae9-8da9-ea8da6631b2b", + "createdTime": "2020-12-24T20:04:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "fe4c8aa9-6329-4c1a-a355-4df07d23949b", + "createdTime": "2020-12-24T20:04:47.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e0cf5c20-842c-4ee8-a25d-1217ad645473", + "createdTime": "2020-12-24T20:04:47.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1b7604e-0695-4555-914d-9afd9f90e8d4", + "createdTime": "2020-12-24T20:04:46.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de72de46-c2d3-43df-bf7d-119632f6301e", + "createdTime": "2020-12-23T20:57:14.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7e00fed1-e379-4016-a69c-4d0ffc44020c", + "createdTime": "2020-12-23T20:55:55.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "89d033c3-b29e-499d-9ba3-61477be156b3", + "createdTime": "2020-12-23T20:55:49.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1695baef-106c-4250-9545-27ec27ee13c3", + "createdTime": "2020-12-23T20:55:41.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "31fcaa73-0f9e-49a5-80c7-82d0d3938564", + "createdTime": "2020-12-23T20:59:21.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6537f314-72af-4a46-8254-8c988e600e6d", + "createdTime": "2020-12-23T21:02:17.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3aa2d7eb-6d83-49d2-b1f1-1b8e8d404ce8", + "createdTime": "2020-12-23T21:02:16.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9972891b-4ec2-4ed1-8684-4c560322b6f1", + "createdTime": "2020-12-23T21:02:16.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "61dee648-34cd-4d7e-845a-2bcd8dcdcc29", + "createdTime": "2020-12-23T21:02:15.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "271541ce-831c-4b60-9efd-5f3cfd560355", + "createdTime": "2020-12-23T20:59:21.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0bb80b85-dcb0-434d-b38f-b03de71606ca", + "createdTime": "2020-12-23T20:59:20.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7b201aae-2290-4eff-9c19-cfde840e505c", + "createdTime": "2020-12-23T20:59:19.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a317b0-5c8a-4430-90eb-3d6736241c9a", + "createdTime": "2020-12-23T20:57:15.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d987b8bf-1983-48b4-8cca-662fb034fe5f", + "createdTime": "2020-12-23T20:57:12.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f3cee7b2-bdd8-4887-a345-75571b06c06a", + "createdTime": "2020-12-23T20:57:11.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb393066-09a2-42d2-b4d1-4e84301f6b58", + "createdTime": "2020-12-23T20:55:56.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "61323aa0-5cd3-4799-b0fb-9e1130218214", + "createdTime": "2020-12-23T20:55:54.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3f6a47b2-8880-4980-ab36-e65279c757c1", + "createdTime": "2020-12-23T20:55:54.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc771f83-7120-4dd1-8ddd-298c2f297796", + "createdTime": "2020-12-23T20:55:49.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70932eba-4296-441b-8b55-8d5e7d986767", + "createdTime": "2020-12-23T20:55:48.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7dee9cf5-da65-4b97-9eef-8a358c676ca0", + "createdTime": "2020-12-23T20:55:47.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d6445f5-7c8f-4983-8e42-91a3d8b57d15", + "createdTime": "2020-12-23T20:55:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "339376c1-ffa5-4d6d-b976-2e489e11acae", + "createdTime": "2020-12-23T20:55:40.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0ade10ed-63c3-4456-95f8-d1b233f37cc5", + "createdTime": "2020-12-23T20:55:39.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af85bbd3-0c7d-4295-830d-636b9f292da0", + "createdTime": "2020-12-23T20:55:28.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f57e46c8-87e3-4178-91af-26bfbb400234", + "createdTime": "2020-12-23T20:55:27.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3f791a9d-2a33-4be2-bece-86a8cba5cf40", + "createdTime": "2020-12-23T20:55:26.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6053b909-48d0-49bf-ba8b-a4ef4f46c1b2", + "createdTime": "2020-12-23T20:55:25.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "37732f37-1def-40e5-831b-ac529a35968b", + "createdTime": "2020-12-23T09:15:09.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41719929-c6fc-480e-ac1e-40875d7ca2ec", + "createdTime": "2020-12-23T09:15:09.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "66a1c652-1d16-4c7c-adfb-9bc06aa9e082", + "createdTime": "2020-12-23T09:15:08.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e691afe-b49e-4ec0-ba50-bc1dafec10e7", + "createdTime": "2020-12-23T09:15:07.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba31bc66-cbca-4c06-b314-26dbf02c627f", + "createdTime": "2020-12-23T09:11:29.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "33bb3722-83cc-48ed-a135-8f7939ca2d1a", + "createdTime": "2020-12-23T09:11:28.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "80f60981-19d3-45bd-a34b-a94e6104ac3b", + "createdTime": "2020-12-23T09:11:28.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5f214c22-adff-4e49-9e36-fb82c533a60b", + "createdTime": "2020-12-23T09:11:27.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65ef382d-bf8f-4a62-9bb1-bce0dcae694e", + "createdTime": "2020-12-23T09:00:03.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "057009cb-46f5-4084-8e7b-9fac9ccb6c54", + "createdTime": "2020-12-23T09:00:02.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dbb69e5e-3ce5-4fe7-81eb-96d2eaf0a8ce", + "createdTime": "2020-12-23T09:00:01.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f6b1cc3-2489-4522-80a4-7f7f6881b9cf", + "createdTime": "2020-12-23T09:00:01.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "89daaa3e-5a7d-4dc3-8aa2-69f33d44e95c", + "createdTime": "2020-12-23T08:56:24.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3b45c5b1-f0f8-49cc-998f-f391b657d8aa", + "createdTime": "2020-12-23T08:56:23.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09bbcac7-81fc-4721-90e1-70846c0a0bd9", + "createdTime": "2020-12-23T08:56:22.597Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5837ed1b-0f3e-4ca8-87b4-e450935a2a7e", + "createdTime": "2020-12-23T08:56:21.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17a6ac7d-8cb8-43f4-b32d-01fe191665b6", + "createdTime": "2020-12-23T08:47:47.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91fe007b-5d38-4669-bbf7-842c8f5d9736", + "createdTime": "2020-12-23T08:47:46.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "23538581-9115-4af6-bbe9-0989e266e343", + "createdTime": "2020-12-23T08:47:45.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a7aec005-b9ae-4fe6-b820-ccb62e716852", + "createdTime": "2020-12-23T08:47:45.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "655d24e9-dc15-4672-82f1-a5edeed36ea5", + "createdTime": "2020-12-23T08:24:41.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22d7b984-973b-4cba-846a-53538bb5826c", + "createdTime": "2020-12-23T08:34:21.078Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1d3719d6-f5fa-4118-b053-2a3b49f36bda", + "createdTime": "2020-12-23T08:37:49.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f2dbfab9-056a-460e-a864-d53c758f8721", + "createdTime": "2020-12-23T08:37:48.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e85a6886-832a-4398-bfec-ee4bfe4d64c3", + "createdTime": "2020-12-23T08:37:47.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8fb381ea-cd25-4cb1-8fd9-b0d546662d21", + "createdTime": "2020-12-23T08:37:46.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "121ea8c0-9752-4e74-a70c-bbd09fcd15c7", + "createdTime": "2020-12-23T08:34:20.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b5450ce-eadd-4b65-9b45-8845be4a59b9", + "createdTime": "2020-12-23T08:34:19.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "332f2f4a-58bb-43d8-8c20-39c37fcfa083", + "createdTime": "2020-12-23T08:34:18.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b28bf906-ba52-4bde-819b-e87d45fe2050", + "createdTime": "2020-12-23T08:24:40.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5868f983-9bfd-4580-a405-067192b7899e", + "createdTime": "2020-12-23T08:24:39.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ccf48000-1df0-449a-a445-34637dd9ef7a", + "createdTime": "2020-12-23T08:24:38.946Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77abdf63-abc8-4f99-99f5-f70717a0bbc4", + "createdTime": "2020-12-23T08:21:06.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "454b7a57-ee4e-41c7-af70-aef6d91ce632", + "createdTime": "2020-12-23T08:21:05.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e78a2c14-5b98-4a98-a76c-2bd8dcb0660f", + "createdTime": "2020-12-23T08:21:05.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "124c4ac7-f8a4-4b30-99a9-00dfd165de51", + "createdTime": "2020-12-23T08:21:04.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aef428f5-3d71-4c27-b456-ab86b8b5bd2f", + "createdTime": "2020-12-22T20:41:06.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d9b7e3df-fbca-41f0-9ee6-54508ffec82c", + "createdTime": "2020-12-22T20:41:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1383546a-0c4f-410c-a69a-7e27cbf6e51d", + "createdTime": "2020-12-22T20:41:04.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "957bb947-548b-481a-aa3f-2c7c3cbf0e95", + "createdTime": "2020-12-22T20:41:03.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42a9b275-d5bc-435a-89f2-58f4051d35ff", + "createdTime": "2020-12-22T20:33:34.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f3a3b1e3-ce4d-40d5-a72c-d544161abd4e", + "createdTime": "2020-12-22T20:34:35.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cdf73d2d-f045-4ecc-a56f-48e08ac4e43b", + "createdTime": "2020-12-22T20:35:11.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5c2c96ed-2a2b-4ffa-bf54-6896805b34c8", + "createdTime": "2020-12-22T20:39:05.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "671bf225-71ae-4b82-970a-6972ab8b2576", + "createdTime": "2020-12-22T20:34:55.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "489f6406-93bc-4dcc-94a3-54dd0621f32e", + "createdTime": "2020-12-22T20:33:42.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a7fc5352-987f-4a5a-bd82-a77e67999573", + "createdTime": "2020-12-22T20:39:05.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e2dc54ea-1fbd-4dfd-9b85-81c084c4c8bd", + "createdTime": "2020-12-22T20:39:04.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7105d376-82f4-4733-a89a-67c7ea66d5e5", + "createdTime": "2020-12-22T20:39:03.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee0ce34-6d99-4a43-9566-b51f85ac978a", + "createdTime": "2020-12-22T20:35:12.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0f7841f1-f60f-4505-948a-373307cd08ce", + "createdTime": "2020-12-22T20:35:10.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "0427dcc9-2f94-471f-abae-3108bc2412c9", + "createdTime": "2020-12-22T20:35:07.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82f2a35c-90ee-4ea7-aafc-0f324b46c88b", + "createdTime": "2020-12-22T20:34:57.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9817a6b9-0fe9-4611-b20a-690a93c2bc2a", + "createdTime": "2020-12-22T20:34:53.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fbeba7b9-ca0d-4309-b795-e4c5bf91d69c", + "createdTime": "2020-12-22T20:34:52.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42c50a9e-1012-45be-acb8-8656ed1d4b6b", + "createdTime": "2020-12-22T20:34:36.282Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a0c5c1dd-3950-4b8b-84bc-4dd17e9e0a73", + "createdTime": "2020-12-22T20:34:34.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9ebfdb96-98d9-404f-bec6-1b4905c8f70e", + "createdTime": "2020-12-22T20:34:32.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0bbb61c-83ea-4041-86dc-400dea6256ee", + "createdTime": "2020-12-22T20:33:44.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cb41e179-0b9b-4788-a94a-5c274d3387a8", + "createdTime": "2020-12-22T20:33:40.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b323e93c-48f4-4b00-a256-8fbf3ae2cbc2", + "createdTime": "2020-12-22T20:33:39.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "207d3d01-b193-4a36-b40e-a824effdd5c5", + "createdTime": "2020-12-22T20:33:36.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "494133f4-2576-4159-8cc8-cb43de2e9b72", + "createdTime": "2020-12-22T20:33:32.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8e031594-5754-4cfa-a906-c498d6f8cf51", + "createdTime": "2020-12-22T20:33:27.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61582416-c8b2-4259-a8df-c960a89343e6", + "createdTime": "2020-12-22T09:28:15.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "24f8f4c2-7477-4e7d-80c9-16eb34d0c29a", + "createdTime": "2020-12-22T09:28:14.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a05d8f9-40aa-4951-8015-f1d1953e8a01", + "createdTime": "2020-12-22T09:28:13.822Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96792278-e3b6-47fd-a86a-41f2cdfa3381", + "createdTime": "2020-12-22T09:28:13.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "62f805d2-d710-4222-ba2e-3e392dc06e11", + "createdTime": "2020-12-22T09:24:53.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "587aab10-93ae-488c-aa40-9c1d90662875", + "createdTime": "2020-12-22T09:24:53.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c9394eac-b7f9-42d1-904f-00e361966943", + "createdTime": "2020-12-22T09:24:52.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9ed5706a-d087-4245-905d-ec71d60e5855", + "createdTime": "2020-12-22T09:24:52.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ccd8fb88-1f5a-42da-98ff-b25f82315ff4", + "createdTime": "2020-12-22T09:17:02.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6eb13e7c-f42e-45d8-b631-b7a17909a652", + "createdTime": "2020-12-22T09:17:02.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e2bd4df2-d576-4f6e-b013-85778415e4e1", + "createdTime": "2020-12-22T09:17:01.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad7b3118-caf8-48eb-9e8a-9eefdb19fe23", + "createdTime": "2020-12-22T09:17:01.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48c72110-917c-482c-bfad-d06d3cb0c4f5", + "createdTime": "2020-12-22T09:13:47.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f886c0a9-abaa-48da-a17e-023a994998cf", + "createdTime": "2020-12-22T09:13:47.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "331d8f18-addd-42df-9a28-55d0860e43e4", + "createdTime": "2020-12-22T09:13:45.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2fd0087-032a-405b-95fc-81e1b058c9bc", + "createdTime": "2020-12-22T09:13:44.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c87b6ce-94a6-4f2e-a973-031e8269ab1f", + "createdTime": "2020-12-22T09:00:39.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb25ec64-3e3d-4900-b337-b17b09d48905", + "createdTime": "2020-12-22T09:00:38.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7764a419-9796-403b-96d3-b86781af166d", + "createdTime": "2020-12-22T09:00:37.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ab9ac661-9721-4f3f-b237-fbc9626bc073", + "createdTime": "2020-12-22T09:00:36.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83a928be-08b1-4aeb-866e-6469dc577878", + "createdTime": "2020-12-22T08:36:30.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91886741-c714-43f8-a994-e1900a0c7c75", + "createdTime": "2020-12-22T08:48:05.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "241a4128-5e39-4db0-86fd-3d8bffbcaf29", + "createdTime": "2020-12-22T08:44:46.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eb06585e-fa92-44bc-8b55-389936e1fa63", + "createdTime": "2020-12-22T08:48:04.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0cafde42-d85f-4034-b8dc-995b1b125b85", + "createdTime": "2020-12-22T08:48:04.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bbcf92cd-32b2-477a-bb30-9e19afb30a37", + "createdTime": "2020-12-22T08:48:03.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "294c92cf-9ea5-45d2-b56c-a38d7324f726", + "createdTime": "2020-12-22T08:44:46.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "60cf03fa-278e-4f08-a64d-c7cdec0c5ab9", + "createdTime": "2020-12-22T08:44:45.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a44ca88d-c940-461e-9983-b848a527dfea", + "createdTime": "2020-12-22T08:44:44.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6bfaf4a9-070a-4af4-9c9c-a9a9e9aadac6", + "createdTime": "2020-12-22T08:36:29.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "56b1e4d3-51cc-40a3-82df-e327a8142651", + "createdTime": "2020-12-22T08:36:29.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf926732-204c-4d47-8d21-15cdee948c56", + "createdTime": "2020-12-22T08:36:28.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d375965f-8162-4901-a01e-5b859e0c1d97", + "createdTime": "2020-12-22T08:33:08.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8b43225-d36e-4cea-9805-917e13e0ed09", + "createdTime": "2020-12-22T08:33:08.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f04ab051-0209-4be9-a968-6dae5a6b9d8e", + "createdTime": "2020-12-22T08:33:07.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "437f365b-6f22-494f-ac32-799531bc18f6", + "createdTime": "2020-12-22T08:33:07.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c59609d5-61f8-47c8-add7-08e6358aa25f", + "createdTime": "2020-12-22T01:56:58.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c5ecd7b-91f3-4cf3-9ca7-e2170c1d44b5", + "createdTime": "2020-12-22T01:56:57.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a0152cfa-b0a2-4b86-83bb-82eba4150ffb", + "createdTime": "2020-12-22T01:56:57.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf3b2e07-fc2c-4b0a-b6c9-509c97278554", + "createdTime": "2020-12-22T01:56:56.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "030d6e2e-d0d4-4c2e-be86-c7f1af91808d", + "createdTime": "2020-12-22T01:52:58.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a5a13bd7-a0ba-4aee-8996-00a186a8822d", + "createdTime": "2020-12-22T01:52:57.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "391bf812-d2a0-4cfd-9e85-08439102f085", + "createdTime": "2020-12-22T01:52:56.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "184cafcd-0a6c-4d11-bd3b-9b082fa7ab9a", + "createdTime": "2020-12-22T01:52:56.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32fd172c-585f-477e-9e64-8ead8c3fd49b", + "createdTime": "2020-12-22T01:46:10.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f41eea61-6e23-4b76-ba2d-7e61dee3b98c", + "createdTime": "2020-12-22T01:46:10.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9f9e7e24-dcc4-463f-9a0d-fac8bda2487c", + "createdTime": "2020-12-22T01:46:09.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8c19a778-2a27-4eb9-a038-a753312285cc", + "createdTime": "2020-12-22T01:46:08.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd20251a-c2af-4530-a606-5aa13011edeb", + "createdTime": "2020-12-22T01:42:19.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "896cec48-1291-400b-9aa4-2b2eb5605476", + "createdTime": "2020-12-22T01:42:18.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "39b08c09-e886-4ecf-a659-691c61a54522", + "createdTime": "2020-12-22T01:42:17.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6f7d6579-1034-4427-a8ad-9b0bacd20f0c", + "createdTime": "2020-12-22T01:42:16.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46408c8c-a711-440e-9af3-a07be85092d6", + "createdTime": "2020-12-22T01:33:32.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c2d2350b-44a9-4072-99c2-1a437e2cbab4", + "createdTime": "2020-12-22T01:33:31.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9909321-90ea-41b1-bdd0-edfb97c55d6d", + "createdTime": "2020-12-22T01:33:31.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "488489f8-2cc2-4e95-a5db-9a9ef9056ca7", + "createdTime": "2020-12-22T01:33:30.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaa1251f-bc99-49ee-9e59-7f22ceebba15", + "createdTime": "2020-12-22T01:23:31.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8e43277b-3165-47aa-a21c-a6c448440dbc", + "createdTime": "2020-12-22T01:20:09.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41c19240-6e79-4996-9ca8-52d27d270b1a", + "createdTime": "2020-12-22T01:13:30.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f3a4264f-c691-4cd6-8bea-66ae5197ed7c", + "createdTime": "2020-12-22T01:23:29.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "891df15f-d72a-4c5f-b59e-db53b7298c88", + "createdTime": "2020-12-22T01:23:28.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "af864a46-16e9-48b2-8014-c6a345191e52", + "createdTime": "2020-12-22T01:23:28.082Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2dbd77a-40c8-4de8-a3a8-5d73e2652d82", + "createdTime": "2020-12-22T01:20:07.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c42e7d4-54d0-4c23-912d-9613e08aa9e7", + "createdTime": "2020-12-22T01:20:07.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a5f7e8f-fc0d-4b2e-ac5b-7aa6dd5870b3", + "createdTime": "2020-12-22T01:20:06.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "419f69af-4434-4470-90fe-95c601408a15", + "createdTime": "2020-12-22T01:13:29.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "43290590-f206-4d66-85c1-65a708f3cfd4", + "createdTime": "2020-12-22T01:13:29.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "580f2e65-b4fd-421a-876a-f8ca0eb63ae9", + "createdTime": "2020-12-22T01:13:28.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "997b195b-9a9a-46c0-8873-38d0c0b65c6c", + "createdTime": "2020-12-22T01:10:38.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "20ae3052-6a9a-43b1-b472-c63e9f7d0918", + "createdTime": "2020-12-22T01:10:37.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0f7f2807-16bc-4572-ab1a-758c953b091e", + "createdTime": "2020-12-22T01:10:37.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "656d1936-0248-455c-a6e1-bd9fc88a20f6", + "createdTime": "2020-12-22T01:10:36.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ad5c44b-eaea-4f61-9979-7e4c9dee770d", + "createdTime": "2020-12-21T20:06:58.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e4cad3d3-4432-4450-9968-ddf201292322", + "createdTime": "2020-12-21T20:11:41.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "68213513-ecfc-4642-96c4-30e0d2d38e57", + "createdTime": "2020-12-21T20:05:37.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bc5dabdd-ee81-4440-b416-fce6727c0c2c", + "createdTime": "2020-12-21T20:10:11.883Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7b5edb6a-c0be-45b1-96bd-cf9ac8dc3b87", + "createdTime": "2020-12-21T20:05:05.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "53f340b6-2ea9-45b2-be1e-adb49953edf1", + "createdTime": "2020-12-21T20:05:00.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ee9a3907-9d91-4587-93cb-437961dff2f2", + "createdTime": "2020-12-21T20:11:41.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f5b74891-32aa-40c4-95c4-906c7d3f49d1", + "createdTime": "2020-12-21T20:11:40.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "88d7c425-0302-4fac-bf37-b71289e6c409", + "createdTime": "2020-12-21T20:11:39.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8d67b49-044b-41b4-88ba-884d8e1e9857", + "createdTime": "2020-12-21T20:10:12.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "70963599-7dac-47a1-8d71-fb45b408e080", + "createdTime": "2020-12-21T20:10:11.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d010d7aa-10db-482a-8165-8b2ca27f6c31", + "createdTime": "2020-12-21T20:10:11.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f576d28-0e21-4e2c-adc6-9f181f5a3639", + "createdTime": "2020-12-21T20:06:59.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ce75e4e2-e35c-4222-8634-4daf92e1aae0", + "createdTime": "2020-12-21T20:06:58.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8ba24119-bb70-4c8c-b1f0-8aca6700b4ce", + "createdTime": "2020-12-21T20:06:57.346Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbf71920-a54f-41b2-a79d-eb1900d7ad4e", + "createdTime": "2020-12-21T20:05:38.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4434d7df-5c0e-4da8-9243-76e1bca52e78", + "createdTime": "2020-12-21T20:05:36.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "782791c2-0dfb-45ca-a305-78d023dc7b8c", + "createdTime": "2020-12-21T20:05:35.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d7701327-2962-4f98-adc4-146bb9e7ad54", + "createdTime": "2020-12-21T20:05:06.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "51f570a4-915e-4720-bc7f-e36ef49c5b8b", + "createdTime": "2020-12-21T20:05:04.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ed7f4b88-350b-43d1-89bf-b17b0a696494", + "createdTime": "2020-12-21T20:05:03.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffb837a-1c8b-4d79-85a5-dba9c92537fa", + "createdTime": "2020-12-21T20:05:01.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c1b6e51c-fa2a-48a1-9ea9-d0289a16e4fc", + "createdTime": "2020-12-21T20:05:00.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6c093bb-1bb9-4012-bdc4-7f34d4aeda63", + "createdTime": "2020-12-21T20:04:59.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7992feb-b713-409e-a8ea-aa5173ec24ea", + "createdTime": "2020-12-21T20:04:53.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d5e144d7-3140-4860-81df-cd6e072fe130", + "createdTime": "2020-12-21T20:04:52.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "73c63d08-cb04-47c3-a1bc-690339937f1d", + "createdTime": "2020-12-21T20:04:51.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d293a698-37ae-458a-a986-46cb81ddb81c", + "createdTime": "2020-12-21T20:04:51.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a5b997b-a07d-4294-a2ec-8a95d9c02471", + "createdTime": "2020-12-21T09:16:21.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bce89fd-697b-4c24-b4df-aa0286ed4e90", + "createdTime": "2020-12-21T09:16:20.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2764deb1-6c2a-4446-adb0-8881dab5170c", + "createdTime": "2020-12-21T09:16:15.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ea30f813-a923-40ec-a626-2b06424a46fe", + "createdTime": "2020-12-21T09:16:14.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12b67cfb-dfa4-45df-b3c7-485924cf3a7d", + "createdTime": "2020-12-21T09:12:31.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa3759d9-e629-4252-9699-ef33fc54a812", + "createdTime": "2020-12-21T09:12:31.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0caf195a-b9ca-47dd-a05c-0c4382459d50", + "createdTime": "2020-12-21T09:12:30.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e97db822-38ea-4fa2-958b-b380b79deec1", + "createdTime": "2020-12-21T09:12:29.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6bc6bd2-e1e8-4c43-98bd-f8ecadcc29e4", + "createdTime": "2020-12-21T09:02:31.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a7f98f2-a65c-42c6-ae66-c7660aa49664", + "createdTime": "2020-12-21T09:02:31.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "14cc7aee-81fd-4b75-9246-af319d5fcbb8", + "createdTime": "2020-12-21T09:02:30.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc24d7dd-28e1-4f4f-a1ee-6fce4e4540f2", + "createdTime": "2020-12-21T09:02:29.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "379cda55-5f97-44dc-8060-12d11b929f0d", + "createdTime": "2020-12-21T08:59:09.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e7d947af-ea5c-4046-b9af-f00fdf541ed9", + "createdTime": "2020-12-21T08:59:08.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "05ee127f-c5d8-4966-93b5-d686178719e9", + "createdTime": "2020-12-21T08:59:08.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ec406b95-d72c-4129-93cb-a2480ec56f45", + "createdTime": "2020-12-21T08:59:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e67bec9d-7363-44f0-b7ca-96255a4de836", + "createdTime": "2020-12-21T08:49:34.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45cd6fe9-9e83-47e9-9edc-b1cad6def5d2", + "createdTime": "2020-12-21T08:49:34.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "835b1362-c0b7-489b-8257-671d8f75f945", + "createdTime": "2020-12-21T08:49:33.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9f85f44-5c9f-4cb4-bcaf-d636f09ae352", + "createdTime": "2020-12-21T08:49:32.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3939b12-c0c0-4804-90f6-5e4b59db0e4a", + "createdTime": "2020-12-21T08:35:58.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "88e26549-5d6b-4221-b3fc-e0008c26448f", + "createdTime": "2020-12-21T08:39:28.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4818551b-9a9f-45c7-9c47-03b86b1aae9d", + "createdTime": "2020-12-21T08:25:00.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d0a9c6b0-1f42-47f6-8e29-db0adb8b29a2", + "createdTime": "2020-12-21T08:39:27.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9434abd6-3feb-4081-9fab-90f7b606ce44", + "createdTime": "2020-12-21T08:39:26.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "91691658-aab4-45c2-9696-7698b2691464", + "createdTime": "2020-12-21T08:39:25.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd5f6c17-f9d2-4406-abc2-eb95f6c0a8ba", + "createdTime": "2020-12-21T08:35:57.927Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db7fbbdb-41f8-49ce-af8a-5a2605520264", + "createdTime": "2020-12-21T08:35:57.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6e0c5f91-de44-40b9-b7c4-65592b342d8e", + "createdTime": "2020-12-21T08:35:56.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4530377-c29b-498e-a1f2-8d3c3773add6", + "createdTime": "2020-12-21T08:24:59.956Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1170056b-e936-45e9-8c57-5c759aaad2c2", + "createdTime": "2020-12-21T08:24:59.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1326c27-5701-48d4-8575-ff1d97fd51d7", + "createdTime": "2020-12-21T08:24:58.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77df024c-0ab5-4ef1-8092-1f0d6063ddf3", + "createdTime": "2020-12-21T08:21:20.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ccc374-9fa5-4532-89a9-27043243707c", + "createdTime": "2020-12-21T08:21:19.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63d7b793-a5eb-45ed-964e-c0a1f914b4de", + "createdTime": "2020-12-21T08:21:19.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f53f4bfd-309e-471c-b77b-c47c69b6f22a", + "createdTime": "2020-12-21T08:21:18.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9663eef4-5478-405f-acb5-e652bb76ad06", + "createdTime": "2020-12-18T20:05:09.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2f6368bb-86c3-4601-b57c-fe93662bf5cc", + "createdTime": "2020-12-18T20:04:35.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "63ce5795-2a00-47d4-86cb-f5e016367cf4", + "createdTime": "2020-12-18T20:12:32.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a94c549f-f76b-49bb-b00c-6c60c70a5c8c", + "createdTime": "2020-12-18T20:12:32.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6fbc6d60-d9c1-4e22-9946-c83faedad174", + "createdTime": "2020-12-18T20:12:31.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "44798a38-6683-45b9-a045-c91abcf4c640", + "createdTime": "2020-12-18T20:12:30.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c806877d-5789-4157-b089-8a5636379be1", + "createdTime": "2020-12-18T20:07:26.588Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5f8b3c02-3131-4476-b279-b6efa1c8af26", + "createdTime": "2020-12-18T20:10:21.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1758ed3a-c590-4b2d-8183-e1f7c2852b37", + "createdTime": "2020-12-18T20:05:10.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "754ccde0-da05-476e-9eec-e15c62e2e88e", + "createdTime": "2020-12-18T20:10:21.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "be3bf3e4-bc5d-40b7-9e84-671863c43268", + "createdTime": "2020-12-18T20:10:20.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c9ad198a-004a-4789-909d-eb825c4eb9fd", + "createdTime": "2020-12-18T20:10:20.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8ec561c-c48d-4615-b15c-3594f7229d2a", + "createdTime": "2020-12-18T20:07:27.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1886af61-5ba7-41ba-9399-700a05c24531", + "createdTime": "2020-12-18T20:07:25.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e89d9100-fe6b-4464-8c46-c3063338a105", + "createdTime": "2020-12-18T20:07:25.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bcb83a9-1be8-447c-9d01-696a25734582", + "createdTime": "2020-12-18T20:05:15.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "64a585ee-2dfd-4510-90ab-847636559098", + "createdTime": "2020-12-18T20:05:10.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d8203b8e-3fd5-4b54-9c99-3e5c09ca1ac8", + "createdTime": "2020-12-18T20:05:09.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8dcbc710-89d0-4de5-802c-90c6d6142fa0", + "createdTime": "2020-12-18T20:05:09.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78a8f8d8-ebf7-420f-b8d8-d98c99cda553", + "createdTime": "2020-12-18T20:05:08.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dc434381-4746-4eb1-a0e3-e5eebe3ca765", + "createdTime": "2020-12-18T20:05:08.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d47c562-e927-4be1-ac21-b81c46da782d", + "createdTime": "2020-12-18T20:04:36.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d87a4f57-d301-4dca-b73a-1ea899be7fc2", + "createdTime": "2020-12-18T20:04:34.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "423ea879-afcb-4f34-9cc1-c462029d30aa", + "createdTime": "2020-12-18T20:04:34.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6c2aa646-d49e-485c-a35e-c7ba62727787", + "createdTime": "2020-12-18T20:04:29.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5c5ea709-483e-48e4-80aa-a37dce600cac", + "createdTime": "2020-12-18T20:04:28.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bce28c74-1e1e-46b4-a588-1393f5844636", + "createdTime": "2020-12-18T20:04:28.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c7303528-8773-45c7-bf96-97347e68ac4f", + "createdTime": "2020-12-18T20:04:27.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a39d9071-6ef4-4f4e-96d7-0303618bda62", + "createdTime": "2020-12-18T09:08:42.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69669442-1020-4b88-b421-73a971090452", + "createdTime": "2020-12-18T09:08:41.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cf5ef7a4-bcc1-4f65-bf52-a64b0553ce29", + "createdTime": "2020-12-18T09:08:40.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "79b6629a-f91f-4b15-bbd1-60a4346139b1", + "createdTime": "2020-12-18T09:08:39.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5c3572f8-d970-469f-8f3c-f7da5c9e6549", + "createdTime": "2020-12-18T09:04:58.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d048bc9-7202-4b6f-b2ce-a94ebc16c870", + "createdTime": "2020-12-18T09:04:58.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9044a46-6ac7-4014-a822-a193b392c022", + "createdTime": "2020-12-18T09:04:57.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6f3f0a6-3000-4b00-8325-0f2538a3e3a6", + "createdTime": "2020-12-18T09:04:57.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "133d4eb5-c12d-4ba9-a08d-7ec823d30936", + "createdTime": "2020-12-18T08:58:18.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "145d185f-c70a-4d1a-9c59-a135549cc6d1", + "createdTime": "2020-12-18T08:58:17.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99935685-0216-4153-941f-c059628068dc", + "createdTime": "2020-12-18T08:58:17.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c9d468e4-a468-4607-b8a1-ce002690c67a", + "createdTime": "2020-12-18T08:58:16.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "066b2370-f7a3-4d5a-a51e-ab78d186aaad", + "createdTime": "2020-12-18T08:54:19.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e95e206-6e83-4433-8de5-ff7c07afac96", + "createdTime": "2020-12-18T08:54:19.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f2252935-aac2-4d85-b358-192b8f1ca00c", + "createdTime": "2020-12-18T08:54:18.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ce87c703-441f-490d-af03-1bb2c9f11258", + "createdTime": "2020-12-18T08:54:17.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "650f9646-2c36-49eb-9a6b-c4eb13974f77", + "createdTime": "2020-12-18T08:45:18.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c25627d5-969b-439c-856b-9e164bd4054a", + "createdTime": "2020-12-18T08:45:18.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32d2ce14-1158-4804-b05f-fcda9efcc8c7", + "createdTime": "2020-12-18T08:45:17.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "906d7d76-5934-4b1b-8ba6-c41fe631ba09", + "createdTime": "2020-12-18T08:45:17.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "75f53536-b8b9-4dd5-a61f-47da8662d348", + "createdTime": "2020-12-18T08:32:01.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acdc17e8-a3ef-4c01-8f12-3265364a212e", + "createdTime": "2020-12-18T08:24:43.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c4568631-4d6c-4c2c-8314-a8cef88320f3", + "createdTime": "2020-12-18T08:35:33.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89ee569a-e172-41c7-a5ed-0c474ff9b5bf", + "createdTime": "2020-12-18T08:35:32.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bd687913-ffde-490c-9a7b-02d2653893f3", + "createdTime": "2020-12-18T08:35:32.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dd7cfb47-1e31-425e-ab3e-1b703e0ef4c0", + "createdTime": "2020-12-18T08:35:31.51Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d99477d8-4db3-4c69-8c2d-fb0ef88f8dfe", + "createdTime": "2020-12-18T08:32:00.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7c61a0a-e0b4-4a03-b698-20a93d61bc38", + "createdTime": "2020-12-18T08:32:00.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "996b42e3-88a7-41f8-89fd-0aa4ddb014a5", + "createdTime": "2020-12-18T08:31:59.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23d65c93-f4ad-4b11-9d20-081d7df691a8", + "createdTime": "2020-12-18T08:24:42.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25b3af23-028c-4c96-83cb-ac2b0db7e822", + "createdTime": "2020-12-18T08:24:41.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d48f827-4d7d-4036-af3d-f6b40d154c52", + "createdTime": "2020-12-18T08:24:40.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3507eaf9-baec-44e3-b39c-182408c61713", + "createdTime": "2020-12-18T08:21:02.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b7fc6e1f-964e-4ec9-82aa-5c3078410eec", + "createdTime": "2020-12-18T08:21:02.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7757a6f3-773c-495e-80e7-354740a790ea", + "createdTime": "2020-12-18T08:21:01.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c038a980-5328-4a95-8439-eff3c371aeb0", + "createdTime": "2020-12-18T08:21:01.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3edc139d-b44f-4ab6-bb14-7406bd1271dd", + "createdTime": "2020-12-17T20:08:01.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "283974a6-c947-4bf2-bb92-917bd84cd5be", + "createdTime": "2020-12-17T20:07:58.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9e02a74d-11fc-4680-8e09-08abddd311fe", + "createdTime": "2020-12-17T20:07:55.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2fec2e0b-dee4-43b7-b9b3-ee78ebc7c145", + "createdTime": "2020-12-17T20:11:40.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aa3c5f90-ee3a-47c4-b612-431f228a0e9b", + "createdTime": "2020-12-17T20:08:33.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c368c0c9-2be0-4cb8-a780-6b6140dca6ea", + "createdTime": "2020-12-17T20:14:32.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4a64fca-545e-4c76-a4ee-19a1b131e0d4", + "createdTime": "2020-12-17T20:14:32.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1395a3ac-b7c8-4650-b4ff-4d16456daa70", + "createdTime": "2020-12-17T20:14:31.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2f3f7a0f-a8c0-45d4-af19-7ff01442f13a", + "createdTime": "2020-12-17T20:14:31.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87945667-649e-481f-a311-9f879b3a7b0b", + "createdTime": "2020-12-17T20:11:40.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "18b848eb-f5f9-4c7b-a551-9d7a9d050919", + "createdTime": "2020-12-17T20:11:39.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e6cd9410-adc4-4cdc-b750-5a4d21cff2fb", + "createdTime": "2020-12-17T20:11:38.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10439fdd-92c3-4712-8aa2-4284870994e9", + "createdTime": "2020-12-17T20:08:34.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7a8eef48-882a-4766-b731-a79aa45e2223", + "createdTime": "2020-12-17T20:08:32.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b975a83f-9d8e-4bd1-9a5f-9983628f45c1", + "createdTime": "2020-12-17T20:08:32.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61f08483-89ab-48bd-a588-7312cc484bce", + "createdTime": "2020-12-17T20:08:02.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "95d28482-f91f-4e31-b455-29a69291da4e", + "createdTime": "2020-12-17T20:08:01.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8f81cdcc-ecd7-407d-8655-c16c652d08af", + "createdTime": "2020-12-17T20:08:00.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e8518d4-6596-4ec6-b658-c2672f18ef96", + "createdTime": "2020-12-17T20:07:58.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "123a2431-67bc-4ad7-9f9c-03ab89ead8a0", + "createdTime": "2020-12-17T20:07:57.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "795b8ce5-7e31-4c13-8943-7e59790e52a3", + "createdTime": "2020-12-17T20:07:57.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "897771e3-8ed8-4aef-89c5-ec2338702589", + "createdTime": "2020-12-17T20:07:56.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8817f5f2-5360-4738-b7ca-216c8e004a71", + "createdTime": "2020-12-17T20:07:55.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4060cb7f-d356-446d-8f27-eeebae6cbe5b", + "createdTime": "2020-12-17T20:07:54.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "243aed22-08fd-44f4-9d7f-223c5312ce59", + "createdTime": "2020-12-17T20:06:59.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0db74e27-9fba-4398-9f9c-b245f4d1c8cf", + "createdTime": "2020-12-17T20:06:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7f1722f-8232-4fa4-9c3e-ee9f5ab94c26", + "createdTime": "2020-12-17T20:06:58.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "24b15149-faca-484e-b28a-eee6ecaeb8ae", + "createdTime": "2020-12-17T20:06:57.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "194ce8fe-f3da-47db-9cd5-93acce1b419e", + "createdTime": "2020-12-17T09:11:13.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c54e6221-c744-488a-8df6-e5adf3f6b65c", + "createdTime": "2020-12-17T09:11:12.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0a28eca4-dfe4-49b4-b02d-1e05f0112c03", + "createdTime": "2020-12-17T09:11:12.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4388c5ab-daf5-4da9-9eeb-2e5729c0a691", + "createdTime": "2020-12-17T09:11:11.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ecedb7d-61d4-4176-8f3d-ce8e3d8e8935", + "createdTime": "2020-12-17T09:07:15.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "78bc8e40-8b44-450f-855f-1a3d186810d7", + "createdTime": "2020-12-17T09:07:14.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6dd204b1-f588-4aef-9409-9b6efa8c9457", + "createdTime": "2020-12-17T09:07:13.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "616c6807-89bb-415b-8f2b-24f40c8c3512", + "createdTime": "2020-12-17T09:07:13.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "298b0899-915b-4b85-a842-d37357f8f1b4", + "createdTime": "2020-12-17T08:59:19.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8692396a-0f72-42ef-a6a4-3f84223cb1ef", + "createdTime": "2020-12-17T08:59:18.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d8b95612-0b12-4a6c-a846-089500758c95", + "createdTime": "2020-12-17T08:59:17.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "575adccf-5861-4845-9793-36574ffdd83f", + "createdTime": "2020-12-17T08:59:17.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8a14622-12d6-4b6d-a756-52cce65c88d0", + "createdTime": "2020-12-17T08:55:24.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "809d3ad6-94a4-40a6-b91e-7ff23fd75198", + "createdTime": "2020-12-17T08:55:24.055Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3fb9bfbc-5448-47d4-abdd-a075568da318", + "createdTime": "2020-12-17T08:55:23.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bd427dd3-9986-436a-bf28-56ccd01dc634", + "createdTime": "2020-12-17T08:55:22.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0c90228-6b66-434f-90e8-6d4b6f6c8906", + "createdTime": "2020-12-17T08:46:17.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "18477b5e-57db-4046-a685-152a1fcda513", + "createdTime": "2020-12-17T08:46:16.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "46efc1fd-fe21-4300-a460-0184b8d4d98e", + "createdTime": "2020-12-17T08:46:16.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b2bf9e06-dd60-4c63-8c31-7de3eba60cbe", + "createdTime": "2020-12-17T08:46:15.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8d85bd3-94c5-4ef1-acdc-9b19346c1c3e", + "createdTime": "2020-12-17T08:33:05.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3e502217-3054-44e0-9997-6d1ee387f8bc", + "createdTime": "2020-12-17T08:36:45.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3d5e72cc-56f2-46d8-8f6d-83d0a796cb36", + "createdTime": "2020-12-17T08:36:44.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8cfa28c3-67b5-48d9-9353-cd9c9ba5e06b", + "createdTime": "2020-12-17T08:36:43.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f24c42c2-3a9b-4a4e-a19d-7d8b21435c1a", + "createdTime": "2020-12-17T08:36:42.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2039ef3f-2388-4e8d-8db1-e45e255716ff", + "createdTime": "2020-12-17T08:21:26.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b9fe7b3e-2b44-470b-81b3-b2d21f6f8cbb", + "createdTime": "2020-12-17T08:25:24.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c8d7f13-aeb4-4784-ad33-64e758850bf9", + "createdTime": "2020-12-17T08:33:05.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "549aec3f-d8cc-44e4-b996-35a5b458105a", + "createdTime": "2020-12-17T08:33:04.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8d92be9-c0b1-44fd-84ae-682031ec4de8", + "createdTime": "2020-12-17T08:33:03.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92affdca-1402-473c-8e86-847f2b6b0dd4", + "createdTime": "2020-12-17T08:25:24.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d9873558-0e44-4acc-a56c-e3b139745aee", + "createdTime": "2020-12-17T08:25:22.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "37404930-c2ec-4c2c-8fd3-7b07ed72c212", + "createdTime": "2020-12-17T08:25:21.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7125acd-f3b5-425a-bbcc-489539852dc0", + "createdTime": "2020-12-17T08:21:24.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "927735ba-5135-425e-a01b-c7fa6f2b1611", + "createdTime": "2020-12-17T08:21:22.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "522e8b5d-c29c-42c4-ba36-fd1d28abed00", + "createdTime": "2020-12-17T08:21:16.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ee6766e-a2de-465b-be63-fe689cc5902b", + "createdTime": "2020-12-16T20:05:22.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "09b509df-a8aa-481e-b986-571030f2faad", + "createdTime": "2020-12-16T20:05:12.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3d4e0f28-5ee5-4540-9650-899219518f29", + "createdTime": "2020-12-16T20:12:08.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "599582a5-57c9-4fea-bdbc-faad803b5fa1", + "createdTime": "2020-12-16T20:06:49.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "46affe3e-19ba-485b-ab10-f190051eabad", + "createdTime": "2020-12-16T20:05:45.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3cbaa889-9c5d-4335-a1e9-3c867ac4f3bb", + "createdTime": "2020-12-16T20:12:37.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "552b9a99-c493-49bf-87db-2ad1a70ff440", + "createdTime": "2020-12-16T20:12:36.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "55373cb3-72c3-4b49-9796-970f0cc3f7c5", + "createdTime": "2020-12-16T20:12:34.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "fd1c94e8-c946-4e9a-ac1f-c6d83615d3cd", + "createdTime": "2020-12-16T20:12:33.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4316407e-eb27-4591-af11-95b346dc3f10", + "createdTime": "2020-12-16T20:12:08.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a3cd4b76-2cd8-4021-801a-34159cda0e84", + "createdTime": "2020-12-16T20:12:07.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1addfd55-da55-4afe-9265-57f3ea1b1a3c", + "createdTime": "2020-12-16T20:12:07.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dda56b7e-6fb9-4d70-a23d-8a288024c0d6", + "createdTime": "2020-12-16T20:06:49.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ecd45ee0-0d67-498c-94ac-f2fcc6a3fd37", + "createdTime": "2020-12-16T20:06:48.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "bd0d0615-ae7b-42ab-b925-b25039d8aa3f", + "createdTime": "2020-12-16T20:06:47.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87c24904-6e2e-4dcd-923b-fd52bc8a75b8", + "createdTime": "2020-12-16T20:05:46.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e8f1bbde-23e3-4773-b42b-20915696d3c0", + "createdTime": "2020-12-16T20:05:44.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e94f7ebc-0e37-416f-9d1a-d091f953f224", + "createdTime": "2020-12-16T20:05:43.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c04583e7-5040-488a-a487-ccea42902a71", + "createdTime": "2020-12-16T20:05:23.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f0bd55c0-1ad8-4722-8263-a6de4a46fa44", + "createdTime": "2020-12-16T20:05:20.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "20ffbd26-892e-4b78-935a-55b056ccf52e", + "createdTime": "2020-12-16T20:05:19.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94eb3d95-402d-407b-9741-fefd6432e286", + "createdTime": "2020-12-16T20:05:13.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c8dae370-e7f9-40f9-ac09-038782b1d30a", + "createdTime": "2020-12-16T20:05:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b040eab4-8841-49be-92ff-2e6161ffdb87", + "createdTime": "2020-12-16T20:05:11.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3ba8286-7e1f-4929-b3de-e98ec50e97c1", + "createdTime": "2020-12-16T20:05:08.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "58a8c495-75b4-474c-80d3-5196152eeb5d", + "createdTime": "2020-12-16T20:05:07.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "12ae16cb-b418-477f-9c73-110be6ff2a26", + "createdTime": "2020-12-16T20:05:07.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "53ccc287-b680-461c-9118-356566b55c57", + "createdTime": "2020-12-16T20:05:06.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0b851d8-7b34-4ce9-bffc-4963c7222c76", + "createdTime": "2020-12-16T17:37:38.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e70019a1-0d0c-4741-bbeb-8326641d1b9c", + "createdTime": "2020-12-16T17:37:37.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f159de-a1a4-40f6-aa71-cc6efe5d9515", + "createdTime": "2020-12-16T17:37:36.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8a7eccf5-aaeb-4779-b4cc-f28fe6cd0262", + "createdTime": "2020-12-16T17:37:35.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d0c9ab3-abd7-4b00-8fbe-67fe070cd37f", + "createdTime": "2020-12-16T17:34:02.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2f1f7090-edb7-4ed4-bc06-5a603d036073", + "createdTime": "2020-12-16T17:34:02.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0e67ddd7-eb00-46ac-aafc-d4b66484ef1e", + "createdTime": "2020-12-16T17:34:01.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "03aa6e5d-77fa-46d8-9617-06f70f66c606", + "createdTime": "2020-12-16T17:34:01.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "761061b2-6fc2-4750-a26b-1840eb4ad7fb", + "createdTime": "2020-12-16T17:27:13.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "89eb8328-7a04-429b-a82e-eaf75442566d", + "createdTime": "2020-12-16T17:27:12.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0bf6f5b9-9f5a-4e87-954b-1bf28ab6509d", + "createdTime": "2020-12-16T17:27:11.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b1609865-4cbf-491d-9280-27f597292799", + "createdTime": "2020-12-16T17:27:11.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e927ae7a-2717-46ee-9473-b0e8ee3c247d", + "createdTime": "2020-12-16T17:23:44.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e43fdd60-d1d3-4353-b058-88a21be5a688", + "createdTime": "2020-12-16T17:23:43.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "978b4db7-5981-4c2b-a5e6-9c886e896f6a", + "createdTime": "2020-12-16T17:23:42.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc40a2cd-629d-4813-877f-32d5dd0780be", + "createdTime": "2020-12-16T17:23:41.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4a65a5d-ab09-4fc1-a601-9178b8575ca9", + "createdTime": "2020-12-16T17:13:23.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c44a85ba-3410-447a-972f-58bde62f2142", + "createdTime": "2020-12-16T17:13:22.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "25f91160-b6ee-424b-9ddf-201872235508", + "createdTime": "2020-12-16T17:13:21.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59219346-7a2f-46b5-bf46-90bab052cdeb", + "createdTime": "2020-12-16T17:13:20.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f993cb7-ce37-4fe0-9809-7b8a86db9a05", + "createdTime": "2020-12-16T16:57:23.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be4439aa-15b0-4eea-ae16-d23361d3fc54", + "createdTime": "2020-12-16T17:01:07.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2926a1ca-791d-4a4c-b272-ab57142d22f1", + "createdTime": "2020-12-16T17:01:06.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7759f9c5-4eed-42ea-b9b4-eb56a3cca475", + "createdTime": "2020-12-16T17:01:06.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "01b6ac49-6bf3-41ff-85e9-b25380761667", + "createdTime": "2020-12-16T17:01:05.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e679fd08-b07e-4fe4-b920-b7f9c4d81124", + "createdTime": "2020-12-16T16:45:44.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7e155c3a-7333-481b-89cf-f5326db5dcb1", + "createdTime": "2020-12-16T16:49:41.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5df29647-fac4-4a35-b1fa-a9ea6212c13e", + "createdTime": "2020-12-16T16:57:22.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1c4e3799-c0fb-407a-a3ac-ae0ddcf0b7d3", + "createdTime": "2020-12-16T16:57:22.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1f9c4727-7986-409f-99b2-e4a84c63c337", + "createdTime": "2020-12-16T16:57:21.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4499406-3e59-4d37-972b-80250c66f4a6", + "createdTime": "2020-12-16T16:49:38.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "beb769b2-4f4c-4298-a236-a16cc3b96dc4", + "createdTime": "2020-12-16T16:49:37.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b0b70a99-e0b6-4771-9733-df68bcdcdee0", + "createdTime": "2020-12-16T16:49:34.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdcfdd58-472f-4995-bc76-c19a38217012", + "createdTime": "2020-12-16T16:45:42.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8ead6503-bf85-475a-a0d4-3391e67a6fb5", + "createdTime": "2020-12-16T16:45:40.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bea06748-7b01-40db-b8e1-6c1d5cafcc28", + "createdTime": "2020-12-16T16:45:36.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e5a30a4-a2aa-448e-a23b-33015b266ced", + "createdTime": "2020-12-16T10:10:15.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd6c5734-d463-4514-b7b9-6237adb73cf8", + "createdTime": "2020-12-16T10:10:14.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f63d9736-7b8c-4210-b693-8afe57c904d4", + "createdTime": "2020-12-16T10:10:13.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa6c9012-ab4c-4edc-90be-bdf094bff7ad", + "createdTime": "2020-12-16T10:10:13.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "376d60f8-c3ab-43b5-9127-c9ae2f0a42f0", + "createdTime": "2020-12-16T09:58:30.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bb30db51-476a-43e9-b21e-080163b60de2", + "createdTime": "2020-12-16T09:58:30.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "529e5a10-60b3-4e6b-8596-c460ba2845da", + "createdTime": "2020-12-16T09:58:29.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b22a10a6-8748-4ac6-8f0b-b953fc62ca26", + "createdTime": "2020-12-16T09:58:28.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c170b77f-1059-4058-a4d1-f6d075f27ed4", + "createdTime": "2020-12-16T09:42:43.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ccbeff1f-b0ae-4b91-a3bf-1f06cc068c03", + "createdTime": "2020-12-16T09:42:43.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9dceb65-a17c-4b72-b037-78c133a6a19d", + "createdTime": "2020-12-16T09:42:42.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5b3b0607-8af0-4a93-ad5c-1c04fdce94b7", + "createdTime": "2020-12-16T09:42:42.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb558c25-917d-4c3d-9a0e-01f365fa8f05", + "createdTime": "2020-12-16T09:34:36.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5318354a-3323-4989-beac-18ee524e09c2", + "createdTime": "2020-12-16T09:34:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32043475-9dfe-4c48-82c0-e9b125ac9e0e", + "createdTime": "2020-12-16T09:34:34.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bc690e93-6ffd-41e6-b6e7-055827f70e32", + "createdTime": "2020-12-16T09:34:33.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6002afcd-3400-430a-bd8b-7070e4296afd", + "createdTime": "2020-12-16T09:08:31.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55ae77a9-ab26-4745-ae21-28bac1c41abf", + "createdTime": "2020-12-16T09:08:31.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a9bae51b-1b91-4e6f-906b-a9bfd6e7dd37", + "createdTime": "2020-12-16T09:08:30.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4869dcb-f76c-4404-8e60-148e0a9219e7", + "createdTime": "2020-12-16T09:08:29.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbcf0a9d-6ab3-4ed5-9835-a96992ea3cc3", + "createdTime": "2020-12-16T08:48:47.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17400839-0e27-4c33-86c1-b6ac31bd11a3", + "createdTime": "2020-12-16T08:48:46.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8fa1cfe5-e360-4819-9674-48e169d36372", + "createdTime": "2020-12-16T08:48:46.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc608b97-6194-440a-8f42-f3da9ba6ffa9", + "createdTime": "2020-12-16T08:48:45.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ddfae7a-1f91-418f-995b-80e43f10febc", + "createdTime": "2020-12-16T08:38:44.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5e5d7522-7441-47dd-8197-ffdec59b0044", + "createdTime": "2020-12-16T08:38:44.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc8fd2f-419f-4679-8443-30db4d35d19b", + "createdTime": "2020-12-16T08:38:43.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf9fc5bd-d7dd-4315-b0c4-6609d7cda3c6", + "createdTime": "2020-12-16T08:38:42.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23fc0eef-ce3e-477e-b3e1-61d9e7bbef57", + "createdTime": "2020-12-16T08:29:03.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cfc252ab-16ee-4a03-8645-f5e5eb0e5110", + "createdTime": "2020-12-16T08:29:02.803Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b98929c0-f55d-48f2-9964-cb475b26fe49", + "createdTime": "2020-12-16T08:29:02.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "183934a0-a3ba-4f27-b6a4-2685214081c7", + "createdTime": "2020-12-16T08:29:01.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba313fcb-21d5-4f6e-949c-0166084088ff", + "createdTime": "2020-12-16T08:23:06.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bc87b35-1e92-49d3-8932-964809a836a9", + "createdTime": "2020-12-16T08:23:06.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac396330-5fe8-4484-b184-4ce917fe59ec", + "createdTime": "2020-12-16T08:23:04.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a2abd210-4c26-4fec-b6a5-b8439817725d", + "createdTime": "2020-12-16T08:23:04.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ca0c55b-6ef2-4ae4-a2a9-0dbaed305920", + "createdTime": "2020-12-15T20:15:37.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1ec9678c-691c-43d7-b09e-bf9532600df7", + "createdTime": "2020-12-15T20:15:36.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "740bc226-7c41-46dc-8160-f55a27e8c1a7", + "createdTime": "2020-12-15T20:15:35.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1f99a0e5-47f3-490b-934f-0aac24a6b70e", + "createdTime": "2020-12-15T20:15:35.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "871b26cb-19f2-4659-a869-d93d8ec095ab", + "createdTime": "2020-12-15T20:12:19.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4ab4179a-16e1-48ac-b850-2c82b2870612", + "createdTime": "2020-12-15T20:12:18.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8fd4a2f1-e11a-4872-a363-736f610f0457", + "createdTime": "2020-12-15T20:12:17.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "efb5e291-9502-4bcd-99b9-e29bab03f1fb", + "createdTime": "2020-12-15T20:12:16.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2231c3c3-726c-4050-9463-72834a3d9438", + "createdTime": "2020-12-15T20:11:50.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e40524f7-3c6e-4518-bee4-9d01f82e63da", + "createdTime": "2020-12-15T20:11:49.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e0ab132b-1c3d-431e-8e55-e403b61934b7", + "createdTime": "2020-12-15T20:11:48.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8afd0247-b76b-4393-8fd8-3100a7fe51c9", + "createdTime": "2020-12-15T20:11:47.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8054194b-6e98-408e-9962-2b32900ff0bc", + "createdTime": "2020-12-15T20:06:47.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8c1e2ced-7df3-4947-bdd0-6a59091f6367", + "createdTime": "2020-12-15T20:06:45.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a952b1cb-d503-4cb4-b613-3a8f113af433", + "createdTime": "2020-12-15T20:06:43.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "1d74bf10-735d-4131-9688-421c39a15caa", + "createdTime": "2020-12-15T20:06:41.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a052766f-8252-4414-940e-382f2776dde3", + "createdTime": "2020-12-15T20:06:41.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1d337188-7df5-4fe5-aacf-1a0a688e55c8", + "createdTime": "2020-12-15T20:06:39.182Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "26a35a78-0ed3-456b-9611-b1cd749066cd", + "createdTime": "2020-12-15T20:06:36.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9045b945-8f45-43e5-be06-774eef831284", + "createdTime": "2020-12-15T20:06:32.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21aa0998-91fa-41ce-b153-7a05a6d6586b", + "createdTime": "2020-12-15T20:06:02.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b1f8fa18-da67-4c80-bfe5-5bebaed61982", + "createdTime": "2020-12-15T20:06:02.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "974597a5-ebb2-46fd-b2bd-a71051004f2c", + "createdTime": "2020-12-15T20:06:01.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c0c3379f-a01a-4ccb-82a0-1f267ee74750", + "createdTime": "2020-12-15T20:06:01.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ced23829-e176-4dde-9593-f53e281b7ab6", + "createdTime": "2020-12-15T20:05:46.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b9df66a6-cacd-414c-b53b-08c02ebb78d4", + "createdTime": "2020-12-15T20:05:45.77Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f7c60f8a-4ee2-4164-9e1e-39ff62a8162a", + "createdTime": "2020-12-15T20:05:42.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b07dee7-004b-4a2e-9a0b-a7a6ed9f5dc0", + "createdTime": "2020-12-15T20:05:42.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1752cbf0-6b1d-4e19-a556-5280211b8d15", + "createdTime": "2020-12-15T09:18:45.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2e2457cb-a3f7-4635-b142-35dcb49ad032", + "createdTime": "2020-12-15T09:18:44.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc05d5a2-ee02-456b-a809-19ccc324e938", + "createdTime": "2020-12-15T09:18:43.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fafcdda2-897e-4ec9-93a0-cfdb01b66f21", + "createdTime": "2020-12-15T09:18:42.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "826ab393-4099-450b-b0fd-05f462f00d64", + "createdTime": "2020-12-15T09:15:00.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9bdd6465-43c2-4471-9413-cc4af2cbaad4", + "createdTime": "2020-12-15T09:14:59.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7b01663-9937-4cd7-bc0e-1e5462c2cb7b", + "createdTime": "2020-12-15T09:14:58.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "113c94e3-d49f-408f-992a-1882edf5060c", + "createdTime": "2020-12-15T09:14:57.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9cb4deb-0b4c-4aaf-83c8-1f7f2ea1c145", + "createdTime": "2020-12-15T09:04:06.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bc01276e-8437-43a7-b19d-601d89c1c892", + "createdTime": "2020-12-15T09:04:05.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "009eaf54-3a07-46a8-969e-a689ab4ff5da", + "createdTime": "2020-12-15T09:04:05.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5bd7089b-f0ac-414f-abc2-ed5c36ceda5a", + "createdTime": "2020-12-15T09:04:04.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da58f497-4fee-4111-b6e0-67f44f3e5452", + "createdTime": "2020-12-15T09:00:09.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "66a0ae88-92bc-48bb-8516-b6fa716918ec", + "createdTime": "2020-12-15T09:00:08.75Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf4dae37-bfef-4163-bae0-6d056eb2793b", + "createdTime": "2020-12-15T09:00:08.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e87a25f-af39-4d27-a40c-7a811e09107c", + "createdTime": "2020-12-15T09:00:07.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4d2b141-d372-4906-80a6-05113d1ae722", + "createdTime": "2020-12-15T08:50:44.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a06f5988-2d42-405c-b97f-8c7dab137b2e", + "createdTime": "2020-12-15T08:50:43.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1628ce8-70d9-46fe-886d-f6895ed4c6ac", + "createdTime": "2020-12-15T08:50:43.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "82ebbecb-27c2-46e8-b371-b3f96f6ab1ab", + "createdTime": "2020-12-15T08:50:42.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef4958b2-f4c5-47a2-acbd-f82c1e8a99b5", + "createdTime": "2020-12-15T08:35:37.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1be057c6-e7fd-46c8-a6f5-5ad462d45e66", + "createdTime": "2020-12-15T08:35:36.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67f9fa90-9a96-489b-9ed0-b284213d81b7", + "createdTime": "2020-12-15T08:35:35.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e760e518-2c34-4128-b559-4bf114ff2427", + "createdTime": "2020-12-15T08:35:34.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd53f617-b376-4a44-91b9-d93054d41663", + "createdTime": "2020-12-15T08:31:33.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7a527e8b-35bc-471e-bb01-8c8d38dd9053", + "createdTime": "2020-12-15T08:31:33.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1ca28843-4633-453e-a0bc-80fce622b15d", + "createdTime": "2020-12-15T08:31:32.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bdca9fd9-735f-4622-81bd-378a2ac04de1", + "createdTime": "2020-12-15T08:31:31.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ff27d1b-e37d-4c53-8d75-4187d695056a", + "createdTime": "2020-12-15T08:23:55.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3dac40d6-cff6-4626-aad2-b87ae9ed6ba8", + "createdTime": "2020-12-15T08:23:55.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "68ecb4ac-908d-4419-9165-fa88a140d1b9", + "createdTime": "2020-12-15T08:23:54.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "21af922e-0e91-47e7-8baa-0b5f94d8e25d", + "createdTime": "2020-12-15T08:23:54.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7dcfc795-24d0-4bec-af06-8974dc1cd49d", + "createdTime": "2020-12-15T08:20:52.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd26f148-54fe-45cb-8dba-befdeafb7603", + "createdTime": "2020-12-15T08:20:51.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f02260e1-8ba6-4bfa-9555-c6b6e76f21e5", + "createdTime": "2020-12-15T08:20:50.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3c6b410-7ace-4639-adb4-e71498ceb10e", + "createdTime": "2020-12-15T08:20:49.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5820d88b-5d9c-4d28-855f-226e16c543ac", + "createdTime": "2020-12-15T01:34:48.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "57bb55e8-d848-4f30-bc0c-ce64ac6e56ac", + "createdTime": "2020-12-15T01:34:48.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7c875492-e765-4f42-8392-16b882233975", + "createdTime": "2020-12-15T01:34:47.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "724a18c2-99a1-43e1-be86-9efc81658462", + "createdTime": "2020-12-15T01:34:47.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa2c1fa5-b5b3-4c28-851a-4f19fdc31364", + "createdTime": "2020-12-15T01:34:46.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bd411ea6-d52c-4e7f-aa0f-9193bfbc9a46", + "createdTime": "2020-12-15T01:34:46.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a159427-a55f-4aaf-b7d4-ddc61e9ea730", + "createdTime": "2020-12-15T01:34:43.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ec71e2e0-ca5d-40ea-bece-967657b3513e", + "createdTime": "2020-12-15T01:34:42.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c2d58161-22f6-4587-8453-f2c15c102038", + "createdTime": "2020-12-15T01:34:42.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3718aa43-3423-4082-883f-833f906366c7", + "createdTime": "2020-12-15T01:34:42.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "252407cf-f2b4-4820-8b66-70d764bc6d85", + "createdTime": "2020-12-15T01:34:41.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "52d96f56-5e37-4967-ab2a-5f4dbdffbb68", + "createdTime": "2020-12-15T01:34:41.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10bf1723-3e9a-41d5-b229-67f7dfbdcecf", + "createdTime": "2020-12-15T01:17:02.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f03a4f5c-d7d7-4d8c-925a-af5f2f4a7880", + "createdTime": "2020-12-15T01:17:02.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7d990d16-ba32-45c2-aad3-3e6204fd61cb", + "createdTime": "2020-12-15T01:17:01.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "516d7478-eb6e-4aba-b660-50c6564331fd", + "createdTime": "2020-12-15T01:17:01.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7622b244-294f-422c-bdb7-21aac162f923", + "createdTime": "2020-12-15T01:17:00.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "69736d3e-f632-49d7-998c-1886cac797f4", + "createdTime": "2020-12-15T01:16:59.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7920b927-0fd6-42da-aeb5-09ef0e0a144f", + "createdTime": "2020-12-15T01:16:57.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f3eede78-471d-4cc2-9631-2d2b7e7f35b1", + "createdTime": "2020-12-15T01:16:56.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "e4fdb3d4-69df-4dd7-8a84-aa10bcb510d6", + "createdTime": "2020-12-15T01:16:55.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "780f534b-2f98-4c64-a3de-e7f907b822e9", + "createdTime": "2020-12-15T01:16:55.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "06f9c4ca-0006-4536-97a7-28feb71a395f", + "createdTime": "2020-12-15T01:16:54.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c1a487bb-6fcd-41bc-bbad-ed00cbe8bc39", + "createdTime": "2020-12-15T01:16:48.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71a2b349-a71c-4255-acbd-c4176b4cedb8", + "createdTime": "2020-12-14T20:13:05.831Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "457a5634-3e14-49c0-98e9-a7692274fa01", + "createdTime": "2020-12-14T20:13:05.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d3cfee47-ee9a-474d-9f65-d547de5481da", + "createdTime": "2020-12-14T20:13:04.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "918c8e33-f9bf-4321-8379-196b3763a9df", + "createdTime": "2020-12-14T20:13:04.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4ce3a2f4-35cb-42e6-9ca2-2990f169a858", + "createdTime": "2020-12-14T20:12:53.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3c942769-5d5c-46e8-a896-3f622afa1587", + "createdTime": "2020-12-14T20:12:53.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "905a0ec5-6dda-445c-8832-ba391ca6d22e", + "createdTime": "2020-12-14T20:12:53.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3db112c1-3933-45f8-a8aa-2eff0ff9200a", + "createdTime": "2020-12-14T20:12:52.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "20a9451c-b3af-454b-9b9f-f02578a966d1", + "createdTime": "2020-12-14T20:07:11.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfde0cd3-58ae-475b-93cc-4cb982f761b2", + "createdTime": "2020-12-14T20:07:11.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9f5d2d52-364f-47f6-b707-a2069f9de4f4", + "createdTime": "2020-12-14T20:07:10.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "229da172-9c4f-463c-89d8-950dd73230bc", + "createdTime": "2020-12-14T20:07:09.135Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06825b74-0417-4293-9b8c-8c268f2507ee", + "createdTime": "2020-12-14T20:04:57.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "555352b8-4a6d-4225-b0da-ecc5155be98e", + "createdTime": "2020-12-14T20:04:57.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f80273e4-ccec-4741-93c1-91f818928dc4", + "createdTime": "2020-12-14T20:04:56.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7dc79633-5dd8-444a-b928-667c0749aade", + "createdTime": "2020-12-14T20:04:55.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c09b814-fc99-4536-a448-f588c740ba36", + "createdTime": "2020-12-14T20:04:55.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "42371b02-ab31-499d-9411-25e40458ab59", + "createdTime": "2020-12-14T20:04:54.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8f8f6c10-5d06-429d-87e9-c4267bba2576", + "createdTime": "2020-12-14T20:04:54.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a6f59a81-9f97-4d06-9b06-925951683bf6", + "createdTime": "2020-12-14T20:04:54.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "360562bf-a814-4cb7-b449-600fede81374", + "createdTime": "2020-12-14T20:04:53.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "461fce25-12e3-4a44-98b3-25c63d525fbc", + "createdTime": "2020-12-14T20:04:53.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d6f31bfa-6fd1-4905-8507-962b866f90e4", + "createdTime": "2020-12-14T20:04:53.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6fc577b5-c3e2-4887-80a6-2e6afa64d90b", + "createdTime": "2020-12-14T20:04:52.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5a082c8c-43d6-4ee1-a55a-636095399ded", + "createdTime": "2020-12-14T20:04:52.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e1d1ea0d-825a-4855-bb33-7e5986e26e60", + "createdTime": "2020-12-14T20:04:51.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2b2e208-9d1d-4237-a2d5-99b85f92162e", + "createdTime": "2020-12-14T20:04:51.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "47b3ef36-95d2-41a2-a564-b8179ef2af8f", + "createdTime": "2020-12-14T20:04:50.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "162eaa3f-e233-4313-bd75-1ee56abff5aa", + "createdTime": "2020-12-14T09:21:02.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "057883ac-2ab2-4caf-af62-3724ca2e807d", + "createdTime": "2020-12-14T09:21:01.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "21430ef3-756d-44b7-836b-d3e309d8094a", + "createdTime": "2020-12-14T09:21:01.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d290cee1-e919-46e3-a78c-919592f9588f", + "createdTime": "2020-12-14T09:21:00.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "718bae15-dd8c-4f8f-8ef3-427a991ff001", + "createdTime": "2020-12-14T09:16:44.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1c1e9087-de34-41b3-8777-c3e2deffa79b", + "createdTime": "2020-12-14T09:16:44.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c648cecd-0082-4c61-9c64-88d4bd8106db", + "createdTime": "2020-12-14T09:16:43.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cea7a6af-4799-4c76-8822-710a1662a19f", + "createdTime": "2020-12-14T09:16:43.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af240be7-e26e-4a54-a612-d3c32771480b", + "createdTime": "2020-12-14T09:07:04.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dea74df3-14e1-433b-a145-80c3d1ed73ca", + "createdTime": "2020-12-14T09:07:03.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7a4598c-e7d9-4f0d-982d-0a760dd9e8f2", + "createdTime": "2020-12-14T09:07:02.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a16aa85f-4d80-4789-9eac-de64dd269dce", + "createdTime": "2020-12-14T09:07:01.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a775776-2ae3-492a-8533-fd2a92185cf2", + "createdTime": "2020-12-14T09:03:04.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "49992a84-3ee2-4ea0-9de0-a14cdb9abacc", + "createdTime": "2020-12-14T09:03:03.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fa0509c3-c475-4953-bfa3-8da77a5762f0", + "createdTime": "2020-12-14T09:03:02.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "028c7a9a-febf-4a2d-9b2b-ec97f96236fb", + "createdTime": "2020-12-14T09:03:01.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d2eb2aa-cb68-461f-a78d-989c29bb1fd6", + "createdTime": "2020-12-14T08:48:06.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fff97041-c61a-40a4-97e0-5de93e90ca92", + "createdTime": "2020-12-14T08:48:05.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75af087a-8785-4334-9ea0-2901e452c00c", + "createdTime": "2020-12-14T08:48:05.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "70bcfcb5-e231-435e-8671-eb1d09c58058", + "createdTime": "2020-12-14T08:48:04.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9a981a17-d308-4e3f-927a-529737b118a2", + "createdTime": "2020-12-14T08:37:51.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bc65e3d2-34e8-457e-bb69-5b745c35446f", + "createdTime": "2020-12-14T08:37:49.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cff79243-88ea-47f8-b035-bd3f99f75a25", + "createdTime": "2020-12-14T08:37:49.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "12f6a212-b9b7-4dec-bfeb-2f6fdeb87d1c", + "createdTime": "2020-12-14T08:37:48.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4bc8c9bd-3e4b-4638-9416-029bbbaa922f", + "createdTime": "2020-12-14T08:33:54.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e93c2c39-2db3-483a-9479-af72c6cb9686", + "createdTime": "2020-12-14T08:33:53.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c70ae3e-77f6-47ba-af29-892783dd9fa7", + "createdTime": "2020-12-14T08:33:53.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2b2d6cfa-fb6d-444d-8380-5cb76acba164", + "createdTime": "2020-12-14T08:33:52.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "210ffcd5-ee57-4306-af02-ad8710dfebc3", + "createdTime": "2020-12-14T08:25:47.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9718eba1-3a2e-4e8c-952d-9d62c0aa544c", + "createdTime": "2020-12-14T08:25:46.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1f2c42bb-7e57-4f75-abc7-cf32485e27ba", + "createdTime": "2020-12-14T08:25:46.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa33071d-9898-4f6e-8a84-0065ddda841c", + "createdTime": "2020-12-14T08:25:44.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a46db5c-00db-4031-83f8-b8113a5cd5c1", + "createdTime": "2020-12-14T08:21:51.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f84a5fc4-297a-4b45-b612-146b37336335", + "createdTime": "2020-12-14T08:21:51.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "997cce26-8835-470c-aab0-48c75374501f", + "createdTime": "2020-12-14T08:21:50.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "559bba31-aadf-4cb6-b80e-8cc2eec84489", + "createdTime": "2020-12-14T08:21:49.488Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6674db88-c741-495a-a6a3-0f1897c2122e", + "createdTime": "2020-12-11T20:16:07.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "323feec6-4e33-4962-921f-7e5fd0eddd73", + "createdTime": "2020-12-11T20:16:06.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "46beb96b-8ab5-44e1-9074-a52409f3ac56", + "createdTime": "2020-12-11T20:16:06.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6ef02959-fc1c-40c4-bcfc-9f529cbcc81a", + "createdTime": "2020-12-11T20:16:05.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29cdd603-f4b6-4148-a08d-d69fa3b12c63", + "createdTime": "2020-12-11T20:10:07.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2788679d-1257-4616-bf04-fbb62e4be72b", + "createdTime": "2020-12-11T20:10:07.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aa32fe46-3ef0-4cc5-ba8e-12155cdadc0d", + "createdTime": "2020-12-11T20:10:06.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d16305a1-2305-44e0-88fb-cdb326796c8c", + "createdTime": "2020-12-11T20:10:05.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1dd54793-4fc3-4d79-99ed-e0b4fb251dc3", + "createdTime": "2020-12-11T20:09:47.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6abe68ac-4026-4b28-b5b9-33bdf67c9aa9", + "createdTime": "2020-12-11T20:09:46.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0b63d6a2-2fea-4d6f-b83e-c6f2107070e9", + "createdTime": "2020-12-11T20:09:46.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "69f058b0-6649-4bf3-b2f4-464c6dc1ba3f", + "createdTime": "2020-12-11T20:09:45.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af5ed77a-f6fa-416f-8f7a-e3e894c63664", + "createdTime": "2020-12-11T20:06:03.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9f11a4ce-9f06-4be2-8af5-42a8e6f87d8d", + "createdTime": "2020-12-11T20:06:02.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b0a55c20-ac4f-46db-a301-4ef59c65dbcb", + "createdTime": "2020-12-11T20:06:02.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "38db91ef-ba7f-41a6-9174-452589fa0609", + "createdTime": "2020-12-11T20:06:01.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d56fd30-0466-4620-8c3e-6a05e82daff2", + "createdTime": "2020-12-11T20:05:46.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5fcea47b-41e8-490c-8ba6-e2474e344b54", + "createdTime": "2020-12-11T20:05:45.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1a09803d-a585-4b35-90a6-94ee4cf3ecd3", + "createdTime": "2020-12-11T20:05:44.591Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6e0104e8-cbfd-41f4-a147-65aa81e4e265", + "createdTime": "2020-12-11T20:05:43.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5b0fed6-e7dd-479b-ac66-a68acc45d297", + "createdTime": "2020-12-11T20:04:54.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "268bc282-2c42-4f21-a6a6-6b1c74a8ba74", + "createdTime": "2020-12-11T20:04:54.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "874200dc-74a4-4fb3-a8df-9eb3b11763be", + "createdTime": "2020-12-11T20:04:53.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "339e52e4-eca8-43e4-bd0e-20044abb3d58", + "createdTime": "2020-12-11T20:04:53.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7af59732-b4b0-4315-863f-b92a767326ba", + "createdTime": "2020-12-11T20:04:53.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c16c8331-c450-42f3-89f8-87c187c01c6c", + "createdTime": "2020-12-11T20:04:52.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "457e2463-2ba7-424b-84b2-964d5e879eff", + "createdTime": "2020-12-11T20:04:52.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1216f6c8-c31f-42f7-bce1-b552bff57680", + "createdTime": "2020-12-11T20:04:51.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9dd1a38d-0d3a-45ea-9e0e-445f52f0a68c", + "createdTime": "2020-12-11T09:26:49.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "65bdcd46-20f6-4a9b-baeb-cfd3bff62f1d", + "createdTime": "2020-12-11T09:26:48.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1c2208ba-6bfa-4961-ba97-f49b7f8d31f6", + "createdTime": "2020-12-11T09:26:47.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e123a34-5587-43a7-979d-fbec04d42c5c", + "createdTime": "2020-12-11T09:26:45.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "231082df-794b-4ba1-af65-441c740ac689", + "createdTime": "2020-12-11T09:23:04.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "60582cbd-f21a-434d-8bfd-dd14c086a088", + "createdTime": "2020-12-11T09:23:03.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "af2f38b8-1f3c-4715-991e-f99fc2b18461", + "createdTime": "2020-12-11T09:23:03.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c8b7dc13-55e8-4bc7-8592-c38884e663cf", + "createdTime": "2020-12-11T09:23:02.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16c2d98a-d824-4824-a2be-6f2f52f1c01c", + "createdTime": "2020-12-11T09:08:43.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1d621dc4-aaec-47a8-8f95-21d45a7e9f50", + "createdTime": "2020-12-11T09:08:42.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "28523e80-077c-41e7-9c41-0d5f2c5aa290", + "createdTime": "2020-12-11T09:08:42.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "622bd7fb-c717-422b-8f4d-e9da2270b6cc", + "createdTime": "2020-12-11T09:08:41.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4190ce2d-2087-46aa-aeb7-ae84e4f95c2c", + "createdTime": "2020-12-11T09:04:34.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "355ddec4-3f50-4e15-aab0-2926ea7563e3", + "createdTime": "2020-12-11T09:04:33.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "de0a41df-5c9f-4850-af5d-d93d8362f3db", + "createdTime": "2020-12-11T09:04:32.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dda0e01e-6c8f-4e61-9e83-d5219cb0f4ad", + "createdTime": "2020-12-11T09:04:32.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85f9aa5a-c1f0-44d7-b1bf-15ab4afc7507", + "createdTime": "2020-12-11T08:52:08.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e50e85d9-ae30-497c-9692-1df60e22c4ca", + "createdTime": "2020-12-11T08:52:07.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "054e1a5e-a8b8-4dcd-9cd5-e006e88f8579", + "createdTime": "2020-12-11T08:52:06.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b728421-d5af-4950-98c6-2905ba0d7611", + "createdTime": "2020-12-11T08:52:05.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf259b30-6de9-476e-90c7-b57b22100fd3", + "createdTime": "2020-12-11T08:40:20.69Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f45b720f-0d4e-4964-a5f4-3ac39c6070bb", + "createdTime": "2020-12-11T08:40:19.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a2fd918c-8344-434a-bc2b-e772439814af", + "createdTime": "2020-12-11T08:40:18.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "23b3cc51-5998-4c86-a576-9a19d9bb4ad5", + "createdTime": "2020-12-11T08:40:18.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ed20556-947f-4e78-a8d0-e270ac57a78f", + "createdTime": "2020-12-11T08:36:02.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e1875ab3-e102-42a8-ae6f-9f8cbb741f24", + "createdTime": "2020-12-11T08:36:02.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fc79c0d3-2574-4142-ac7b-e81312831741", + "createdTime": "2020-12-11T08:36:01.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8040b951-1d24-4377-8ff2-a9ebaa74f10d", + "createdTime": "2020-12-11T08:36:00.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2f947b4-d4c6-493b-9523-930b4278e43e", + "createdTime": "2020-12-11T08:24:47.006Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c3a31f4-d25c-4c14-8293-56d7bf4496bb", + "createdTime": "2020-12-11T08:24:45.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67cf88e2-30d5-423d-b410-73c184789c53", + "createdTime": "2020-12-11T08:24:44.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a68e1eb-a876-481b-a3b9-dad9b9dfe38a", + "createdTime": "2020-12-11T08:24:43.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9784604-d9f3-4342-af87-6a1e7038a676", + "createdTime": "2020-12-11T08:21:12.82Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "af1388bc-5562-4b89-a957-71316fa6b89d", + "createdTime": "2020-12-11T08:21:12.172Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a2664d7-48a7-47f2-9ea6-b393a0069f6d", + "createdTime": "2020-12-11T08:21:11.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e013b426-aa34-45e7-93e9-df3150fc51c1", + "createdTime": "2020-12-11T08:21:10.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0cfa724c-86d3-45a2-a526-b7ce600210b2", + "createdTime": "2020-12-10T20:16:34.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6c77e2c8-1311-44bd-bfd7-81ee949ddd39", + "createdTime": "2020-12-10T20:16:33.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b16046cd-4f20-42de-af52-1f4e3a2f34b7", + "createdTime": "2020-12-10T20:16:33.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5da999b3-2d6a-43ba-a6a6-f57c96e218c7", + "createdTime": "2020-12-10T20:16:32.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b507a64a-d316-4ece-ac2c-af1026cc106b", + "createdTime": "2020-12-10T20:14:24.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "089a8c2d-7ac8-4cdb-ae82-c4f98268ec7c", + "createdTime": "2020-12-10T20:14:23.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "eef380f0-ba2c-47b1-bbfc-73d8dfeb36b6", + "createdTime": "2020-12-10T20:14:23.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ef845263-1904-46f9-9dc4-fa729f36d286", + "createdTime": "2020-12-10T20:14:22.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98094bcf-c70c-4236-8463-c53f834aa85e", + "createdTime": "2020-12-10T20:12:16.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2e080316-64df-415a-a3e1-240dd46da931", + "createdTime": "2020-12-10T20:12:15.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57cff96f-9e75-4ca0-b760-0bb1a350b0d1", + "createdTime": "2020-12-10T20:12:14.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4d2541f2-ab7c-4773-92eb-2b3f0be2c01d", + "createdTime": "2020-12-10T20:12:14.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d9685a5-98db-446a-bf94-0d3bdac2d9b0", + "createdTime": "2020-12-10T20:09:30.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9dd35114-7bab-437a-ac5b-6b0dbdfd0563", + "createdTime": "2020-12-10T20:09:29.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e766f356-ee8a-4233-a95e-2aa7c09036d0", + "createdTime": "2020-12-10T20:09:28.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f6304467-14be-42ca-8bfe-32f4797b7c60", + "createdTime": "2020-12-10T20:09:26.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ffcfe14-f400-4303-9810-ba84bd72778c", + "createdTime": "2020-12-10T20:09:26.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0cf6f60b-c204-4f1e-a37e-dfa18190ae05", + "createdTime": "2020-12-10T20:09:25.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0ea9709a-c4a0-4519-b963-7056edbfaf6b", + "createdTime": "2020-12-10T20:09:24.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "95b94166-8ab0-4916-8fb9-758119382c2f", + "createdTime": "2020-12-10T20:09:23.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "41b1e5aa-968e-4306-be2d-abc95de3b8bc", + "createdTime": "2020-12-10T20:08:42.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "907acbb4-bad0-443f-87be-a4a2a4058d92", + "createdTime": "2020-12-10T20:08:41.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4caa8061-ba94-4eec-b226-e090ffb4e2e5", + "createdTime": "2020-12-10T20:08:41.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8360ab35-c819-47a7-b842-68f2acdbbcff", + "createdTime": "2020-12-10T20:08:40.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b10fcbac-849e-4c43-8df8-b63bd0c694c0", + "createdTime": "2020-12-10T20:08:23.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "01c8a5d6-b534-4d99-8821-c73b8e962677", + "createdTime": "2020-12-10T20:08:22.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b1ba594a-5ea8-4eb7-9a66-9c6ac9b10bf4", + "createdTime": "2020-12-10T20:08:22.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a8362289-a175-4d2b-b39d-1a0547a8e31c", + "createdTime": "2020-12-10T20:08:21.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88cc613d-b00e-4671-873f-dbf37a483778", + "createdTime": "2020-12-10T09:26:41.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "79927c5a-2f8d-469a-b5f3-c149c4db322b", + "createdTime": "2020-12-10T09:26:41.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4cbe266-4188-4bc4-862b-1d9fed278320", + "createdTime": "2020-12-10T09:26:40.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "73af6742-928e-4b6b-b30a-95b931ac990e", + "createdTime": "2020-12-10T09:26:39.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ae29a184-4754-4e64-952e-889a261834d3", + "createdTime": "2020-12-10T09:22:29.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e46ef07f-e85d-4f3e-91b6-2e52e2d7f1a3", + "createdTime": "2020-12-10T09:22:28.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2236a7e8-1a2c-4c85-b56b-76bd364c13e7", + "createdTime": "2020-12-10T09:22:27.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "42fdb47b-b6e3-42f6-9b30-134899c92321", + "createdTime": "2020-12-10T09:22:27.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "26f1b315-b1ea-4763-bb9e-d5802ec86967", + "createdTime": "2020-12-10T09:08:53.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "31d17407-cb4a-474c-b093-51983c70f212", + "createdTime": "2020-12-10T09:08:52.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0beebcde-a8bd-4859-b6ab-7098a157b2a1", + "createdTime": "2020-12-10T09:08:51.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "64f6c2ad-8d83-4e35-92cc-acc74f21b37b", + "createdTime": "2020-12-10T09:08:50.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23c0ce4d-8d08-4e37-911a-d2f6895efef1", + "createdTime": "2020-12-10T09:05:17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "aff9ef32-4424-4842-a82d-6d8eb5c733c7", + "createdTime": "2020-12-10T09:05:16.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c4407f29-2ae9-40a0-a545-7e7b28559af7", + "createdTime": "2020-12-10T09:05:15.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fecd3831-b120-4efe-8248-a342b04ce970", + "createdTime": "2020-12-10T09:05:15.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f00c20d1-99c6-4bdb-9ff4-11f128913994", + "createdTime": "2020-12-10T08:51:34.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "be9443a6-15a8-45f6-890b-3a1eb21fb7ac", + "createdTime": "2020-12-10T08:51:33.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a8082a24-ce57-4b80-b18a-272f2fa8ddef", + "createdTime": "2020-12-10T08:51:33.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a2b07520-b3aa-46f5-ab3d-61e2f2ee974c", + "createdTime": "2020-12-10T08:51:32.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a57bd532-c799-456c-8ab7-1fbd25159c61", + "createdTime": "2020-12-10T08:37:08.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "226e2f03-fcfa-490f-ab3a-c871e8153825", + "createdTime": "2020-12-10T08:37:07.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b1a6fffb-4848-4f66-a9d0-c31cda788be5", + "createdTime": "2020-12-10T08:37:06.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "127a860c-7111-4893-90cd-6e06a73b8e4c", + "createdTime": "2020-12-10T08:37:06.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32c9beb6-b68c-444f-931a-f2b04286f11e", + "createdTime": "2020-12-10T08:33:17.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7948c821-fa94-4973-a6e8-620a991e5fbc", + "createdTime": "2020-12-10T08:33:16.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3144df04-615c-45d6-85b6-d57fdc5b6cde", + "createdTime": "2020-12-10T08:33:16.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49c3393e-0cc4-418c-9186-da2b1faebc95", + "createdTime": "2020-12-10T08:33:15.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86ceb361-1245-44b5-a94c-d8a474e6b257", + "createdTime": "2020-12-10T08:24:22.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8a258a43-58da-4e59-a2bc-9065b41a3aa3", + "createdTime": "2020-12-10T08:24:21.886Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "03347991-3c37-4f53-9688-284f305393ce", + "createdTime": "2020-12-10T08:24:21.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "925abd50-4e00-42c7-89ab-0820a56d2cd4", + "createdTime": "2020-12-10T08:24:21.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "781fcec3-3b6e-43aa-981e-bc5d3cf6d944", + "createdTime": "2020-12-10T08:21:25.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf6d3d34-a79c-4c44-97a5-63f423f32984", + "createdTime": "2020-12-10T08:21:24.772Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b9cb64f3-db35-4ad5-a7d8-70bf35c475b4", + "createdTime": "2020-12-10T08:21:24.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ece728d-be21-496e-8d8f-7a8547712bfc", + "createdTime": "2020-12-10T08:21:23.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d28b1d93-864f-49c1-8cfd-23d864f257fe", + "createdTime": "2020-12-09T20:20:02.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "69fcc0dd-077d-4849-ab6c-40e85fa9f0bc", + "createdTime": "2020-12-09T20:20:02.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "17469905-ea68-4602-9bd3-c62b7b39841b", + "createdTime": "2020-12-09T20:20:01.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "555425c0-baaf-4d3f-a4a4-eb1c569f5b48", + "createdTime": "2020-12-09T20:20:00.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eeba2acd-0670-4ed0-9358-d5d8deb2c311", + "createdTime": "2020-12-09T20:13:54.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "efbaf6c4-d188-4510-994f-01a2fd3fccc9", + "createdTime": "2020-12-09T20:13:54.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cfdafb69-7c4a-42f0-bd07-5fa235dec0e6", + "createdTime": "2020-12-09T20:13:53.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9d842031-67fb-45d9-bd42-2395e56489d8", + "createdTime": "2020-12-09T20:13:52.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a98dc58-fe91-428a-90c1-01c1eab78e17", + "createdTime": "2020-12-09T20:10:23.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c384a966-f6df-43ae-83de-d388e9445862", + "createdTime": "2020-12-09T20:10:22.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4b4261bb-d06c-41fb-a481-98ab9d4e9b41", + "createdTime": "2020-12-09T20:10:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6eb070dd-4c21-46c0-81a9-ddc44d34e3f3", + "createdTime": "2020-12-09T20:10:20.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "132464d9-cf57-41a3-8096-2fe293c0f866", + "createdTime": "2020-12-09T20:05:19.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9f33651d-c3c3-4d4a-b751-b7f660e84533", + "createdTime": "2020-12-09T20:05:18.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "acf54ffb-d63e-41e6-a807-bc25735cc4a7", + "createdTime": "2020-12-09T20:05:17.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6495e931-8acf-423a-b518-6e8d9200405e", + "createdTime": "2020-12-09T20:05:16.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0444a12f-bff7-4b2c-bad2-05e9f7b5df52", + "createdTime": "2020-12-09T20:05:15.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "24e10217-659b-4701-b23b-2269e6a18734", + "createdTime": "2020-12-09T20:05:14.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bedcccc2-9a74-4c88-9692-ad0b0c2f6c45", + "createdTime": "2020-12-09T20:05:14.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ffc0c297-6f5a-4595-8d12-60a92e9898a1", + "createdTime": "2020-12-09T20:05:13.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9ac3065f-8a32-44cf-8a9b-76060897419e", + "createdTime": "2020-12-09T20:05:13.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b8d1266d-4f17-4b80-94bf-59bd63c05f27", + "createdTime": "2020-12-09T20:05:13.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "9498de24-9ca4-4bfe-972b-565e4ce3f7ae", + "createdTime": "2020-12-09T20:05:13.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1e666825-4768-4531-a776-00ef530daad0", + "createdTime": "2020-12-09T20:05:12.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2b4ce454-45a5-4040-8623-bff9e636112b", + "createdTime": "2020-12-09T20:05:12.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77040a77-23d9-4ba8-abe4-e078d17bf920", + "createdTime": "2020-12-09T20:05:12.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "29c67b57-2943-4acc-b91a-f2cfd1d739d2", + "createdTime": "2020-12-09T20:05:11.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "afe11669-09c0-434c-b5d9-dcef7696a9d3", + "createdTime": "2020-12-09T20:05:09.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d1b6cc90-aa7a-4e49-bf45-8307204f9a72", + "createdTime": "2020-12-09T09:37:26.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b209e60a-df5c-464a-b99b-d21056427ea8", + "createdTime": "2020-12-09T09:37:25.522Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ffb5299-e30e-4dfb-b5b5-d8037a5e57be", + "createdTime": "2020-12-09T09:37:24.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d13a610-dc26-4ab5-b10e-890bb7eb8fdd", + "createdTime": "2020-12-09T09:37:23.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b36e048c-2159-41f9-92fc-3ddcce5aed4d", + "createdTime": "2020-12-09T09:33:49.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5743ea4d-c639-47ff-9c62-9f59c5603033", + "createdTime": "2020-12-09T09:33:48.496Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cef63a6e-070d-4e1f-833c-85b90cd75f16", + "createdTime": "2020-12-09T09:33:47.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8bbf2478-9501-4b64-bb06-ed6a33c5adf0", + "createdTime": "2020-12-09T09:33:46.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfd80195-b6fb-4ab5-b108-758eb73b86b4", + "createdTime": "2020-12-09T09:20:02.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0b07748e-3014-4a93-afac-ccfd205f2e4c", + "createdTime": "2020-12-09T09:20:01.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b0f8a7ca-a702-4651-be0c-76c47679fa14", + "createdTime": "2020-12-09T09:20:00.449Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fdcc596d-d4df-4ed3-9d9c-ab46e4d69251", + "createdTime": "2020-12-09T09:19:59.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f984f2f-65a9-4cab-b0b0-ae1fdf334eca", + "createdTime": "2020-12-09T09:16:10.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8868dc3c-31e7-4233-bc02-1b2a2327d788", + "createdTime": "2020-12-09T09:16:09.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe8966d1-8d95-4ab7-875b-d189793dbfb0", + "createdTime": "2020-12-09T09:16:09.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "96694283-affc-4422-9307-a6839af40591", + "createdTime": "2020-12-09T09:16:08.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a4a7a12-2dc7-4e75-938b-5cf06af8b5f4", + "createdTime": "2020-12-09T09:01:39.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5d6e5df5-8ce2-41b4-9a42-27e2cfc8e606", + "createdTime": "2020-12-09T09:01:38.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff8ed15a-9574-477c-9241-ef59d9d8bcc2", + "createdTime": "2020-12-09T09:01:37.151Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4ae1daa0-0667-4f8c-8227-3c88469e1841", + "createdTime": "2020-12-09T09:01:36.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21b13746-6885-4df1-aa78-4805d157caa9", + "createdTime": "2020-12-09T08:40:08.404Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b69c14b1-a5e3-419a-addf-f914bc8a4405", + "createdTime": "2020-12-09T08:40:07.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "98e155b8-1d42-4175-a7f4-072cb8d693ca", + "createdTime": "2020-12-09T08:40:07.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c4ef182-9d3c-443b-81c5-5ecd751c8d07", + "createdTime": "2020-12-09T08:40:06.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9657d884-8633-41f7-a037-b55e8111c132", + "createdTime": "2020-12-09T08:36:20.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23a867dc-9729-43c8-b13c-e06088740de9", + "createdTime": "2020-12-09T08:36:20.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "73edd33e-be96-441f-8422-048078725f8f", + "createdTime": "2020-12-09T08:36:19.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "44ee3e04-0c6e-47cf-b418-b29a11d0fe32", + "createdTime": "2020-12-09T08:36:18.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f179aa7-ff9e-4bb8-8e82-ff7eb3d7c1ce", + "createdTime": "2020-12-09T08:24:52.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9dafc41f-a96a-459a-8632-e3d97a9e93e7", + "createdTime": "2020-12-09T08:24:51.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f382c5ea-d8a8-49f5-858f-05250d5e749c", + "createdTime": "2020-12-09T08:24:50.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8bd6f638-9fae-4c28-a69f-57379e2d024c", + "createdTime": "2020-12-09T08:24:48.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03ce5f7f-100c-40ff-87d7-14835d252b4a", + "createdTime": "2020-12-09T08:21:03.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f3b79be6-17ce-47d4-9339-f5d5e587d96f", + "createdTime": "2020-12-09T08:21:02.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "06ab766f-bd11-4fff-aadc-018bffb17035", + "createdTime": "2020-12-09T08:21:01.867Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da446a67-8383-4494-be1c-13694cc4dbae", + "createdTime": "2020-12-09T08:21:00.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "145fd924-ba50-4dee-b8cc-dc682d7e0d34", + "createdTime": "2020-12-08T22:53:18.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d37065e8-9d58-41d1-8ac3-1d8e6e0db9a9", + "createdTime": "2020-12-08T22:53:11.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f7b0f830-cdf2-4e78-b42f-fae71033e74a", + "createdTime": "2020-12-08T20:56:25.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0e8d7566-5e44-45c7-bc3f-5ea8a3d1ba18", + "createdTime": "2020-12-08T20:56:24.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ae805f30-ea52-4850-b7dc-d07aae45218d", + "createdTime": "2020-12-08T20:56:23.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5a31e669-00a7-4b23-bff1-e118c8de99bd", + "createdTime": "2020-12-08T20:56:22.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a607ecc9-ef5f-4e31-b364-bdcba487fe78", + "createdTime": "2020-12-08T20:51:28.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bea3c90a-d621-4933-bffe-807c3f5a6341", + "createdTime": "2020-12-08T20:51:27.337Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "ceaf1eea-ae98-460f-8f1a-cf45bc35340e", + "createdTime": "2020-12-08T20:51:26.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3c1276ca-7613-447f-9037-313a0e2e2a53", + "createdTime": "2020-12-08T20:51:25.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92236577-3e3e-4ee4-bd29-be706ea43a68", + "createdTime": "2020-12-08T20:50:52.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "105912d8-5b91-49f4-85e2-5a45d8bdd926", + "createdTime": "2020-12-08T20:50:51.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "e50c4cd3-d589-43ff-964d-ff93640171b6", + "createdTime": "2020-12-08T20:50:50.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ba1522dd-d921-4d12-ac83-70e8ba8418d8", + "createdTime": "2020-12-08T20:50:49.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "662acda2-861b-4d97-bbcc-b5e87bba27c0", + "createdTime": "2020-12-08T20:42:45.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f61b50b1-7179-41cb-994f-7b5fb64d0da2", + "createdTime": "2020-12-08T20:42:44.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b7da226b-cc52-4cd2-9a79-b433b289a2a7", + "createdTime": "2020-12-08T20:42:43.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "132d9e7c-35eb-42fe-968f-5c64d30a948d", + "createdTime": "2020-12-08T20:42:42.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "13299070-bcdf-4d27-b0a8-57d84adf5761", + "createdTime": "2020-12-08T20:42:32.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4a25b657-9f91-4eb3-9f03-7dd60b703345", + "createdTime": "2020-12-08T20:42:31.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d844c885-eed9-43ad-8e1b-88874882982c", + "createdTime": "2020-12-08T20:42:29.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2f9cfd7e-3367-4365-b005-d2e6e3d8b2ea", + "createdTime": "2020-12-08T20:42:28.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6760949d-78a0-456c-9576-cf814ad17e53", + "createdTime": "2020-12-08T20:41:44.569Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7947823c-8ef0-4868-817b-39651a9b6710", + "createdTime": "2020-12-08T20:41:43.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bb170204-57ae-4173-adb0-8db77818683f", + "createdTime": "2020-12-08T20:41:43.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e19f3aa-9ad4-4152-aa06-32f54328431c", + "createdTime": "2020-12-08T20:41:42.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a488d1b-fb7b-4f42-b38a-542f8b75ffad", + "createdTime": "2020-12-08T20:41:36.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d35304f3-d497-444e-aa42-2eee8d76b21e", + "createdTime": "2020-12-08T20:41:35.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7f3e7880-f9ef-4ec3-8d91-5fb4142aa86b", + "createdTime": "2020-12-08T20:41:34.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "c61e7029-47e2-48bb-bfac-caaae8e3027e", + "createdTime": "2020-12-08T20:41:34.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65c8108e-2390-451b-b7e0-916bbdeeff95", + "createdTime": "2020-12-08T18:40:20.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "53720982-0da9-4a9c-af01-3e0093d51d6c", + "createdTime": "2020-12-08T18:40:19.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7c5c34f4-5fda-4478-b3cb-1faa8a795eed", + "createdTime": "2020-12-08T18:40:19.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f74886c0-34f6-4d28-9d6d-9833a7d6dd64", + "createdTime": "2020-12-08T18:40:18.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "22676348-2fb6-4e75-93a4-b2aa4b4f001d", + "createdTime": "2020-12-08T18:40:18.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f9e43d89-e98f-4be4-8949-88135f278536", + "createdTime": "2020-12-08T18:40:17.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bc4fa44b-f9dd-44c3-9d74-a1fd077645d6", + "createdTime": "2020-12-08T18:40:10.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "77e4169d-d007-47ca-ad6c-05cfe3f5fcf2", + "createdTime": "2020-12-08T18:40:09.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b43f237b-a5a8-484c-97c1-a34a8775f268", + "createdTime": "2020-12-08T18:40:08.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "218d97b1-4d4c-4138-b060-5e3617255066", + "createdTime": "2020-12-08T18:40:08.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "cc19e4d9-9151-4c05-b7d7-e637718f2b90", + "createdTime": "2020-12-08T18:40:07.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "b34d9429-2e4f-4b73-88ca-7739f834089d", + "createdTime": "2020-12-08T18:39:56.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "786489a1-3207-4bff-896e-0f600c11b80b", + "createdTime": "2020-12-08T09:20:18.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "00c7d828-1075-4b8e-a2c5-37c5aa3dda53", + "createdTime": "2020-12-08T09:20:17.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35e794f9-5388-4b23-b6f5-265ddc4c4fec", + "createdTime": "2020-12-08T09:20:17.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dfc4f499-ae71-4e66-a536-60022c24284f", + "createdTime": "2020-12-08T09:20:16.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "380d6475-6f96-4bc0-8caf-a2376d8d9d25", + "createdTime": "2020-12-08T09:16:41.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7510a9e2-07f2-4398-b0fa-159ae5d76dec", + "createdTime": "2020-12-08T09:16:40.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3ef5dd44-0baa-4db7-a337-00d1916c75b9", + "createdTime": "2020-12-08T09:16:40.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "24384629-8edf-401a-843d-b493fad71280", + "createdTime": "2020-12-08T09:16:39.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5148db91-76ee-4804-9094-2b1bb12dd59a", + "createdTime": "2020-12-08T09:02:33.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bcf248d2-1631-45c8-b0b5-ff4303f72480", + "createdTime": "2020-12-08T09:02:32.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f044141a-1896-4da6-a232-40a0076bee82", + "createdTime": "2020-12-08T09:02:32.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd6f9745-db9c-4e15-80ee-f078230fca67", + "createdTime": "2020-12-08T09:02:31.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34f4047c-4eb9-451d-8de9-14e15224958c", + "createdTime": "2020-12-08T08:58:55.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4f811b9c-702e-47c5-815f-cd68bf36ab8f", + "createdTime": "2020-12-08T08:58:54.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9b213d0a-923f-4c3e-908c-c62ba0c3191c", + "createdTime": "2020-12-08T08:58:53.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fc59f06f-26a7-459b-8818-d0e05804d713", + "createdTime": "2020-12-08T08:58:52.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "deff4420-65cb-4c11-a4d6-ebc6c3d254c9", + "createdTime": "2020-12-08T08:50:12.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b2ad04bc-4762-4477-906f-0a81827fc74b", + "createdTime": "2020-12-08T08:50:12.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "09e11c69-3f77-4fe3-914b-cd6f1f24fa46", + "createdTime": "2020-12-08T08:50:11.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "64092a79-dabb-449b-89a1-5a350c65e4d5", + "createdTime": "2020-12-08T08:50:10.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c7a0c73-dd85-47a6-92bf-8e6ba38847ba", + "createdTime": "2020-12-08T08:39:54.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51043672-a34c-4a7f-bb56-79e7d7de2cd6", + "createdTime": "2020-12-08T08:39:53.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "da235ba5-ffbc-4abf-982b-e6c7c95018d1", + "createdTime": "2020-12-08T08:39:52.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7aa4a300-2f8d-4bba-8815-86a083f53af9", + "createdTime": "2020-12-08T08:39:51.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51658e08-72c4-4339-919f-f549d227b292", + "createdTime": "2020-12-08T08:36:06.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf9b996f-5364-4046-9ed6-5f29cf8f9624", + "createdTime": "2020-12-08T08:36:05.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2bd9790c-d245-444c-8f93-31d2c4bdf70e", + "createdTime": "2020-12-08T08:36:05.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4b94c9bc-6dfa-4679-838e-9704def1702c", + "createdTime": "2020-12-08T08:36:04.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1ad07296-1323-4578-a98c-5cde95897bf1", + "createdTime": "2020-12-08T08:24:23.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0bf8b0e5-1399-4e95-8943-2f1c752b8b95", + "createdTime": "2020-12-08T08:24:22.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c497ae6-d7a7-49f1-8ec1-7b66e84a22c7", + "createdTime": "2020-12-08T08:24:21.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "50f45714-7805-4631-9ff5-4da5baf9aa9f", + "createdTime": "2020-12-08T08:24:20.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "740a9f8d-0d6f-418d-8389-a2e10877b23c", + "createdTime": "2020-12-08T08:21:05.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c505d72d-4882-4f8a-aa7a-279c769e2787", + "createdTime": "2020-12-08T08:21:05.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5d3d43fd-d5b7-4a41-985e-6d73bf1cb71a", + "createdTime": "2020-12-08T08:21:04.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "414b0dbb-cfc0-40dc-bcb3-79c6269fd24c", + "createdTime": "2020-12-08T08:21:03.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1cde363b-e396-4a7a-bc83-6c00b7852cc2", + "createdTime": "2020-12-08T04:42:13.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "22d7ab40-1eab-457b-96a3-cf9952ae4970", + "createdTime": "2020-12-08T04:42:12.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b316f3b1-dc66-48ae-9361-479e87eaf129", + "createdTime": "2020-12-08T04:42:12.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "849a55c3-4894-4068-a086-d38ed1a6eafb", + "createdTime": "2020-12-08T04:42:11.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "d3fda21c-a2ca-4cfc-acc0-64e9112a2e21", + "createdTime": "2020-12-08T04:42:11.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "99053e69-2c8b-45dc-b558-ae5696c1b03c", + "createdTime": "2020-12-08T04:42:10.371Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "375f3bfd-8345-4d92-914d-dda804ddff94", + "createdTime": "2020-12-08T04:42:07.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b8ada8a3-3895-40b8-857d-13defbfde5be", + "createdTime": "2020-12-08T04:42:06.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "cb5756e6-04ee-47cf-854a-b336a7794817", + "createdTime": "2020-12-08T04:42:06.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdceaac9-77c9-4d46-b5bd-49f2a7029b39", + "createdTime": "2020-12-08T04:42:05.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "555499a8-6103-46ec-8846-91932e245e87", + "createdTime": "2020-12-08T04:42:05.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "77c168e7-c9f0-483f-a46b-a0ca2ba01bc8", + "createdTime": "2020-12-08T04:42:03.661Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "aeabd6ba-05ab-49b6-ac63-6114895c8016", + "createdTime": "2020-12-08T04:20:16.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "b428de37-6fab-4f21-9c20-e5905eaba563", + "createdTime": "2020-12-08T04:20:16.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "1a50dad1-7d23-4d4b-bf91-26082dacccfe", + "createdTime": "2020-12-08T04:20:15.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00714ec2-535b-4c76-b61a-39add8b70dcb", + "createdTime": "2020-12-08T04:20:15.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f0df7709-6773-455a-9308-0b4fcb80a163", + "createdTime": "2020-12-08T04:20:14.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "d853441d-f5aa-4ebe-8fac-767455188739", + "createdTime": "2020-12-08T04:20:14.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "002c500a-3ca0-4913-b53b-1a1e0a8667b7", + "createdTime": "2020-12-08T04:20:10.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "3acfe5bc-67fa-4e53-995a-7a212f37e3f6", + "createdTime": "2020-12-08T04:20:10.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "8c198030-01a6-46cb-856b-3d22d63c3a2d", + "createdTime": "2020-12-08T04:20:09.722Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f82e1ad4-b64e-49ab-b92f-6c59f8eda831", + "createdTime": "2020-12-08T04:20:09.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "860e289c-8777-4148-acdf-518e902c7f3e", + "createdTime": "2020-12-08T04:20:08.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "f406f4f9-4435-4a6a-91f7-fe85d5c4486b", + "createdTime": "2020-12-08T04:20:01.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "df8f1cf3-8adc-4cbf-963f-d379032306bd", + "createdTime": "2020-12-08T03:52:25.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5b9a3d6-1644-48a5-bda9-e97666211ec8", + "createdTime": "2020-12-08T03:52:24.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "79583bf7-58e7-46b5-8c54-859ef0c21afe", + "createdTime": "2020-12-08T03:52:24.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12d45ccf-e59b-4c1c-a063-bcab9e4aca2e", + "createdTime": "2020-12-08T03:52:24.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "87c6b5da-6126-4186-b24d-1933dd11b4b3", + "createdTime": "2020-12-08T03:52:23.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "38b44c0e-20fc-4f8e-b4a3-55ec2ab56a04", + "createdTime": "2020-12-08T03:52:23.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6cb8e9e7-0a32-4030-99fc-5502ea5d3459", + "createdTime": "2020-12-08T03:52:21.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "5100b663-3652-49d8-979c-5fc93131a04e", + "createdTime": "2020-12-08T03:52:21.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "250db864-c211-40f4-aa7e-e6417ff2062f", + "createdTime": "2020-12-08T03:52:20.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9792d09b-d8cf-4b86-9864-fd6fdc4e5bc8", + "createdTime": "2020-12-08T03:52:20.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "f3ae2e16-e50b-419c-bef9-4dd68e412663", + "createdTime": "2020-12-08T03:52:19.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "3be5091e-3c8a-41fd-9377-f943683433b0", + "createdTime": "2020-12-08T03:52:18.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4d702aa8-ea3c-403f-b462-e8a69f616b65", + "createdTime": "2020-12-08T03:43:45.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "65f42055-1f8b-4b99-8743-1fb8dcd61d85", + "createdTime": "2020-12-08T03:39:38.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1217ffc-5c63-421d-b485-dd8401973da3", + "createdTime": "2020-12-08T03:39:38.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "c15e060b-0212-4230-83ed-6d5140d912c6", + "createdTime": "2020-12-08T03:39:37.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a42cc45-055c-4b1f-ad78-4556036f0da3", + "createdTime": "2020-12-08T03:39:36.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9445c504-b4bb-4a87-9e68-cdce3a91c108", + "createdTime": "2020-12-08T01:43:38.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a2cc9667-b9ea-4e4b-979a-1cda60528ffc", + "createdTime": "2020-12-08T01:43:38.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "a5804501-fd9e-45fa-9349-ac49c411fefb", + "createdTime": "2020-12-08T01:43:38.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a46d8c70-7e78-44e4-a0ca-4cf20c0664ac", + "createdTime": "2020-12-08T01:43:37.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "812cfc5b-d32f-4cb7-b502-7d4583b99f2a", + "createdTime": "2020-12-08T01:43:37.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "ffba2469-db88-466e-9e8a-737f324b0962", + "createdTime": "2020-12-08T01:43:36.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a2cb7427-f408-45e1-bab8-4927d2e0e6cf", + "createdTime": "2020-12-08T01:43:35.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "244df76b-1196-4b56-892d-8c4fe18784d4", + "createdTime": "2020-12-08T01:43:34.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "861f5f33-13a3-4a71-b800-a19da1547a90", + "createdTime": "2020-12-08T01:43:34.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "927076dd-4acc-4132-a7c9-171fa5441385", + "createdTime": "2020-12-08T01:43:33.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "383d0ff4-f81b-4a9a-bc6e-9240975a07e5", + "createdTime": "2020-12-08T01:43:33.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "6d7a7556-e6ca-4c94-8cf0-a99a85e4941b", + "createdTime": "2020-12-08T01:43:27.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fa3d4d40-a337-4bba-9c43-836613c64bea", + "createdTime": "2020-12-08T00:36:31.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c7950531-3465-42d7-aa87-4391660119dc", + "createdTime": "2020-12-08T00:36:31.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "04fa6afa-512f-47e8-b4bf-6ce286014eef", + "createdTime": "2020-12-08T00:36:30.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f1e1dde2-d04c-4a09-8582-b53ce42f7917", + "createdTime": "2020-12-08T00:36:30.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "2f1e8559-66af-487c-a477-a2563ab08b02", + "createdTime": "2020-12-08T00:36:24.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "9ba4dd1a-89e2-4eae-9830-aa55e5352db9", + "createdTime": "2020-12-08T00:36:23.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c5402275-d6b7-49b4-a1ba-3b61377125c1", + "createdTime": "2020-12-08T00:34:27.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "c6aadf1d-3cf0-41e2-a42d-0dc2a495dc00", + "createdTime": "2020-12-08T00:34:27.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "52b71989-18b6-4b82-b47c-1fcdda1718e2", + "createdTime": "2020-12-08T00:34:26.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1a026dc4-4613-4ae3-9934-ee053dbe312e", + "createdTime": "2020-12-08T00:34:25.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "56ab6d88-e74c-408a-bdc6-fee202972b0d", + "createdTime": "2020-12-08T00:34:25.341Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "433191bd-49cc-4072-ac4e-a34dc84007f6", + "createdTime": "2020-12-08T00:34:24.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6240c879-8660-4826-9ef6-f6f8005cbceb", + "createdTime": "2020-12-08T00:13:41.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6d50e8d-520a-4547-951a-7d1b656830b8", + "createdTime": "2020-12-08T00:13:40.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "9c1ea7e9-a2a3-4329-9dec-30cf3c6942c4", + "createdTime": "2020-12-08T00:13:39.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe403ab1-bf86-4b63-b16a-f9c5e18d4d66", + "createdTime": "2020-12-08T00:13:33.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "1e8d3432-b299-4bcb-be61-31adfba6b05c", + "createdTime": "2020-12-07T20:13:10.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "36270d9c-e603-4deb-a966-dce03e48fef0", + "createdTime": "2020-12-07T20:13:09.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b95775f2-fa5a-4499-8a0f-0acb266d484c", + "createdTime": "2020-12-07T20:13:08.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "23e76178-aeb8-4032-a751-2c8e89e5ed5b", + "createdTime": "2020-12-07T20:13:08.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23f03511-10d1-4a2f-bb99-b2417f098155", + "createdTime": "2020-12-07T20:10:00.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e6edbcc5-6683-4f13-a5ba-9d6f96afc273", + "createdTime": "2020-12-07T20:09:59.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "4474b3a3-0db8-4477-8121-4f86d1935fa9", + "createdTime": "2020-12-07T20:09:58.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4346f4bf-4ddf-4230-a735-9cf2c1ba3322", + "createdTime": "2020-12-07T20:09:57.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "14c18cad-733c-4b80-9b2f-e96007fded87", + "createdTime": "2020-12-07T20:08:42.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d2ac228c-d564-4f56-a390-2d96355039a7", + "createdTime": "2020-12-07T20:08:42.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "60e0e110-cb2d-4544-a271-4d27136ee3f5", + "createdTime": "2020-12-07T20:08:41.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ec8b08d5-739b-4ed4-96cc-0fb621109276", + "createdTime": "2020-12-07T20:08:41.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0440f1e8-261c-4ed6-a56f-31a557a2a3c5", + "createdTime": "2020-12-07T20:06:05.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1f1f3d31-c76a-4f8f-adbb-b0eac382b89e", + "createdTime": "2020-12-07T20:06:04.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f6236d33-7d8e-4fd0-a3d2-981e4b429432", + "createdTime": "2020-12-07T20:06:03.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "49750b76-0b4f-4c99-8fc8-28a9793659b3", + "createdTime": "2020-12-07T20:06:02.881Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10d2a829-a50f-42c6-bddb-523f266349c7", + "createdTime": "2020-12-07T20:06:01.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "fa847b45-0edd-4818-ba8c-fb4960c84329", + "createdTime": "2020-12-07T20:06:00.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 10 + } + }, + { + "feedbackId": "0473ed62-5192-49e0-a7b0-1d2ffb72b2f9", + "createdTime": "2020-12-07T20:05:57.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3328c309-9832-4245-a15c-a2ed0c0643b7", + "createdTime": "2020-12-07T20:05:56.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7d824f6a-320b-47fb-a4aa-0c481a9402e0", + "createdTime": "2020-12-07T20:05:56.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5708fd40-eb46-4c9d-8ec2-d830cbab128a", + "createdTime": "2020-12-07T20:05:55.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d12d1ef-a10d-4350-b723-a06e2a7581d5", + "createdTime": "2020-12-07T20:04:39.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c34ac34a-964c-4e86-8651-22d821ab2a7c", + "createdTime": "2020-12-07T20:04:38.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7fe9246e-03db-49bb-a81a-0a454d1ea513", + "createdTime": "2020-12-07T20:04:38.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e9378fbd-8ef5-4777-966c-279bdc2b7a0d", + "createdTime": "2020-12-07T20:04:37.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1476f4dd-3877-4b2f-a7c4-316edd93767e", + "createdTime": "2020-12-07T20:04:36.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f4c87106-6fdf-4f78-97f4-878bc2ea8e85", + "createdTime": "2020-12-07T20:04:36.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "96c0f7c5-81e5-4aaf-b578-0627f063e5ff", + "createdTime": "2020-12-07T20:04:35.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7e1f082f-b255-4931-b2a4-37f55c8321ff", + "createdTime": "2020-12-07T20:04:34.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "733d79ab-9e58-4c01-b00e-cce37113ef70", + "createdTime": "2020-12-07T20:00:28.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "7ce703dc-87f2-413f-9fd0-ea580918423d", + "createdTime": "2020-12-07T20:00:22.503Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Comment", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "commentValue": "Feedback created in a .NET test." + } + }, + { + "feedbackId": "657a44d7-e559-4f2a-a645-ad9369a12a3f", + "createdTime": "2020-12-07T19:47:58.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "de66798a-1eda-412f-bf72-c55c38cf474d", + "createdTime": "2020-12-07T19:47:57.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "595f810b-21b4-450f-b789-9c54b12ceaaf", + "createdTime": "2020-12-07T19:47:00.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fc8af2fd-cd27-4d05-91c1-b1af63c05339", + "createdTime": "2020-12-07T19:47:00.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "bc7ae733-cb89-461b-b5c7-39295d3575c4", + "createdTime": "2020-12-07T19:46:59.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f2a3688f-5404-4cd6-ba63-4e2c7ccc6a7f", + "createdTime": "2020-12-07T19:46:47.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "fe914219-a6cb-4e5c-bd73-0f0ba1ebcc68", + "createdTime": "2020-12-07T19:15:00.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "278f0265-e32e-4f72-bd16-6692bdcbaeec", + "createdTime": "2020-12-07T19:09:48.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "69db78bf-852f-4d02-b07d-b29650d0cebd", + "createdTime": "2020-12-07T19:09:41.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "fb5a6ed6-2b9e-4b72-8b0c-0046ead1c15c", + "name": "Default", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + }, + { + "feedbackId": "08f0b86e-24c5-4c5a-959f-c32bcbfbdc62", + "createdTime": "2020-12-07T19:03:27.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d541b738-4408-4675-983c-b58f2439c11d", + "createdTime": "2020-12-07T09:45:18.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "60acc412-80c9-443b-93f8-97a061682a50", + "createdTime": "2020-12-07T09:45:17.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c10817ad-cde1-4195-9aa9-6d5170f5ed07", + "createdTime": "2020-12-07T09:45:17.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5a47529f-bab0-4b88-910f-d690c6fa29f5", + "createdTime": "2020-12-07T09:45:16.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "353dd49c-f2dc-4fbd-8738-5c73ebdccbbe", + "createdTime": "2020-12-07T09:41:39.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d87a4ce6-609a-443d-8c8a-37e0803c22b3", + "createdTime": "2020-12-07T09:41:38.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6776eb11-3306-4211-ade9-1e093ad0fed1", + "createdTime": "2020-12-07T09:41:37.419Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "524b5e50-0204-4947-aee8-d3c125627f8d", + "createdTime": "2020-12-07T09:41:35.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88ae78f6-cf34-4da6-acf0-6fdacb505487", + "createdTime": "2020-12-07T09:34:41.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "39078709-8f19-4a54-8cb7-b2fee569e578", + "createdTime": "2020-12-07T09:34:41.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2afb06d4-36ae-4d9f-a91d-1042008788ef", + "createdTime": "2020-12-07T09:34:40.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ae231c97-e759-4263-8c7e-d50d212906a5", + "createdTime": "2020-12-07T09:34:39.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1480ed38-7486-4f2f-97f2-7fe1725e46ab", + "createdTime": "2020-12-07T09:30:36.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "506fffac-3a4e-4c44-90db-4be9a33fd29b", + "createdTime": "2020-12-07T09:30:36.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "70ba089f-004b-421b-9e79-9e011afd8948", + "createdTime": "2020-12-07T09:30:35.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "39b6fc34-5380-43d2-9d00-de9df8df1675", + "createdTime": "2020-12-07T09:30:35.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e16e5213-e08e-42d6-a768-5e916af4b3d5", + "createdTime": "2020-12-07T09:21:34.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "47bf6b27-097a-48a5-bf21-5fb319e998a9", + "createdTime": "2020-12-07T09:21:33.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "06b042da-48a7-42a3-b60c-7bd02f498834", + "createdTime": "2020-12-07T09:21:33.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "831d0260-d5b5-48ef-9fff-6701bd70f866", + "createdTime": "2020-12-07T09:21:32.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cce849ec-d9a3-4985-9f41-19c1fb60b48b", + "createdTime": "2020-12-07T09:06:38.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1def5ecd-b5ab-4105-be7a-ac7a099d84e8", + "createdTime": "2020-12-07T09:06:37.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "91c151c0-08e0-4c1b-9ba2-5f68c959d14f", + "createdTime": "2020-12-07T09:06:36.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6faed0ae-c4b0-4408-acd1-825a15aaefb2", + "createdTime": "2020-12-07T09:06:34.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ddde201-54aa-43b7-9a93-74aee0bccd3c", + "createdTime": "2020-12-07T09:02:37.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4a480ea1-a3ad-4857-9b7b-be50a33b6c72", + "createdTime": "2020-12-07T09:02:36.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e761f812-1a5c-4018-be47-087ed7b01615", + "createdTime": "2020-12-07T09:02:35.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "45939c31-ccae-4108-b932-a011f1eeddde", + "createdTime": "2020-12-07T09:02:34.312Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2bef96e-a401-4e95-a995-53624b7ddd3a", + "createdTime": "2020-12-07T08:55:18.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "997a32ba-eac5-4509-9099-b7ff3e67141d", + "createdTime": "2020-12-07T08:55:18.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "103e3176-fbbb-4076-a17d-bfd8efad7330", + "createdTime": "2020-12-07T08:55:17.585Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d044fd89-9ada-46a6-9643-ba6e0d4f7b54", + "createdTime": "2020-12-07T08:55:16.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0dbf6d3e-db25-417f-b5a0-e11b5e729de8", + "createdTime": "2020-12-07T08:51:36.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8c5a6478-dc7f-4487-a5bf-29323f931cf8", + "createdTime": "2020-12-07T08:51:36.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "88b6f691-3c4f-4e02-a7c9-164f09eadafc", + "createdTime": "2020-12-07T08:51:35.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7d797ad0-8fe2-4aa5-914c-3e6fa0394e43", + "createdTime": "2020-12-07T08:51:34.895Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cd9e489-0652-4637-b002-0045ec2e7133", + "createdTime": "2020-12-05T00:32:29.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "421d5a18-47fd-49c1-b958-cbcf4f80eaf0", + "createdTime": "2020-12-05T00:31:55.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f58dc36-0a14-4761-ac1a-1ea6c311c45a", + "createdTime": "2020-12-05T00:31:44.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Delhi" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1211fdb7-16a3-404b-80d1-b72365564374", + "createdTime": "2020-12-04T23:50:43.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": {} + }, + "feedbackType": "Anomaly", + "startTime": "2020-09-26T00:00:00Z", + "endTime": "2020-09-29T00:00:00Z", + "value": { + "anomalyValue": "AutoDetect" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1ffc1c83-b7df-4ac2-92c7-7079469ad0e0", + "createdTime": "2020-12-04T20:25:50.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "bf816638-c840-4ea2-b850-081fe0d7c0d3", + "createdTime": "2020-12-04T20:25:49.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c715e1ee-783b-43e2-b838-de36be76d316", + "createdTime": "2020-12-04T20:25:48.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ed2ced69-3a2a-4cfa-b293-1d26056dd502", + "createdTime": "2020-12-04T20:25:48.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0d9602a-39dc-4532-8cd5-7572f0302b3b", + "createdTime": "2020-12-04T20:23:30.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3f34acae-2bd5-420d-a416-fad2b823d9b8", + "createdTime": "2020-12-04T20:23:29.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "383f41c2-2058-461e-b5d9-d0762fd89104", + "createdTime": "2020-12-04T20:23:28.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2731a52d-d941-4472-b238-b4701f0a4579", + "createdTime": "2020-12-04T20:23:28.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22fa035a-1f81-4a33-81a7-91d367f8c093", + "createdTime": "2020-12-04T20:22:44.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d87ef1db-c986-4b21-90b0-64f0fb0caefc", + "createdTime": "2020-12-04T20:18:03.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dfe17c4f-44f6-4e5a-a84c-bba3352ddc7f", + "createdTime": "2020-12-04T20:18:02.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "db6c4747-3766-47c9-9195-b56bc016dd4d", + "createdTime": "2020-12-04T20:18:01.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a0f1ecb3-ab98-4378-a9ab-990a02823d1e", + "createdTime": "2020-12-04T20:18:01.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85903a2d-1707-46cb-996f-e5767e45baab", + "createdTime": "2020-12-04T20:17:03.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ad99eee1-3fdb-4895-b86d-9cfa770175fa", + "createdTime": "2020-12-04T20:17:03.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "cacbd66b-61d1-49da-9591-2f73c4cc8072", + "createdTime": "2020-12-04T20:17:02.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "74f3fb12-4eb8-4798-a724-f9598d2f9042", + "createdTime": "2020-12-04T20:17:02.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c35733d7-15ee-4092-a884-ce3ad2f4bedb", + "createdTime": "2020-12-04T20:17:02.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e3f40630-0da5-4d6c-bb28-1e118379903f", + "createdTime": "2020-12-04T20:17:01.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "961abb64-c356-48ad-81b4-f971b5359208", + "createdTime": "2020-12-04T20:17:01.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ddfdaa8c-4f0e-4edb-85eb-2f06bf7aaa4d", + "createdTime": "2020-12-04T20:17:00.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b34e1d8a-3cf7-467e-a07e-fd216969a493", + "createdTime": "2020-12-04T09:18:16.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0513c8bd-717a-40ed-9dee-4ca9b16148b7", + "createdTime": "2020-12-04T09:18:15.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f61ea6df-5c50-46a2-adaf-e4f3bbf3dd8b", + "createdTime": "2020-12-04T09:18:15.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6ec9157-f62b-4267-81f9-8b1ff76d012b", + "createdTime": "2020-12-04T09:18:14.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f11778a-56ae-44f6-89fc-97b6386a21dc", + "createdTime": "2020-12-04T09:14:30.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f0f5af7a-c0b4-40f5-9096-ae642ca3b933", + "createdTime": "2020-12-04T09:14:29.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3a5f75e0-567c-4ad3-90a1-f7887c35aaa8", + "createdTime": "2020-12-04T09:14:29.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2322a55a-734a-40cc-88bf-9e3324345682", + "createdTime": "2020-12-04T09:14:28.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "47880220-8d17-43f0-a9f0-653f1312f2d6", + "createdTime": "2020-12-04T09:04:23.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57d6c9de-16fd-4b2d-a8a2-8636566151ac", + "createdTime": "2020-12-04T09:04:22.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a8c17f44-efdb-456f-8236-f943f4b1405d", + "createdTime": "2020-12-04T09:04:22.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e259df9-8f22-4ff3-8fe7-0ee5e00fe0ae", + "createdTime": "2020-12-04T09:04:21.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc6a5320-1d2e-481b-a870-cb9d639afcce", + "createdTime": "2020-12-04T09:00:32.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9a16d778-5bbd-4842-a8d8-ec7c4aae1871", + "createdTime": "2020-12-04T09:00:31.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7d37094-db58-4bee-9d33-4d7a91067299", + "createdTime": "2020-12-04T09:00:31.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3cdcda6f-85fc-4d60-9ef2-87b66386b6b6", + "createdTime": "2020-12-04T09:00:30.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf445062-d991-4765-a65c-37da321f70d0", + "createdTime": "2020-12-04T08:50:53.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cca6eb66-796e-46fe-80e5-3eff869b9b1e", + "createdTime": "2020-12-04T08:50:52.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3b60d231-9bc9-4739-ba5c-bd0635ae4ebc", + "createdTime": "2020-12-04T08:50:52.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2821cfbf-94d0-44c9-a25b-42fa15fcc334", + "createdTime": "2020-12-04T08:50:51.343Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66f1ddde-921f-4eec-8c2e-26413e07b3c6", + "createdTime": "2020-12-04T08:39:26.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dc15a8af-28ce-401b-b083-9d1a60c69271", + "createdTime": "2020-12-04T08:39:26.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e428b6e4-c670-4a9d-8695-370a9d1de61d", + "createdTime": "2020-12-04T08:39:25.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ffc5882d-a90f-47df-9796-b9bc80cd23a2", + "createdTime": "2020-12-04T08:39:24.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab91b4a7-4231-4a01-81a1-58c847512d6f", + "createdTime": "2020-12-04T08:35:34.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ff4621ca-caaa-47d3-947e-5dbc16e53176", + "createdTime": "2020-12-04T08:35:34.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eb3f2013-a76a-4268-a830-3135a518fc7a", + "createdTime": "2020-12-04T08:35:33.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c75e7031-aa32-4f1e-92c3-832c247925f1", + "createdTime": "2020-12-04T08:35:33.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db70fa19-e11d-42f2-889f-0b4dad21190b", + "createdTime": "2020-12-04T08:27:44.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "707b505b-d0d4-40fc-b9ba-b0feeee64e7d", + "createdTime": "2020-12-04T08:27:43.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "074c2e49-422a-44ed-8f5a-759c96bb96b6", + "createdTime": "2020-12-04T08:27:42.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1991ea64-6545-4a5b-b416-8dee6c722beb", + "createdTime": "2020-12-04T08:27:40.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "99bdff7d-5ab6-49bd-b5ee-4bb3b79f7572", + "createdTime": "2020-12-04T08:24:06.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a682146a-dee3-46eb-9db0-1682c6d75eed", + "createdTime": "2020-12-04T08:24:05.92Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8f9d2209-e12c-4bed-8e98-c78b4967ff79", + "createdTime": "2020-12-04T08:24:05.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3919d84d-f4e3-4f55-8d48-b560d95c4208", + "createdTime": "2020-12-04T08:24:04.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd1dd7d8-953b-4343-8819-2a434995f8c4", + "createdTime": "2020-12-04T00:02:57.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0296f355-f62a-4798-98cf-f0cfdbf59eee", + "createdTime": "2020-12-04T00:02:56.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "659d2d45-23c1-473c-9451-8ff1d3dd7194", + "createdTime": "2020-12-04T00:02:56.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "8c835d2c-2cfd-4ed4-980e-0fad1c8c2a91", + "createdTime": "2020-12-04T00:02:55.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b88164a-591d-4590-a22b-36c5df33205f", + "createdTime": "2020-12-03T23:59:28.497Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "395eb04f-26fa-472e-af6e-995388dbe87c", + "createdTime": "2020-12-03T23:59:27.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a2bd51a3-da29-4913-9ee6-8cab4a4c5fb3", + "createdTime": "2020-12-03T23:59:27.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a5820bcd-1cba-46f9-bd54-472c7dec7065", + "createdTime": "2020-12-03T23:59:26.387Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f241bed3-9acc-47c2-8c83-5b3d93c9e51d", + "createdTime": "2020-12-03T23:58:12.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "fa8e8623-e703-407d-b975-f66b4854d757", + "createdTime": "2020-12-03T23:58:11.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3e1d2e56-2e93-48cd-bb61-ecab70795cdd", + "createdTime": "2020-12-03T23:58:10.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e934cb8e-54e8-4570-8505-765115a6fb77", + "createdTime": "2020-12-03T23:58:10.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f553649f-16f9-4590-8fce-c909d82c4d95", + "createdTime": "2020-12-03T23:58:10.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "aad897d1-d6ba-45b4-a122-b82918ad23f0", + "createdTime": "2020-12-03T23:58:09.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0edad45-a250-4567-aa8c-d9d8c3b79298", + "createdTime": "2020-12-03T23:58:09.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4e254283-bd2f-44e1-9d47-8863b73e8a37", + "createdTime": "2020-12-03T23:58:08.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e0e48cd-d7a6-48d5-b078-d70f1e7f7e01", + "createdTime": "2020-12-03T23:58:06.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "58091c8b-8d9a-4d9d-8f6c-1eeb89c09746", + "createdTime": "2020-12-03T23:58:05.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "29b3f0d3-927c-4208-abb5-30b863210dfc", + "createdTime": "2020-12-03T23:58:04.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "3641257f-339a-4415-bf16-5bde98c02083", + "createdTime": "2020-12-03T23:58:03.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d593a62-75be-4ca2-9530-dfea26ff394e", + "createdTime": "2020-12-03T23:58:01.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "c0473764-9f8b-4104-a777-d34993998895", + "createdTime": "2020-12-03T23:58:00.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8b9990cb-45d4-4ef4-890b-ec589ac46628", + "createdTime": "2020-12-03T23:58:00.127Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2dfd4b4c-f772-4760-b8d6-286064e2407b", + "createdTime": "2020-12-03T23:57:59.118Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff8f984b-d3e2-4cc2-8e19-da513671d50d", + "createdTime": "2020-12-03T23:55:33.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6dcd7693-85cb-4a0d-847b-1341a14e21b9", + "createdTime": "2020-12-03T23:55:32.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "1aa0ffa0-3ed8-4c2d-a7f4-123083afb316", + "createdTime": "2020-12-03T23:55:32.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6fb1a1a8-fcbb-482d-a4a0-05fb0f976b79", + "createdTime": "2020-12-03T23:55:31.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82fce932-4bce-4811-832d-eec869d21b09", + "createdTime": "2020-12-03T23:11:16.658Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3f558efb-a6bf-402d-9029-1baee8ac76a3", + "createdTime": "2020-12-03T23:11:16.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "962472b5-ecee-4ea7-b1f0-7a1f56c8876d", + "createdTime": "2020-12-03T23:11:15.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "df3e3e4e-5e10-41b4-86b5-e66152f601ba", + "createdTime": "2020-12-03T23:11:15.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7df7370d-791f-4109-8e69-02bfcf2a1808", + "createdTime": "2020-12-03T23:08:01.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "59e999ff-38b8-477d-91cd-a809fae28281", + "createdTime": "2020-12-03T23:08:01.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5d6c4d0f-4bae-485d-8f45-2eaed73e8879", + "createdTime": "2020-12-03T23:08:00.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7f180b42-83c7-4fc1-9985-64dec903a68e", + "createdTime": "2020-12-03T23:07:59.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f3d1da6-4c3b-4672-b4fe-e907bc4567e0", + "createdTime": "2020-12-03T23:07:06.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "db4e869e-049d-44db-a695-9403a36f1c60", + "createdTime": "2020-12-03T23:07:05.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5c7630f7-fcd7-47fb-82c3-0b6e1e95c471", + "createdTime": "2020-12-03T23:07:05.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "97c19d6c-dfe8-4855-8bc1-63d5adf42ec5", + "createdTime": "2020-12-03T23:07:04.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35049ecd-f279-440e-bf5b-2d859de2c106", + "createdTime": "2020-12-03T20:14:01.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "85c8e44d-50a8-4354-b3cb-b2a51f36a48c", + "createdTime": "2020-12-03T20:14:00.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c4f793ed-e957-4b0f-b1fe-d9cca29b2580", + "createdTime": "2020-12-03T20:14:00.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "155d548c-4bc7-454d-b07c-68643f5a0173", + "createdTime": "2020-12-03T20:13:59.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61fae67b-d458-4df5-8b7d-690ee594ad33", + "createdTime": "2020-12-03T20:11:45.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4223c55b-fbbf-4d10-92e9-361abb3fadf4", + "createdTime": "2020-12-03T20:11:45.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "fc352420-8671-43e0-9522-67ebe8d2ed82", + "createdTime": "2020-12-03T20:11:44.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e63b631f-a1e9-41b2-9232-7cb480a6af21", + "createdTime": "2020-12-03T20:11:43.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c81903b3-fce2-430c-9429-ce6a9a9424e7", + "createdTime": "2020-12-03T20:07:14.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7e827e10-02de-4196-bfe0-8bc66f6f0226", + "createdTime": "2020-12-03T20:07:13.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b8eca302-fb6d-442a-adef-9d66c2664e77", + "createdTime": "2020-12-03T20:07:12.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ce24e7ee-bac4-40e3-8a91-3b81efeee6e9", + "createdTime": "2020-12-03T20:07:11.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9c2a1aa-6d33-423d-81eb-b583ad57d4ba", + "createdTime": "2020-12-03T20:05:40.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0751282e-1b83-4146-be0f-8eea2a748b14", + "createdTime": "2020-12-03T20:05:40.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0bbc17b5-0eec-4cdc-9420-122bce7ca01d", + "createdTime": "2020-12-03T20:05:40.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "8f40e985-2ab9-4ff8-9f57-f492339a5d28", + "createdTime": "2020-12-03T20:05:39.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "5011d0a6-ee3e-489a-9082-d8f2f6083179", + "createdTime": "2020-12-03T20:05:39.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f8d9725b-fd0b-4d0c-b27d-cd9a216562c7", + "createdTime": "2020-12-03T20:05:39.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "4a7fc4c8-7791-470c-8c26-3bf8d37063d9", + "createdTime": "2020-12-03T20:05:38.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c6ceaf08-3ab1-4547-ba3a-9709c257ced5", + "createdTime": "2020-12-03T20:05:38.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1a5d515a-4278-49ab-888e-6684bdf1bf8c", + "createdTime": "2020-12-03T09:14:25.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9183d0c0-3026-4463-b0a1-a127671b8c9e", + "createdTime": "2020-12-03T09:14:24.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac077438-e5be-4f2c-9bac-204cba7b662e", + "createdTime": "2020-12-03T09:14:24.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e43c60dc-0458-4913-ad0e-16117fddbe5f", + "createdTime": "2020-12-03T09:14:23.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f853e653-6f17-4bdf-b16c-e11767eadf66", + "createdTime": "2020-12-03T09:10:31.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c015c64e-d6ae-4953-9e48-59eaf52607b6", + "createdTime": "2020-12-03T09:10:30.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "00101d82-97e8-433a-9eb7-c032932bf20b", + "createdTime": "2020-12-03T09:10:29.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "059e7418-afc8-4fa0-b4c7-1b22cab242d1", + "createdTime": "2020-12-03T09:10:28.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d4d8d01-7837-4a9e-875e-d301b5c9e500", + "createdTime": "2020-12-03T09:01:01.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "407d76c4-b8cd-443e-9041-05f192fea5cb", + "createdTime": "2020-12-03T09:01:00.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e392b56-5cec-4161-ad52-f939974db995", + "createdTime": "2020-12-03T09:00:59.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ba35493d-1af3-4e66-9f13-bd6db8c62c16", + "createdTime": "2020-12-03T09:00:59.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9e8c5262-d30d-402f-a541-4d5c67fc6183", + "createdTime": "2020-12-03T08:57:13.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86a9e2d5-d252-4cdf-9ecc-d967327c4dd6", + "createdTime": "2020-12-03T08:57:12.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cd09401a-3a31-451d-be1b-1f8e4dbc9c36", + "createdTime": "2020-12-03T08:57:12.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d8635f2-7733-4d81-a218-8aca42641926", + "createdTime": "2020-12-03T08:57:11.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a94690d-623a-4828-a316-b9c690bcc50b", + "createdTime": "2020-12-03T08:47:31.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "470ba73f-661c-4c17-bc65-7f30d1c6763f", + "createdTime": "2020-12-03T08:47:31.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e739f0c7-1962-42b9-ae17-b81d126ba9bd", + "createdTime": "2020-12-03T08:47:30.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59817f89-e6fa-4c6a-a95c-e89d21ffdfae", + "createdTime": "2020-12-03T08:47:29.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df23174d-1c43-4173-b245-8e834c73dfcc", + "createdTime": "2020-12-03T08:37:20.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d347e511-b386-47d3-8c4a-aa1c80da2f4b", + "createdTime": "2020-12-03T08:37:19.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e8edbb6-35ad-44e0-84da-3a7b03f21353", + "createdTime": "2020-12-03T08:37:19.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3c6e961-9246-4079-abc3-28e2bc9dede4", + "createdTime": "2020-12-03T08:37:18.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8304fd21-fcb8-4bf4-9104-d240eb48a75a", + "createdTime": "2020-12-03T08:33:23.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "55bb2c07-9e47-44e3-a5a9-ff9aa600c285", + "createdTime": "2020-12-03T08:33:23.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2eaea66f-23ad-49a6-909e-167265fc6289", + "createdTime": "2020-12-03T08:33:22.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c35501ac-d61f-4d4e-a7bc-72fd43210f7c", + "createdTime": "2020-12-03T08:33:21.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6be017d5-7b5f-4d6f-88af-1653092f6707", + "createdTime": "2020-12-03T08:23:54.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c690c0d7-7f65-48fe-bd52-a10038f4a25f", + "createdTime": "2020-12-03T08:23:53.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b71b46b0-a16f-49b6-b92e-a6c2c2b66aab", + "createdTime": "2020-12-03T08:23:53.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "937e8379-4c2c-4da6-8ce2-d88faf6a0746", + "createdTime": "2020-12-03T08:23:52.579Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6708b9c-272b-47bf-bce8-d20ba557a784", + "createdTime": "2020-12-03T08:20:56.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d3496742-efa8-439c-874b-658a20416c87", + "createdTime": "2020-12-03T08:20:56.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f891afba-59ef-4f78-b423-aec2516b0916", + "createdTime": "2020-12-03T08:20:55.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0c902b1e-8afa-4898-b7f7-7cd57ae10d23", + "createdTime": "2020-12-03T08:20:55.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ade7172c-15ad-4628-939a-6589c78b751b", + "createdTime": "2020-12-02T09:40:09.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dc75dd27-bb59-40af-b43b-74beef89c409", + "createdTime": "2020-12-02T09:40:08.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9cbfe98f-61b7-4c0f-bd4b-fd5af178c2b3", + "createdTime": "2020-12-02T09:40:08.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5d99565c-0763-48b1-87c9-aa19f3767a51", + "createdTime": "2020-12-02T09:40:07.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "77de7ece-ba9c-4e06-bdae-d8bcce0c882e", + "createdTime": "2020-12-02T09:36:27.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27dabffd-b42e-4290-8117-f435a4afd60d", + "createdTime": "2020-12-02T09:36:27.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7c111fbf-60d3-4d06-9979-2e0ea907d394", + "createdTime": "2020-12-02T09:36:26.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b0674e55-2083-464f-bf84-02ae38eb8c22", + "createdTime": "2020-12-02T09:36:26.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a293935-c545-48e5-aeb1-8e9240e3dc89", + "createdTime": "2020-12-02T09:25:38.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9d0d638e-65f9-4e53-a672-b6cc082e11e1", + "createdTime": "2020-12-02T09:25:37.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "92dc7daf-ee75-409a-8959-1af066dbecca", + "createdTime": "2020-12-02T09:25:37.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3c873f1-930c-4251-8afe-3588c07326fd", + "createdTime": "2020-12-02T09:25:36.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7bb340d-63b5-499d-af6b-f87fb7a8f253", + "createdTime": "2020-12-02T09:21:46.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f2ca37f9-29d8-471c-9174-c27ef6ff8158", + "createdTime": "2020-12-02T09:21:45.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "618e53a5-4705-4ad5-b101-03c88e642c67", + "createdTime": "2020-12-02T09:21:45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d447f451-ef26-44a2-899e-f0106ce22aee", + "createdTime": "2020-12-02T09:21:44.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cee24191-6d49-4c61-bf93-0561026ee9ce", + "createdTime": "2020-12-02T09:00:08.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "413c4d30-1154-4486-8fcb-7c6cc260b0e6", + "createdTime": "2020-12-02T09:00:07.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "803b48c7-5211-43f6-a5c6-5968b4d57fab", + "createdTime": "2020-12-02T09:00:07.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5ea18935-cdbb-47cc-837e-a65f0d6a693e", + "createdTime": "2020-12-02T09:00:06.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe6c2aec-60e7-4911-9226-3568aad688c4", + "createdTime": "2020-12-02T08:42:49.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acc3e6be-ea6c-4664-9dd6-91e410e1f451", + "createdTime": "2020-12-02T08:42:48.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8dbb3ec1-ac98-493f-ac7f-e6e06d34caab", + "createdTime": "2020-12-02T08:42:47.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d0895dd-d8a0-4dd9-9a09-3d84589c9d37", + "createdTime": "2020-12-02T08:42:46.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "680fa97d-4931-4eea-bfc2-ef7ca1711c6c", + "createdTime": "2020-12-02T08:38:52.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "57f5278a-d5b5-4080-af10-776660e3a13f", + "createdTime": "2020-12-02T08:38:51.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b8464c8e-dfd3-4a33-bd0a-2881d7fe4e2b", + "createdTime": "2020-12-02T08:38:50.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "87438c2e-8a33-43d2-b645-b0c220fc0d36", + "createdTime": "2020-12-02T08:38:50.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "795b7429-6fcb-4e96-969b-bf10443bd30f", + "createdTime": "2020-12-02T08:26:53.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7aac1f2c-fb8f-4b12-bd8c-2ad8d96a75b8", + "createdTime": "2020-12-02T08:26:52.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3f09a50-00d4-4623-8ea1-ed1b2e45d96f", + "createdTime": "2020-12-02T08:26:51.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8867bd38-c0f3-4e2a-9745-9b694ff4a11d", + "createdTime": "2020-12-02T08:26:49.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f4fb02e-8e53-4dbe-bff1-62a3958934fc", + "createdTime": "2020-12-02T08:23:03.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "570cfcea-3dd7-4a10-915d-94a53c61c796", + "createdTime": "2020-12-02T08:23:02.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dcd34728-59ee-48ba-b34c-be1f5524eb4f", + "createdTime": "2020-12-02T08:23:01.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ae4fa1fc-366f-407c-bda4-29d142181602", + "createdTime": "2020-12-02T08:23:00.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4392c386-c573-4091-8197-9fd1ac268c74", + "createdTime": "2020-12-01T09:17:11.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eefab8f8-fc9b-406c-ae7b-e9ec86bbf1a7", + "createdTime": "2020-12-01T09:17:10.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0876dde4-385b-4a57-a792-c132dcee3a24", + "createdTime": "2020-12-01T09:17:09.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6582704a-d422-4f3e-8209-1fecf252c105", + "createdTime": "2020-12-01T09:17:09.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "971b3fbe-1682-48e9-b6e5-a9ed78d306c5", + "createdTime": "2020-12-01T09:14:20.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "916b80ca-91c4-43c3-ab7b-1dab4f0f6f18", + "createdTime": "2020-12-01T09:14:19.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a457fb27-8f1b-4c79-a021-3e7a4b1ab95d", + "createdTime": "2020-12-01T09:14:18.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b0a9aec-e5d9-4179-9888-fd444a20bad0", + "createdTime": "2020-12-01T09:14:17.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a30bb5b-c377-4c99-8b66-c90363147cdb", + "createdTime": "2020-12-01T09:05:06.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9b4e87ff-827e-49d0-b2b9-a65343ccb19f", + "createdTime": "2020-12-01T09:05:06.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f2a233bf-20f0-4ca3-af0d-14354e443e04", + "createdTime": "2020-12-01T09:05:05.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b51eeb6e-1407-41f9-9c6b-b6895c25435a", + "createdTime": "2020-12-01T09:05:05.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f16edb5e-ee89-4da6-8679-f5313eb6bf85", + "createdTime": "2020-12-01T09:01:25.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "534d3bbb-f667-4c48-86c4-19584375d853", + "createdTime": "2020-12-01T09:01:25.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "35741c5a-b211-41e0-8e66-dbbfffe3f5e6", + "createdTime": "2020-12-01T09:01:24.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9e96bb54-b5e5-4121-996e-6658098319e8", + "createdTime": "2020-12-01T09:01:23.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7ccb5e9-0dae-42c9-8b57-259d12173ad0", + "createdTime": "2020-12-01T08:52:32.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e9b2441c-7cf0-4a27-940f-678507233c42", + "createdTime": "2020-12-01T08:52:32.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "664a2964-8365-405b-a3da-e62f33aac10a", + "createdTime": "2020-12-01T08:52:31.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bb84d0e3-cb04-4c03-9395-f7f4a713424b", + "createdTime": "2020-12-01T08:52:30.761Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2365bb19-3080-4257-bc42-b77e2949f0de", + "createdTime": "2020-12-01T08:40:37.564Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f9495511-d6f4-4fcb-a718-9c97e6178d91", + "createdTime": "2020-12-01T08:40:36.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b16e25e5-b003-4068-abaf-a05f917051e7", + "createdTime": "2020-12-01T08:40:36.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "400a4731-95d6-4c2a-880d-67a4f3b5f711", + "createdTime": "2020-12-01T08:40:35.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78266e97-64bc-4bd3-833e-ba3da74552af", + "createdTime": "2020-12-01T08:36:31.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5038cd2c-bbd1-4e98-8226-f545b20dfd82", + "createdTime": "2020-12-01T08:36:30.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e25065a4-58ed-4f59-8dd5-c524aaf3f56a", + "createdTime": "2020-12-01T08:36:29.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a8012eea-a20a-41e3-9d44-039bd6185c1d", + "createdTime": "2020-12-01T08:36:29.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8c403d8-7052-4ee6-9952-6f637a4d1501", + "createdTime": "2020-12-01T08:25:52.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03897b26-dbd2-4005-b3bd-1e6096929812", + "createdTime": "2020-12-01T08:25:51.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9c2c0798-f096-45f0-b812-a944ed29d16d", + "createdTime": "2020-12-01T08:25:50.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f4e99ec4-1ee9-42aa-aa9b-da612ceb4f93", + "createdTime": "2020-12-01T08:25:48.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50ee1b89-1d9c-4c96-b305-03cac0489c1b", + "createdTime": "2020-12-01T08:21:58.725Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fd8adcad-26a1-4eef-a72c-abf1b306c246", + "createdTime": "2020-12-01T08:21:58.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "02b1ffd1-edc6-4a8c-a650-5e25f130992f", + "createdTime": "2020-12-01T08:21:57.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c24d8c05-3edd-4ad3-b992-86585ed066a0", + "createdTime": "2020-12-01T08:21:56.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59dd1c58-bbdc-4b5c-ba86-1d40af081ddb", + "createdTime": "2020-11-26T09:15:31.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2751bbd8-a599-4cff-9f62-1e82361f84b1", + "createdTime": "2020-11-26T09:15:30.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c883b466-afbd-4aca-a3f8-b38fc1ca23d9", + "createdTime": "2020-11-26T09:15:29.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8aaf7759-4763-4d01-9ebf-98b4beac77da", + "createdTime": "2020-11-26T09:15:27.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d4663d5-d942-42bb-b3bc-dd6d0fe09216", + "createdTime": "2020-11-26T09:12:01.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f4aeaec2-59ad-44b9-8b6d-8e155278b989", + "createdTime": "2020-11-26T09:12:00.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "675c1f30-3c33-45e5-9785-610d16c25194", + "createdTime": "2020-11-26T09:12:00.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "66fa300a-9d3e-4b5c-a9f3-db5b606b9688", + "createdTime": "2020-11-26T09:11:59.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29c4a110-32eb-49cd-94b6-ebafc15885e0", + "createdTime": "2020-11-26T09:03:19.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5787611e-24e7-4fb4-8ba0-f28757bac1ca", + "createdTime": "2020-11-26T09:03:18.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a5c3df8-64d3-4189-ad56-8821e945ab92", + "createdTime": "2020-11-26T09:03:18.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a5a10ab4-916b-4c5e-8a13-f63124fd0c4e", + "createdTime": "2020-11-26T09:03:17.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be32a7bf-f347-4eeb-9443-42b3fc38de4e", + "createdTime": "2020-11-26T08:59:54.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9cf04104-12f8-47b7-aafe-61edad829e4f", + "createdTime": "2020-11-26T08:59:54.043Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff1d7e57-9713-4095-980e-52911c5fb829", + "createdTime": "2020-11-26T08:59:53.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2f6c95de-f2e4-4f3b-9529-2428dacef09f", + "createdTime": "2020-11-26T08:59:52.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed5886ee-8714-47ba-adbc-d0a5f62d3def", + "createdTime": "2020-11-26T08:50:33.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a8ceccf9-b269-4f35-a50d-858678021927", + "createdTime": "2020-11-26T08:50:32.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3494cbe7-3a35-42f5-8460-91abe2364fbb", + "createdTime": "2020-11-26T08:50:31.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c4a51d79-acda-40a3-8909-e3ceec64655c", + "createdTime": "2020-11-26T08:50:31.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfa54f38-f33b-40ae-b95d-8f81ad3b88e7", + "createdTime": "2020-11-26T08:36:51.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4bec3c5a-b769-47a3-966b-1deab38257bf", + "createdTime": "2020-11-26T08:36:50.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a706a0d0-7419-4e2e-9a51-f81482383867", + "createdTime": "2020-11-26T08:36:49.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8eb32238-69b5-40ea-91e5-adaff4f5f00d", + "createdTime": "2020-11-26T08:36:48.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b08d3a5a-0b53-4c87-a84e-1a2636ec5b58", + "createdTime": "2020-11-26T08:33:21.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "949e8d36-49ae-45b4-8a02-f762579d3d17", + "createdTime": "2020-11-26T08:33:21.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "20b2495f-0434-4007-b46e-fa65a91c3c97", + "createdTime": "2020-11-26T08:33:20.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8e4c2c9b-abca-4854-a724-4a58bcb0536f", + "createdTime": "2020-11-26T08:33:19.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5a9f9229-d359-4141-b122-8b82c4a80e8f", + "createdTime": "2020-11-26T08:23:44.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "27ba41c4-3764-478c-a78c-8e47f567377f", + "createdTime": "2020-11-26T08:23:44.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ce0f5ac4-3839-4e5e-a468-df0bcf05d42c", + "createdTime": "2020-11-26T08:23:43.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5f378f11-948f-40dc-b3ae-5ca50222126b", + "createdTime": "2020-11-26T08:23:43.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9242ebd-8f45-4203-887a-35d12940ea67", + "createdTime": "2020-11-26T08:20:56.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d5429ecb-2db5-4d09-9805-bf2be37e50b3", + "createdTime": "2020-11-26T08:20:55.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "74d993f6-c264-41b3-8a2b-d6a1f5e297f1", + "createdTime": "2020-11-26T08:20:54.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7ad4b338-a66c-460c-944e-2ccb0064461e", + "createdTime": "2020-11-26T08:20:53.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df7ed036-de5d-40b5-b4c7-cb25e4e78481", + "createdTime": "2020-11-25T17:16:32.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "612731cd-94f9-4361-9bef-3f5ec080d834", + "createdTime": "2020-11-25T17:16:31.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aa6cfde2-b1df-46ab-abc2-a1ca077d1679", + "createdTime": "2020-11-25T17:16:31.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5a980bcb-a2f5-4932-9b21-9d2478498a60", + "createdTime": "2020-11-25T17:16:30.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "300cff3e-6f1c-4c67-8db7-9901f3dc6ea7", + "createdTime": "2020-11-25T17:12:54.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "291e49d4-4c99-4174-9712-a721055a7d69", + "createdTime": "2020-11-25T17:12:53.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7c9822ce-5183-4fbb-8d76-6cd9793cb02b", + "createdTime": "2020-11-25T17:12:52.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "562a250c-587d-4995-9cee-db039062eb46", + "createdTime": "2020-11-25T17:12:51.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "91775e3a-d1de-4877-af99-d425256ac7db", + "createdTime": "2020-11-25T09:37:31.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "79f37aaf-ee81-431d-8df0-3162845b946d", + "createdTime": "2020-11-25T09:37:31.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "81578c3a-24ea-4248-b902-7b602cc38cf6", + "createdTime": "2020-11-25T09:37:30.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "357fec43-32ea-4d48-94db-34bfc92176fa", + "createdTime": "2020-11-25T09:37:29.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c1e70db8-133d-4a71-97ff-98c9a668fd26", + "createdTime": "2020-11-25T09:32:33.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3a8158d-42a2-4d9c-b12a-89f0f7dc778e", + "createdTime": "2020-11-25T09:32:32.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b49fa23-4dda-4a0b-91ba-2dc643a78410", + "createdTime": "2020-11-25T09:32:32.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "29e2aded-5884-4a5e-bc16-d6b3bd9e49bd", + "createdTime": "2020-11-25T09:32:31.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e5daf54-26e6-47a2-8aac-51ddfbf9a08f", + "createdTime": "2020-11-25T09:24:32.985Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63bc2ed5-04e2-4e00-ba93-56f4dc21d113", + "createdTime": "2020-11-25T09:24:31.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f48236d6-a2a1-48bc-8686-ec9afc05a6a8", + "createdTime": "2020-11-25T09:24:30.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c2d8fb23-9d0f-4ba5-8c02-83338d641cff", + "createdTime": "2020-11-25T09:24:29.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e0fb1903-ab8b-46e2-a924-fe733b30c222", + "createdTime": "2020-11-25T09:18:45.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "618d9fdc-0f94-4249-aced-1cb3bcf11cdb", + "createdTime": "2020-11-25T09:18:43.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6db94561-bf7b-4399-8d87-876fad68e6fa", + "createdTime": "2020-11-25T09:18:42.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "02f068e0-48cf-462b-97b0-85346f252c25", + "createdTime": "2020-11-25T09:18:41.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8f742c11-2519-40ec-a8c9-358227250aa4", + "createdTime": "2020-11-25T09:05:01.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2caabe28-3258-41af-8aa2-ac5aec8f0791", + "createdTime": "2020-11-25T09:04:59.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "806e5ac6-1dec-40de-9d28-29f05019e388", + "createdTime": "2020-11-25T09:04:58.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d4152d5d-5ec9-4e92-9809-93401db20888", + "createdTime": "2020-11-25T09:04:57.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "87d797b6-1e55-4400-99f0-52ad4e2bbe88", + "createdTime": "2020-11-25T08:48:50.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "98c2a027-a3d0-4447-99f4-9acc9d47c664", + "createdTime": "2020-11-25T08:48:49.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d82c78ce-394c-49fc-a2ec-5dd7888bde6d", + "createdTime": "2020-11-25T08:48:48.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0ee38770-c7d5-45a9-8214-0b0aea49ba1b", + "createdTime": "2020-11-25T08:48:46.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "104a74a8-e85e-4cab-88b6-7e6c05f19095", + "createdTime": "2020-11-25T08:39:57.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "edddd216-198c-4fbb-92f9-698a743337de", + "createdTime": "2020-11-25T08:39:54.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64c296e4-6793-47ec-bd71-8b17d440c319", + "createdTime": "2020-11-25T08:39:52.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3bebd4d3-0729-4094-a3d5-69588617cdc8", + "createdTime": "2020-11-25T08:39:51.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2202d20-118b-4eed-a501-cb4c075d709a", + "createdTime": "2020-11-25T08:25:11.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "082fbb24-db89-4821-9f83-bc257e768d4b", + "createdTime": "2020-11-25T08:25:10.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a24c00d4-f8fd-48ff-9159-33b7d45864ad", + "createdTime": "2020-11-25T08:25:09.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1af63fef-5645-4134-9212-c0747c520274", + "createdTime": "2020-11-25T08:25:09.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba28d7f8-44cb-420d-9e29-f36875f7c1bb", + "createdTime": "2020-11-25T08:21:06.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5c701709-9742-415a-b1eb-64b6e02257bf", + "createdTime": "2020-11-25T08:21:05.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3484556c-af91-4464-a189-d511ef296b37", + "createdTime": "2020-11-25T08:21:04.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "897a9a4c-cb8e-4dd0-9b3d-8785d7e933a8", + "createdTime": "2020-11-25T08:21:04.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9202bad4-0a32-4a9c-9846-a1e297cdc26c", + "createdTime": "2020-11-24T09:51:55.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5031a47f-34b6-443f-bf3a-1d87ebc4ac4c", + "createdTime": "2020-11-24T09:51:54.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f307651f-bb9a-455e-96e8-5eaa30c93917", + "createdTime": "2020-11-24T09:51:54.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b722cd7-fe90-4c21-9965-f1d9fd1733c0", + "createdTime": "2020-11-24T09:51:53.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9a15dd1-300c-43e8-b212-e4632e2b7737", + "createdTime": "2020-11-24T09:46:29.776Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e27b1d29-91f8-4719-9c6c-8b6b8cff0f2e", + "createdTime": "2020-11-24T09:46:29.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3b9c537f-59ce-4ffb-a5f7-5054e020df22", + "createdTime": "2020-11-24T09:46:28.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a652f422-d9bd-4da3-af28-ef0dd23692b5", + "createdTime": "2020-11-24T09:46:27.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f5df77a-1ad4-4907-9cb3-10e51deb43be", + "createdTime": "2020-11-24T09:22:01.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23e87ae8-4470-4b29-9963-352bd8733920", + "createdTime": "2020-11-24T09:22:01.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "04827ed0-e0dd-45e5-9521-052d1027a70d", + "createdTime": "2020-11-24T09:22:00.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "709b184b-6565-4d94-a10b-a1eb27f30ec7", + "createdTime": "2020-11-24T09:21:59.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ff1ac345-9d04-4c39-a599-4a8c18b8aba5", + "createdTime": "2020-11-24T09:18:10.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e5273eea-a60d-421e-a9f5-6b1ae2352bea", + "createdTime": "2020-11-24T09:18:09.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "625a7f62-33b1-4bad-bdf5-31d6d0314e54", + "createdTime": "2020-11-24T09:18:08.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3d79878c-ca9f-4f22-8643-315d4a7f4f13", + "createdTime": "2020-11-24T09:18:08.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d89ff3eb-3e3b-41f6-bb9e-f94485806965", + "createdTime": "2020-11-24T08:54:40.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bee8b37e-e8c1-4a6b-9918-125155b8dfd7", + "createdTime": "2020-11-24T08:54:39.718Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a562cdac-2ff2-41af-802e-31c79bfb8340", + "createdTime": "2020-11-24T08:54:39.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f20ace7d-d0e4-45c0-8bb3-06635da88c50", + "createdTime": "2020-11-24T08:54:38.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "63b31de8-20bf-4a1f-9120-fc62913fb871", + "createdTime": "2020-11-24T08:41:34.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "83218c86-3751-427f-8241-49bd74e05935", + "createdTime": "2020-11-24T08:41:33.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "84b62624-7fe7-4ed9-81b2-febb98876047", + "createdTime": "2020-11-24T08:41:31.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3346de28-f96d-4490-bc04-91f898b3274e", + "createdTime": "2020-11-24T08:41:30.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "303190d3-4adf-43f1-a0b3-9ba9d2abde91", + "createdTime": "2020-11-24T08:37:51.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f9939b94-0e29-48e2-b7de-3fa64e29761c", + "createdTime": "2020-11-24T08:37:50.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0652d8f5-2064-4517-97d3-1344b2168f04", + "createdTime": "2020-11-24T08:37:49.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "adf41570-b6f1-44d3-acb4-568bc3900aa0", + "createdTime": "2020-11-24T08:37:48.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "67a02c7d-cb73-447a-b2b1-9866ed88f36c", + "createdTime": "2020-11-24T08:26:28.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "30470fb6-0e5b-4d44-9b0e-352604d0e235", + "createdTime": "2020-11-24T08:26:27.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c529fe0f-765e-48ab-aeb6-5d4fabcba16e", + "createdTime": "2020-11-24T08:26:27.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7c6814d-5c24-4295-bd3c-3bb1531b2768", + "createdTime": "2020-11-24T08:26:26.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b401352e-bc8a-4788-b22e-789e41308b7d", + "createdTime": "2020-11-24T08:22:25.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ac4ead4a-87d4-4d9b-9ddc-1200011588b4", + "createdTime": "2020-11-24T08:22:24.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e0077d5a-3a2a-46f4-b72c-66e5ac402911", + "createdTime": "2020-11-24T08:22:23.843Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "344c8c38-3c24-4678-9fd0-f5b77a616d53", + "createdTime": "2020-11-24T08:22:23.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6e0e64f-6779-4691-9d4d-71622ba81cba", + "createdTime": "2020-11-23T09:14:07.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5952491d-cf0b-4d58-a1a7-55c41bbd69d9", + "createdTime": "2020-11-23T09:14:06.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9cb5d274-b3ff-42a5-8ffa-8933df8fdd85", + "createdTime": "2020-11-23T09:14:06.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4be9dcda-c80d-40f5-9910-1adc7f160a88", + "createdTime": "2020-11-23T09:14:05.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a9be781-ea7b-46a8-8de8-7d3c55bdd606", + "createdTime": "2020-11-23T09:10:16.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8c6db5fb-a9cb-414f-8ff1-d7af28b8fe69", + "createdTime": "2020-11-23T09:10:16.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "27656fba-84da-4452-ac01-48809a591b5a", + "createdTime": "2020-11-23T09:10:15.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1bc3f527-7d14-4921-8977-7ac96ffa856c", + "createdTime": "2020-11-23T09:10:14.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2bfef47-94f5-49fe-a507-6b4166241d24", + "createdTime": "2020-11-23T09:02:28.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d270f8c8-05c4-494f-b5ec-1a0a1ab58731", + "createdTime": "2020-11-23T09:02:26.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "198db14f-f02d-40ff-8793-93420b47228b", + "createdTime": "2020-11-23T09:02:26.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0c64737f-9ece-4dc3-af78-371d238d988a", + "createdTime": "2020-11-23T09:02:25.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1cc24d83-b1dc-47aa-b55f-261bd99d8252", + "createdTime": "2020-11-23T08:58:47.619Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92daccc8-9b65-4f69-a6e9-1abc62b06b16", + "createdTime": "2020-11-23T08:58:46.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5f023f2f-62ae-47d2-a2db-8227b6413bde", + "createdTime": "2020-11-23T08:58:46.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eec425fb-5f72-42ca-a315-95f736386d4c", + "createdTime": "2020-11-23T08:58:45.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "727d97a1-175d-4ea0-a0b7-4f9a1f136d8b", + "createdTime": "2020-11-23T08:49:30.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23a512e4-42e0-41cf-ad38-1c845e00aaa7", + "createdTime": "2020-11-23T08:49:30.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4b11305-c6e9-4655-84cc-e7c439f56e35", + "createdTime": "2020-11-23T08:49:29.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c5aa3057-997a-4d29-a3d7-67fe09c8f3b6", + "createdTime": "2020-11-23T08:49:28.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fc9e9af5-475a-497b-8f0f-65ab8ca71635", + "createdTime": "2020-11-23T08:36:30.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "26dab9b2-2b4d-482d-a763-9aeb0125f4ed", + "createdTime": "2020-11-23T08:36:29.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e81fcea-7769-43ad-b1d2-c349a22c0365", + "createdTime": "2020-11-23T08:36:28.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46f3766a-8bf1-4e0d-bb28-677e290152e1", + "createdTime": "2020-11-23T08:36:27.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d71cc287-14af-48ab-a15d-1efade3f923e", + "createdTime": "2020-11-23T08:32:45.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d0c3dc24-069d-4a34-b58c-5be726a3ca56", + "createdTime": "2020-11-23T08:32:44.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2868543a-fa43-4b1b-bf06-8b7df5e5feac", + "createdTime": "2020-11-23T08:32:43.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c1910d0-5bb1-426a-8a09-08088582f385", + "createdTime": "2020-11-23T08:32:42.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e9dcd9de-9339-45ed-aff9-98788b2c1de1", + "createdTime": "2020-11-23T08:25:21.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a047fd88-bf14-4239-8e29-02fbfc55a218", + "createdTime": "2020-11-23T08:25:21.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "90e7cc3b-b02a-4af6-a012-2c087734e706", + "createdTime": "2020-11-23T08:25:20.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4e75b898-1e9a-49e8-b18b-103e0bc2ef75", + "createdTime": "2020-11-23T08:25:20.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d9b7b19-2aa4-4f11-b08e-9596cd8518a4", + "createdTime": "2020-11-23T08:21:39.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1118abbb-5886-4955-b5ce-2e7833dc89dd", + "createdTime": "2020-11-23T08:21:38.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fde6dca9-2a9c-4fe6-b483-99224b87b16d", + "createdTime": "2020-11-23T08:21:38.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a83a8c8c-7ff7-4baa-ba17-e766f3e6e094", + "createdTime": "2020-11-23T08:21:37.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78db2142-11c7-4197-9f04-a5e690d9c1ec", + "createdTime": "2020-11-20T09:14:42.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "101cff39-1a8a-4b29-be46-3a555eb41b91", + "createdTime": "2020-11-20T09:14:40.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9ea5da00-de5e-402e-8c97-cb3dc460ff4c", + "createdTime": "2020-11-20T09:14:39.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e864a53f-6a93-4e82-86e3-83572d45195d", + "createdTime": "2020-11-20T09:14:38.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7634a082-ae00-499b-9bc5-a42377db9dd4", + "createdTime": "2020-11-20T09:11:09.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5220eb23-6921-4769-b9a4-fc890f63d1a2", + "createdTime": "2020-11-20T09:11:08.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "91786422-3b01-4c85-944a-2723b38e176e", + "createdTime": "2020-11-20T09:11:07.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d8abd5b-ab90-4bcb-9b8d-090870752152", + "createdTime": "2020-11-20T09:11:07.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "339391b0-68b8-4a3a-b752-1af0357e9572", + "createdTime": "2020-11-20T09:01:31.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "39f2b0b9-3172-4cd8-b7c9-1b08afe6d7ac", + "createdTime": "2020-11-20T09:01:31.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e928754e-015b-4ee9-b077-1a9840ad57de", + "createdTime": "2020-11-20T09:01:30.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "63a2fdc8-9ed1-430e-98be-0052bb0f6695", + "createdTime": "2020-11-20T09:01:29.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a5aef45-0c34-48bd-9120-2c47979267c7", + "createdTime": "2020-11-20T08:57:33.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fc758cb1-2506-43fb-8e0b-2420c815606a", + "createdTime": "2020-11-20T08:57:32.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "af83ab0b-cbae-4ac9-8601-70336d373d1c", + "createdTime": "2020-11-20T08:57:32.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cdd23345-31f8-4b21-bebb-65b3fa27ea17", + "createdTime": "2020-11-20T08:57:31.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "380d881e-e96d-42b7-9dbf-ba1c575afaba", + "createdTime": "2020-11-20T08:49:11.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "09df9b95-7937-4b01-babc-6764a4e4c5d6", + "createdTime": "2020-11-20T08:49:11.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f3df151d-b64c-4544-91bb-36e5be7c33ce", + "createdTime": "2020-11-20T08:49:10.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6a131c6-98c9-4bb3-be51-305ff75b3de4", + "createdTime": "2020-11-20T08:49:09.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8deaa5d1-d74a-4570-96e0-b134c320ebe0", + "createdTime": "2020-11-20T08:39:21.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3a12c797-6b3b-4ced-8b52-29712e1c518c", + "createdTime": "2020-11-20T08:39:20.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8beda681-7986-4963-94fb-2b9532f27fc2", + "createdTime": "2020-11-20T08:39:19.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "da47d3c5-7b8d-41e8-ba26-3b875868e1f6", + "createdTime": "2020-11-20T08:39:19.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "348584e3-27cd-4e11-b10e-1d8d3f765fe1", + "createdTime": "2020-11-20T08:35:11.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a36012b1-40d2-4b0e-b0c0-6f6db0721594", + "createdTime": "2020-11-20T08:35:10.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f420f1ff-2fae-4d98-8651-713e4bfe524a", + "createdTime": "2020-11-20T08:35:09.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f466c520-1a3f-46cf-81e5-318e6c0487d0", + "createdTime": "2020-11-20T08:35:08.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a6de729-d6d9-469a-ba73-d459742dcf3d", + "createdTime": "2020-11-20T08:24:46.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4d28fb8a-5ec0-4626-a36d-2ca9ad4c0ae3", + "createdTime": "2020-11-20T08:24:45.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "07b12dae-a442-404f-8d9b-6721738f79dd", + "createdTime": "2020-11-20T08:24:44.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4ec6e82a-374c-4fb1-b8dc-8771b6297edc", + "createdTime": "2020-11-20T08:24:43.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e79dae4a-4ff9-40d6-a85f-189ed0a1599e", + "createdTime": "2020-11-20T08:21:17.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "86d3c786-d476-4b91-8611-7b7dd181b097", + "createdTime": "2020-11-20T08:21:16.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e0925dc-2031-4586-bc38-88f46f70770c", + "createdTime": "2020-11-20T08:21:15.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "40965dd5-7caf-44ba-b0bf-a87065edc895", + "createdTime": "2020-11-20T08:21:15.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aac2244d-361f-4c3d-a7ae-c854639ce36d", + "createdTime": "2020-11-19T09:20:16.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e5192a29-d994-4e34-a662-e555a450c136", + "createdTime": "2020-11-19T09:20:16.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4721b36a-9dc1-4dfa-942c-c565e4b8cbd6", + "createdTime": "2020-11-19T09:20:15.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "913bb68e-b9ca-4451-90eb-d4c0a9806cda", + "createdTime": "2020-11-19T09:20:14.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d749b859-4c42-41da-b365-170b92dd1d60", + "createdTime": "2020-11-19T09:16:31.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8c6c1f6e-44da-41dc-bb31-5dc0782236e5", + "createdTime": "2020-11-19T09:16:30.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b7f71b6b-380d-4db9-99e7-e1a34d088988", + "createdTime": "2020-11-19T09:16:30.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f59a0962-4f07-46cd-8742-66f5c533b716", + "createdTime": "2020-11-19T09:16:29.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fd2b6564-caa6-4742-8f90-95cc903bf428", + "createdTime": "2020-11-19T09:09:13.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8494a131-3dfb-46d6-be45-d0ab957dd97e", + "createdTime": "2020-11-19T09:09:13.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db8ca147-6a27-49f4-878b-34f5f125d399", + "createdTime": "2020-11-19T09:09:12.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0dee2932-ff04-412c-acc5-56e1a1044bea", + "createdTime": "2020-11-19T09:09:12.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "95728c53-2f27-4679-b202-5ddc3bc14d4c", + "createdTime": "2020-11-19T09:05:21.553Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9d98dc41-dc73-4890-b6e7-714875f032fd", + "createdTime": "2020-11-19T09:05:20.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e5187cd9-e507-444a-bca0-e93941aae38a", + "createdTime": "2020-11-19T09:05:20.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9c290cda-aefc-498c-b342-db3574d6a00e", + "createdTime": "2020-11-19T09:05:19.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b3279683-e43a-4997-85f6-d9740d41cb2b", + "createdTime": "2020-11-19T08:54:49.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "439f98a5-f33d-4bad-9b59-e53268516f1e", + "createdTime": "2020-11-19T08:54:48.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4ab6ade3-9e35-49ae-ba3b-48404abac30f", + "createdTime": "2020-11-19T08:54:48.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2b2a478a-3447-4233-b38a-2545eacc3969", + "createdTime": "2020-11-19T08:54:47.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22849b09-e91a-4c68-bfd0-81e10b695ca1", + "createdTime": "2020-11-19T08:44:54.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4f26dafa-ba8c-48f1-b564-9dae5cba2eb0", + "createdTime": "2020-11-19T08:44:54.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe899493-cd16-4d8b-b6ac-2d145b46212f", + "createdTime": "2020-11-19T08:44:53.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "75658f5b-822b-491d-882f-a5b61d9b1206", + "createdTime": "2020-11-19T08:44:53.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b323636d-b2bc-4f5c-8dd9-68bd3a98ba18", + "createdTime": "2020-11-19T08:40:39.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c41f8a71-863d-402a-aecf-095c6b6dc672", + "createdTime": "2020-11-19T08:40:38.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ab0b7720-43a6-47fe-9c2e-d603f292f43e", + "createdTime": "2020-11-19T08:40:38.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1ba2ff5c-9b25-4f2e-b0a4-43431660bf91", + "createdTime": "2020-11-19T08:40:37.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9c18cc7a-6833-4c5a-92e5-aef867126b2a", + "createdTime": "2020-11-19T08:28:48.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e274a9aa-0303-4e6b-81e9-6c816a4f1650", + "createdTime": "2020-11-19T08:28:47.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "120240c1-6e4c-41fe-8310-614eae15bdb3", + "createdTime": "2020-11-19T08:28:46.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c92dd70-e9b0-4690-b797-c9313c8a5377", + "createdTime": "2020-11-19T08:28:45.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "594d9d59-e071-49ba-8249-8ff11420a830", + "createdTime": "2020-11-19T08:25:18.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "06d39536-01ac-45c6-8f23-30c2b7b6c053", + "createdTime": "2020-11-19T08:25:18.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ecc13edc-206c-477c-97ab-a8aee705d53e", + "createdTime": "2020-11-19T08:25:17.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3ac69a0c-d245-4f6a-8ac8-66ba4cc7d4e7", + "createdTime": "2020-11-19T08:25:17.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea7d34a9-7dc9-4389-9198-2c5b408d803a", + "createdTime": "2020-11-18T09:13:50.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f5fe2f36-a80e-44e6-ae97-453e7a731aa6", + "createdTime": "2020-11-18T09:13:49.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ec4b7bef-8b86-40d7-9c81-f6fcc280a7fc", + "createdTime": "2020-11-18T09:13:48.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ce44d47-a8ba-4c5d-9270-94ab8f424483", + "createdTime": "2020-11-18T09:13:47.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "80fad9db-9948-44a6-bee8-269b7739c668", + "createdTime": "2020-11-18T09:10:01.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9ff76dca-f89b-434d-b613-85126ae7eedf", + "createdTime": "2020-11-18T09:10:00.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0fb0521a-7ef2-4668-a322-9f0baae0409b", + "createdTime": "2020-11-18T09:09:59.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d8cca83d-dc33-45fe-bf4e-6d17a2f62e53", + "createdTime": "2020-11-18T09:09:58.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c0b75b3c-ed24-47fa-bfad-7cd62b7eff96", + "createdTime": "2020-11-18T09:01:24.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6d277683-505f-444b-b610-c475d0fd487b", + "createdTime": "2020-11-18T09:01:23.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fd374342-10d5-4e69-822a-c3d561f245b9", + "createdTime": "2020-11-18T09:01:22.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a459ed48-0455-4aa9-a738-f28e45657eb8", + "createdTime": "2020-11-18T09:01:22.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2a4ec20-aea3-4dc1-9c12-ebfaeb4f8b0b", + "createdTime": "2020-11-18T08:57:34.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7156abd4-6a15-40ca-b3f6-47b009175494", + "createdTime": "2020-11-18T08:57:33.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f35bb3df-e414-490a-81bb-26438e976c3d", + "createdTime": "2020-11-18T08:57:33.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e9d3b36-5683-4119-9787-eabdd95b7151", + "createdTime": "2020-11-18T08:57:32.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9c1071bb-7e0a-46cf-b7b8-2c2d310c7dea", + "createdTime": "2020-11-18T08:48:18.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "569c94f7-1ecd-4bf6-89ca-a1f884aa06db", + "createdTime": "2020-11-18T08:48:17.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "009883b4-6c1e-4d00-97aa-e4f8f8da9284", + "createdTime": "2020-11-18T08:48:16.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bceb69d6-8809-4dbd-a0fc-b7d7be2cde8d", + "createdTime": "2020-11-18T08:48:16.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54f9aa9a-eaf1-4c95-9a3a-08157f1d527f", + "createdTime": "2020-11-18T08:35:41.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8271fcf3-733c-4252-a611-7e980d0f84f1", + "createdTime": "2020-11-18T08:35:39.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "26fbe43e-de96-4f85-bdee-743ef63166b7", + "createdTime": "2020-11-18T08:35:38.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6625129c-1a69-4fd6-8f99-2dc1649f2f6f", + "createdTime": "2020-11-18T08:35:37.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "de828bf4-0f3e-45b8-b464-83748c076964", + "createdTime": "2020-11-18T08:31:40.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c466b4b8-650a-451a-ad28-73b9b1290b80", + "createdTime": "2020-11-18T08:31:38.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64b52695-9cfd-4456-90e3-36c1040f19dd", + "createdTime": "2020-11-18T08:31:37.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "11df3039-47bb-4096-880c-b84e74692a95", + "createdTime": "2020-11-18T08:31:36.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c661fb20-ad9c-4025-946c-de9e09dbc703", + "createdTime": "2020-11-18T08:24:35.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6a707db5-9e98-4ad7-bf91-6f596beab51b", + "createdTime": "2020-11-18T08:24:34.934Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "806db8ff-308b-490e-92d6-566214bac110", + "createdTime": "2020-11-18T08:24:34.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a3da97e6-74ab-4a55-9b76-95737dcca7eb", + "createdTime": "2020-11-18T08:24:33.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "95233bf0-6bd0-4ea0-97a2-1d0d53ffb067", + "createdTime": "2020-11-18T08:20:30.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "94d02d1c-f05f-4fc6-bb7d-ecc7c10b9d47", + "createdTime": "2020-11-18T08:20:29.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "848fbc01-800b-430f-b49b-522f72a8023d", + "createdTime": "2020-11-18T08:20:28.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59449b05-1a56-4e4b-a67b-f29a99666010", + "createdTime": "2020-11-18T08:20:28.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ffb298fb-b968-4507-8bcc-941659e714fc", + "createdTime": "2020-11-17T19:52:06.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "8065c219-dca5-4d2b-a203-75170fbdcdd1", + "createdTime": "2020-11-17T19:52:06.359Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "3b4bf7f2-6351-4771-b3fe-11ff3a4d6fd5", + "createdTime": "2020-11-17T19:52:05.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "47cdaa87-804e-4d6d-ad60-bd864755e2e1", + "createdTime": "2020-11-17T19:52:05.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "faa19113-108e-43bd-8131-c88c127815b7", + "createdTime": "2020-11-17T19:49:30.925Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f9feec7e-0022-4f29-b9dc-3259ae589231", + "createdTime": "2020-11-17T19:49:30.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bbc0233e-1ecf-4155-bc3b-ee87b7d8df66", + "createdTime": "2020-11-17T19:49:29.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "f526567c-9a54-4d90-9e4f-35e875967a2e", + "createdTime": "2020-11-17T19:49:28.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "32d78ff1-09d3-4deb-a833-7c06db284ca5", + "createdTime": "2020-11-17T19:46:58.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "e5ae4882-8418-4bdd-8d1f-f8d34a05634d", + "createdTime": "2020-11-17T19:46:57.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "37502ab1-9fc9-4f5b-9ded-38a12f951c96", + "createdTime": "2020-11-17T19:46:57.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "84635841-3816-489f-afc3-53e70d6d470e", + "createdTime": "2020-11-17T19:46:56.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "142054d3-c6bc-4f22-8c78-42283f42b289", + "createdTime": "2020-11-17T19:42:35.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "9d3dffca-c473-4ac6-9d6b-1e8120a25b55", + "createdTime": "2020-11-17T19:42:34.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "cabbbfe7-32f6-45ad-be46-fa9b2e4f18f8", + "createdTime": "2020-11-17T19:42:34.008Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "29559ad2-b938-4bc1-8ef0-99cc568e6042", + "createdTime": "2020-11-17T19:42:33.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cfe53f46-faa5-405d-a4ec-50a33a67c5ac", + "createdTime": "2020-11-17T19:42:31.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "4fb2eb63-65be-4487-b6cb-89972554850f", + "createdTime": "2020-11-17T19:42:30.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "0cc19f43-496a-459b-8082-cb7c686e083f", + "createdTime": "2020-11-17T19:42:30.081Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b443c351-ca7f-48e6-8305-7cad3937e011", + "createdTime": "2020-11-17T19:42:29.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "beb1ff7d-94e2-4fc9-8de1-a9fc79e31199", + "createdTime": "2020-11-17T09:09:28.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f52abe61-c093-427d-b01a-cc9d853ec897", + "createdTime": "2020-11-17T09:09:28.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fb5c0d02-8e89-43fe-bd69-3cda5508bd8e", + "createdTime": "2020-11-17T09:09:27.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1f3b6a38-02dc-465a-b12e-dabe8652754c", + "createdTime": "2020-11-17T09:09:26.922Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "31ada6a9-2af4-494a-8a34-ca2f7468aaa2", + "createdTime": "2020-11-17T09:05:31.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72bd6469-b9d0-406a-a2e3-a8b87cf9e53e", + "createdTime": "2020-11-17T09:05:29.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1f816541-7898-4921-a2ee-eca0bbee6307", + "createdTime": "2020-11-17T09:05:28.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f0a29af1-60e6-4890-ac91-c0acd9d89471", + "createdTime": "2020-11-17T09:05:27.831Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb8b7449-20df-404c-9928-52887a22b95e", + "createdTime": "2020-11-17T08:58:54.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6b90a895-37e1-4a6b-bd4c-5d946720bb6d", + "createdTime": "2020-11-17T08:58:53.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2650db4f-a77f-402a-aaae-0616f665e467", + "createdTime": "2020-11-17T08:58:53.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a6571b2-f0f1-472e-9e7c-597941f3b78e", + "createdTime": "2020-11-17T08:58:52.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25daba56-fe7d-440c-8615-49663f1bdffa", + "createdTime": "2020-11-17T08:56:00.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6a2bd0b1-5254-439d-bb86-3350c132fce0", + "createdTime": "2020-11-17T08:55:59.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9c642d5a-6eb4-488a-8e2c-9d884e56ef2e", + "createdTime": "2020-11-17T08:55:58.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fd04169e-e6b5-4651-aad7-bd7da23602aa", + "createdTime": "2020-11-17T08:55:58.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76b01182-e0f5-4b7a-98f3-bfe896439098", + "createdTime": "2020-11-17T08:47:40.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "76a7de12-7773-4921-ae77-5281f41622ca", + "createdTime": "2020-11-17T08:47:39.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "99b2cb1d-216b-405d-b398-bf1cbad4ba58", + "createdTime": "2020-11-17T08:47:38.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e62194d5-0a83-4a50-aca6-c4eb9a24ae39", + "createdTime": "2020-11-17T08:47:38.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "24410a48-f35e-4a03-ae27-e5f1132b57de", + "createdTime": "2020-11-17T08:34:58.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "56037674-dd95-4774-9d76-eb0b3b2c608f", + "createdTime": "2020-11-17T08:34:57.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0affa045-ae1d-45ec-b7e5-20983192fbdf", + "createdTime": "2020-11-17T08:34:56.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4a515860-4184-4a53-aa89-a29bb6ec57d0", + "createdTime": "2020-11-17T08:34:56.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "693300d6-4a3c-4bff-99cb-1d9516e8693d", + "createdTime": "2020-11-17T08:30:29.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "787c1af1-1580-479b-b09c-dc1125f8e76f", + "createdTime": "2020-11-17T08:30:28.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "50b9107c-b98f-4bc0-b8e2-05e8d7fa192e", + "createdTime": "2020-11-17T08:30:28.086Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "086fd538-e5ff-49cf-a63c-d61ed3f05da1", + "createdTime": "2020-11-17T08:30:27.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dec945fb-a8f1-4199-9ace-1fd62712ea1e", + "createdTime": "2020-11-17T08:23:32.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "469ecc34-093c-42f1-809d-40d46993b3f5", + "createdTime": "2020-11-17T08:23:32.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a758307-c65b-495d-b2b3-3bb6adb0ee20", + "createdTime": "2020-11-17T08:23:31.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "348b8106-b91e-4904-a108-24ddcefd9041", + "createdTime": "2020-11-17T08:23:31.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f743585b-c994-4b6f-b64d-13e42ceeafdf", + "createdTime": "2020-11-17T08:20:39.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dbc084c0-0b73-429c-9c4e-ed8cae755fb8", + "createdTime": "2020-11-17T08:20:38.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "75718c12-f853-4ba0-b6ad-cdfa2997bd30", + "createdTime": "2020-11-17T08:20:37.958Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b17574b9-c46b-4b85-b8c1-26f08a329be4", + "createdTime": "2020-11-17T08:20:36.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45cb62de-e855-412c-8dc3-41d68998917a", + "createdTime": "2020-11-16T09:11:21.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ae2ab832-adea-4a9c-bc89-fb63c8e54fad", + "createdTime": "2020-11-16T09:11:20.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "78b26af9-6429-4e42-a5d2-9f65c3e2a66c", + "createdTime": "2020-11-16T09:11:19.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "88aacd68-d5fd-4109-bf18-7e698c590dc0", + "createdTime": "2020-11-16T09:11:19.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "706d0cf0-6a14-4f1a-b9af-4a34c10360f2", + "createdTime": "2020-11-16T09:07:35.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dd51aa7e-496b-4348-842b-39a5bd89f9f1", + "createdTime": "2020-11-16T09:07:35.072Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9292c92a-842d-4bf3-b5ed-9fa259f35690", + "createdTime": "2020-11-16T09:07:34.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4808e76d-c179-4394-9411-ea5d3575eb57", + "createdTime": "2020-11-16T09:07:33.529Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7456cdbe-4970-42f8-9c02-9a2ff695362b", + "createdTime": "2020-11-16T09:00:26.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "79ffa146-6290-445b-8414-f3893fd30c3a", + "createdTime": "2020-11-16T09:00:26.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7084c3ac-feb6-4cc4-82ef-c84a394f8b28", + "createdTime": "2020-11-16T09:00:25.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ebf28686-12b3-4cd1-9491-ec03f74734ae", + "createdTime": "2020-11-16T09:00:25.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7e01ad1-5e33-4331-8752-eb9c15f720d4", + "createdTime": "2020-11-16T08:56:44.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bbe3deeb-9d00-4d18-85d8-3c06d9066fb5", + "createdTime": "2020-11-16T08:56:43.808Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63d76220-1c3a-40f5-b7de-75d26fec3ec4", + "createdTime": "2020-11-16T08:56:43.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bd9691e-31d9-44ca-9e07-f2a1ead43fbb", + "createdTime": "2020-11-16T08:56:42.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d0ba5b3c-37e5-4e76-95b7-dbc2eebb122b", + "createdTime": "2020-11-16T08:47:14.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03b699be-3fb3-4bf9-a03c-6f6e7de28bde", + "createdTime": "2020-11-16T08:47:13.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "64d6682f-d82a-460e-9baf-ebd737b2ada7", + "createdTime": "2020-11-16T08:47:12.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dafe4562-229b-4619-8095-0ff8890ec343", + "createdTime": "2020-11-16T08:47:12.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f708cf7d-f50a-4aa2-ac09-098159c7501a", + "createdTime": "2020-11-16T08:38:56.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7f485bc6-91ed-4d5d-ad04-62a1ad8c3395", + "createdTime": "2020-11-16T08:38:55.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4faf6ccb-0844-48aa-8e13-018d593abc39", + "createdTime": "2020-11-16T08:38:55.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0be30137-ba7b-4588-8da7-37a90d25d987", + "createdTime": "2020-11-16T08:38:54.105Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d8cdfb62-1188-46db-912b-d33caa35bfda", + "createdTime": "2020-11-16T08:35:03.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "43a58f64-9420-4545-a7b7-6ff8e19dc5e1", + "createdTime": "2020-11-16T08:35:02.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f428eb63-36bf-4528-b4b5-bb9ba1313b58", + "createdTime": "2020-11-16T08:35:01.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e58400b-f049-46ae-a5fc-eca5614302b5", + "createdTime": "2020-11-16T08:35:00.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a303b61-2677-460a-ad3c-3828d9a448d5", + "createdTime": "2020-11-16T08:25:04.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8bd46253-f9e6-4b76-96f4-128dde2a8e09", + "createdTime": "2020-11-16T08:25:03.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9a1a26fb-3f04-47b2-9d6d-32763c296592", + "createdTime": "2020-11-16T08:25:03.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6de91861-1328-44f2-88bd-f66728a78610", + "createdTime": "2020-11-16T08:25:02.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ad0d2ec-2473-4bad-ac16-1125bf89288c", + "createdTime": "2020-11-16T08:21:26.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f48a893f-9e7c-40ac-9517-1c596c83c751", + "createdTime": "2020-11-16T08:21:26.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b98ce192-7bd9-401e-a417-d81dc35a8268", + "createdTime": "2020-11-16T08:21:25.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb0381a2-cee7-4dc3-b370-a05f73f22af2", + "createdTime": "2020-11-16T08:21:24.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc808ff9-799f-44bf-84c8-d2abdc406294", + "createdTime": "2020-11-13T22:04:12.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "2ae29d0d-9621-4486-82a5-19750036eef7", + "createdTime": "2020-11-13T22:04:12.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "16a8593d-7910-4ad0-add4-6363f3ad95d7", + "createdTime": "2020-11-13T22:04:11.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "46595de5-1b5e-4896-bd76-306da7b305ce", + "createdTime": "2020-11-13T22:04:11.088Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df99bbd6-c746-4967-991a-c469ea7d65be", + "createdTime": "2020-11-13T22:02:57.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "05558007-515c-400d-b2a9-ab2568609746", + "createdTime": "2020-11-13T22:02:57.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d762bacf-3eca-4fdb-b028-a1b958a8d52b", + "createdTime": "2020-11-13T22:02:56.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a6888385-475c-4873-a50d-ea190d2e773f", + "createdTime": "2020-11-13T22:02:56.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a5afab15-680d-4e36-ad60-ee26b6780b1a", + "createdTime": "2020-11-13T21:55:51.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "7cc577bb-7930-41f0-80d9-d0ca438fc945", + "createdTime": "2020-11-13T21:55:50.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a2c0079d-93f9-46ae-8eb0-623e9b3e84cb", + "createdTime": "2020-11-13T21:55:49.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "baf72725-3674-4743-a481-476b95e89183", + "createdTime": "2020-11-13T21:55:48.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c35d82bd-02e3-4c57-9de0-03c560dbb8b4", + "createdTime": "2020-11-13T21:54:26.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ab4590cc-5f28-4afb-8335-d447c30e6f7d", + "createdTime": "2020-11-13T21:54:26.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b5a8181c-7df2-4c1c-ba1c-47d7f47b55e9", + "createdTime": "2020-11-13T21:54:26.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "13e18fe8-ee1c-43c8-87e4-7690c834021b", + "createdTime": "2020-11-13T21:54:25.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50ba77ec-7281-4f8c-a7f6-3f635b0ea381", + "createdTime": "2020-11-13T20:28:13.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ad9d60d0-2b31-4f61-8a58-9fd0149b0aee", + "createdTime": "2020-11-13T20:28:12.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "b133c26a-43f8-4abb-8b7b-514b8a12f12c", + "createdTime": "2020-11-13T20:28:12.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6276e227-8eed-4484-993e-c91746ad1c48", + "createdTime": "2020-11-13T20:28:11.833Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ba02009-45eb-4416-960a-e62b4f587f99", + "createdTime": "2020-11-13T20:26:58.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f69427f6-3d31-4874-8197-0de0496ca392", + "createdTime": "2020-11-13T20:26:57.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "365ca868-192a-4631-9a08-2c46ccce67e7", + "createdTime": "2020-11-13T20:26:57.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2cc781cf-c105-4334-abb9-1a2483cfb7a6", + "createdTime": "2020-11-13T20:26:56.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c545ad2-9056-4d0e-9658-4b7b5a6e39b9", + "createdTime": "2020-11-13T20:07:23.358Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "ceaee0e5-43b4-4591-a0ac-0a4320f80cd1", + "createdTime": "2020-11-13T20:07:22.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d2d42da8-cea7-414c-bba6-7ed409c098d5", + "createdTime": "2020-11-13T20:07:22.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "dbbebff0-af7f-498e-b789-8f1714942c1d", + "createdTime": "2020-11-13T20:07:22.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d75736a2-642a-4691-bedd-8917e157daa2", + "createdTime": "2020-11-13T19:47:40.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "557e7eac-729f-427f-8c70-a0616b376b60", + "createdTime": "2020-11-13T19:47:39.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "57779b4b-ce28-4889-b24d-bae1b6001d6b", + "createdTime": "2020-11-13T19:47:38.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d183cd71-800c-46a2-bf15-d63cecb630e8", + "createdTime": "2020-11-13T19:47:37.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "589b848e-24aa-4e18-8bfe-c31d5cb6793d", + "createdTime": "2020-11-13T19:46:30.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "1379eeea-b2db-4bba-9468-bfafe3e56ed2", + "createdTime": "2020-11-13T19:46:29.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "726af1b5-a214-44f4-8064-bf1feed6fc12", + "createdTime": "2020-11-13T19:46:28.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "cbed990a-fb7f-4091-911b-39d4f47dfd35", + "createdTime": "2020-11-13T19:46:28.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34c8aee1-2da4-4ca4-919d-a829a813853d", + "createdTime": "2020-11-13T19:37:02.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "88022ac8-435b-4cfb-9398-24b9d8fbaff6", + "createdTime": "2020-11-13T19:37:01.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "6450661e-9560-4d0c-80ec-bd663bb28d76", + "createdTime": "2020-11-13T19:37:01.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a644df71-ea76-48f2-8060-83298c2df41e", + "createdTime": "2020-11-13T19:37:00.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a214cfe-1217-4f98-a266-13466226abe4", + "createdTime": "2020-11-13T19:32:52.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "f848f796-12c3-4c87-9fb6-6826b3ec25e8", + "createdTime": "2020-11-13T19:32:52.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "51460551-ba52-4bdd-9972-8fca9563976f", + "createdTime": "2020-11-13T19:32:51.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "59492e09-bfa3-48bb-9b73-68bb506e3010", + "createdTime": "2020-11-13T19:32:51.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1825b190-ce11-4e99-9171-350533f50353", + "createdTime": "2020-11-13T09:11:22.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c92af29-a5d9-41c8-82c5-6abcccd03764", + "createdTime": "2020-11-13T09:11:21.769Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c2a1c081-1e2f-4356-9bfd-c99094fc6a61", + "createdTime": "2020-11-13T09:11:21.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6281d7d7-6e37-4bf4-a81a-a8d41fae9db8", + "createdTime": "2020-11-13T09:11:20.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "44cb3d1d-eb38-40b6-8292-8f693af291bc", + "createdTime": "2020-11-13T09:07:21.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cd50009a-6e73-4fcf-818c-d532bbd2ec13", + "createdTime": "2020-11-13T09:07:21.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3a1cfe73-90c8-457c-afc6-75af57932902", + "createdTime": "2020-11-13T09:07:20.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9bfd7ac7-d891-49a1-8445-9d4536645a1e", + "createdTime": "2020-11-13T09:07:19.807Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "018f6801-efa3-47ab-af01-c1ee5a239fd6", + "createdTime": "2020-11-13T09:00:16.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "daa9a519-3fbf-4b0c-b1bd-ab497dafc57b", + "createdTime": "2020-11-13T09:00:16.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "22cdc14c-2bde-4653-8489-fef1c3d6d53f", + "createdTime": "2020-11-13T09:00:15.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cceab136-55a5-4a82-9a6f-345f6b46568a", + "createdTime": "2020-11-13T09:00:15.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dc724a7c-66ad-49e7-8875-87ade182e4d0", + "createdTime": "2020-11-13T08:56:25.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6e18aa91-1fbe-4fc2-896a-3db37ed400a3", + "createdTime": "2020-11-13T08:56:24.81Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9eff227e-0e15-40fb-ad05-d49195e63e15", + "createdTime": "2020-11-13T08:56:24.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "49cfcfa8-3f6c-4a65-a6c4-239a052a8278", + "createdTime": "2020-11-13T08:56:23.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9c79e12f-f0df-41f4-937b-86545b64aeb9", + "createdTime": "2020-11-13T08:47:30.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f6e39216-f85a-4ac4-b8d4-9a190cebbb68", + "createdTime": "2020-11-13T08:47:30Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dde1e79f-76a2-42ac-8055-d03d8bf7f9c7", + "createdTime": "2020-11-13T08:47:29.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4ce326c7-302f-4ab2-9171-26c63f410ff5", + "createdTime": "2020-11-13T08:47:28.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "41153e2b-0186-4967-88dd-14b00cffa68f", + "createdTime": "2020-11-13T08:36:46.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ebb035c2-80ef-4aa0-9337-31978f60dc66", + "createdTime": "2020-11-13T08:36:45.328Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d4f0c8f8-f038-43a9-a1ba-66f51fe79f57", + "createdTime": "2020-11-13T08:36:44.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e5e11421-2651-492f-83a0-e9d5c20fa5cd", + "createdTime": "2020-11-13T08:36:42.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bb3e00e9-dbc4-4e1e-abc8-17ad282a4e82", + "createdTime": "2020-11-13T08:32:55.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "84d0f31c-b525-4cac-80e1-4b075604fce9", + "createdTime": "2020-11-13T08:32:53.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3fe2781-045d-4e35-bdd5-200a1f5ce0d8", + "createdTime": "2020-11-13T08:32:52.912Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0fbca2c4-2632-4e2b-8c99-bba1c3ec9c6a", + "createdTime": "2020-11-13T08:32:51.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4aa0eba-58e8-4866-abd6-bb6ac364b0e5", + "createdTime": "2020-11-13T08:25:18.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "db639f71-1cd6-404b-85ce-79a5ab5e73ca", + "createdTime": "2020-11-13T08:25:18.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ef6ec940-3ba4-449d-8f70-79d7ad52f09d", + "createdTime": "2020-11-13T08:25:17.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "44b577a0-ef4f-418f-a150-bccc939438d8", + "createdTime": "2020-11-13T08:25:16.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d99b2cdf-06ec-490d-9a53-135b053491ed", + "createdTime": "2020-11-13T08:21:12.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e12d49ca-797f-4bef-b10d-d9c3b66c7858", + "createdTime": "2020-11-13T08:21:09.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b823afb1-e77d-4036-8a4c-be5b481270a5", + "createdTime": "2020-11-13T08:21:08.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "13d6fe76-bc87-4d6c-98ce-613815f3b0ac", + "createdTime": "2020-11-13T08:21:05.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86a3e675-f7cb-474b-85d2-7891f404a90d", + "createdTime": "2020-11-13T01:23:42.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "de06c379-4ab7-4eca-8b30-4292118e44bc", + "createdTime": "2020-11-13T01:23:41.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "bc016ccf-4703-43e7-a380-a3089753244b", + "createdTime": "2020-11-13T01:23:41.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "b7eb24f7-d36a-4adb-91aa-cf13bda6db07", + "createdTime": "2020-11-13T01:23:40.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "498ae3c9-98b5-442e-893a-9261b5d9c8e5", + "createdTime": "2020-11-13T01:14:40.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "a4b0da07-3b80-41bb-9fe5-706dd21cd7b0", + "createdTime": "2020-11-13T01:14:39.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "033a83a9-722e-4dcb-9912-899edcebc6f0", + "createdTime": "2020-11-13T01:14:39.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a379554c-9b37-4108-8dc6-02a80a7bcaaf", + "createdTime": "2020-11-13T01:14:38.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f2cb86ff-7e06-46ea-8399-156541496bcd", + "createdTime": "2020-11-13T01:12:41.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5922ad48-0b39-4ce5-97e9-f35fa1bd9771", + "createdTime": "2020-11-13T01:12:40.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "411cb330-3170-4823-83be-582958b03346", + "createdTime": "2020-11-13T01:12:40.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "564d2052-414b-40bd-a758-ecb6d75fc3eb", + "createdTime": "2020-11-13T01:12:39.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a08644c0-6068-4432-ac6e-517b20ac478b", + "createdTime": "2020-11-13T00:25:10.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0e9b5a3e-aaca-4445-919b-a775bd64071d", + "createdTime": "2020-11-13T00:25:09.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "c89d02b7-c416-46f0-85cf-5d8ac315af94", + "createdTime": "2020-11-13T00:25:09.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d1cc8823-63a9-4da7-a93c-fdeb58fb3c47", + "createdTime": "2020-11-13T00:25:08.723Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1133c3cd-e344-43a0-8b80-14e7e63a9d6e", + "createdTime": "2020-11-12T23:17:17.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "d2e7ae47-908f-41dd-867d-4b5dd93625a1", + "createdTime": "2020-11-12T23:17:17.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "78ea6979-2fe7-4b22-8dcf-f2eb82c41cd4", + "createdTime": "2020-11-12T23:17:16.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "2322fd4c-260d-4ae5-b80f-a452402d9bf9", + "createdTime": "2020-11-12T23:17:16.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5e675f8-1b17-45c8-87c3-e1c90e875957", + "createdTime": "2020-11-12T23:10:49.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "6cc6491d-4f3d-4cd7-90ab-5fdd348d306e", + "createdTime": "2020-11-12T23:10:49.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "248bf97b-5f5e-41cb-8af6-f2596b99ef3c", + "createdTime": "2020-11-12T23:10:48.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "7537f620-7201-41eb-9d98-6a111349a609", + "createdTime": "2020-11-12T23:10:48.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9796afaf-f238-4ded-a0e5-fd7e90be8b9b", + "createdTime": "2020-11-12T17:31:42.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "f136c321-ee10-43f5-a8ef-17c28af81db9", + "createdTime": "2020-11-12T17:31:41.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "3667414e-d06f-4bf4-9757-36789248636b", + "createdTime": "2020-11-12T17:31:41.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:31:40.054Z", + "endTime": "2020-11-12T17:31:40.054Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5e676049-4e22-47ba-9c63-359f06d189ea", + "createdTime": "2020-11-12T17:31:40.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:31:40.054Z", + "endTime": "2020-11-12T17:31:40.054Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c8b6f77-55a6-4e22-8813-feb84adfae1f", + "createdTime": "2020-11-12T17:31:39.564Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "f4c529c2-a0e0-4ff5-a618-080101e4e2f1", + "createdTime": "2020-11-12T17:31:39.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "7f8e27fe-de5f-4345-a7e2-814aeadef17d", + "createdTime": "2020-11-12T17:31:38.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:31:37.899Z", + "endTime": "2020-11-12T17:31:37.899Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "13719b79-00d7-4e39-9ed4-03235b727d83", + "createdTime": "2020-11-12T17:31:38.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:31:37.899Z", + "endTime": "2020-11-12T17:31:37.899Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "232e3204-951b-46e3-8a46-7850d92831a0", + "createdTime": "2020-11-12T17:30:00.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0ce7546-a247-459a-97eb-3ddc08944241", + "createdTime": "2020-11-12T17:29:55.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "3b870415-9fdf-49bc-9752-989ab359eaf5", + "createdTime": "2020-11-12T17:29:55.349Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "02c90ec5-36b5-4fed-8e67-98abefdf3a33", + "createdTime": "2020-11-12T17:29:54.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:29:54.153Z", + "endTime": "2020-11-12T17:29:54.153Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2da960ca-e54e-421b-8ae7-c5af55e504fe", + "createdTime": "2020-11-12T17:29:54.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:29:54.153Z", + "endTime": "2020-11-12T17:29:54.153Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f7b278f-2553-4387-a7ee-1cd879df656e", + "createdTime": "2020-11-12T17:29:53.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "6db007e5-26ea-4ebc-8bac-19785bfddb60", + "createdTime": "2020-11-12T17:29:53.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "e668bf3b-6356-42ef-9d93-b314d362ec44", + "createdTime": "2020-11-12T17:29:52.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-12T17:29:52.19Z", + "endTime": "2020-11-12T17:29:52.19Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a46c30eb-64f9-4e28-a294-c18e5510178f", + "createdTime": "2020-11-12T17:29:52.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-12T17:29:52.19Z", + "endTime": "2020-11-12T17:29:52.19Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d7417a4-34db-4326-93f1-a236fca6c819", + "createdTime": "2020-11-12T17:28:47.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83ec0343-4133-49ae-82a9-5be1b75db371", + "createdTime": "2020-11-12T09:17:34.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f955ba16-cc56-4a16-bbe7-3603097190f1", + "createdTime": "2020-11-12T09:17:33.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6d84dea5-9360-46c9-8479-6068aa3df262", + "createdTime": "2020-11-12T09:17:33.272Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b69b160b-a6fa-4fc8-a05d-2621161b119f", + "createdTime": "2020-11-12T09:17:32.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dbcc013f-277e-4f89-98a7-cd8651713f15", + "createdTime": "2020-11-12T09:13:39.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fe20a441-99ba-4e09-bff1-b167eaa24fd0", + "createdTime": "2020-11-12T09:13:38.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7436b5bb-e423-4e02-8bb5-a3232a732e4d", + "createdTime": "2020-11-12T09:13:37.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2cb4e9e3-a0c3-49c5-9193-1ead852486aa", + "createdTime": "2020-11-12T09:13:37.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "abab87d7-0289-4723-9239-5cec3ab4112a", + "createdTime": "2020-11-12T09:04:05.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17fa7339-01ae-457c-872b-bd953c59bdec", + "createdTime": "2020-11-12T09:04:05.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c09925b7-a9d5-49e7-8b94-a4406202d97b", + "createdTime": "2020-11-12T09:04:04.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb5df8c1-514e-4ddd-b8d5-a529a48e3551", + "createdTime": "2020-11-12T09:04:04.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8aacfb30-fd53-4e78-86ba-7873b2dd2a41", + "createdTime": "2020-11-12T09:00:25.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7dc9c794-9e39-448f-afb2-feb3370804ef", + "createdTime": "2020-11-12T09:00:25.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "47310bab-87f7-46e3-afbf-14fe2a5543ec", + "createdTime": "2020-11-12T09:00:24.583Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1d693f9e-1731-41a5-b875-745ec9fb05d3", + "createdTime": "2020-11-12T09:00:23.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ce2a1ba8-4047-413d-905f-b1ee63a3af81", + "createdTime": "2020-11-12T08:49:07.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fe132fed-2db2-4f8b-b339-1a93b21c1cee", + "createdTime": "2020-11-12T08:49:06.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1dfc227-e37f-4fb1-91fa-c52a9518bc59", + "createdTime": "2020-11-12T08:49:06.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e0dccfc-e292-49bb-a152-07904ed325f3", + "createdTime": "2020-11-12T08:49:05.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e6e8fc2-11ca-4052-b9ee-d8a69c2aff17", + "createdTime": "2020-11-12T08:36:15.829Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0a78bdbc-bba1-4b6c-bd76-1828b2e40190", + "createdTime": "2020-11-12T08:36:15.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "18a6bcf9-971b-44ea-8153-4e4a00274ed3", + "createdTime": "2020-11-12T08:36:14.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b12abb3-034e-4417-bf4b-0ff3815bc429", + "createdTime": "2020-11-12T08:36:13.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c55d980d-cb01-41a6-aa23-2962c25dace9", + "createdTime": "2020-11-12T08:31:53.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3d91ecf-8cab-4302-8128-2669acbd7dc1", + "createdTime": "2020-11-12T08:31:52.369Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "44163547-d91b-401c-89af-46b7d87d2338", + "createdTime": "2020-11-12T08:31:51.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f0cbe9ce-3e1e-42d2-baf7-60d225b09336", + "createdTime": "2020-11-12T08:31:50.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e89ba5f-0029-4565-ada3-87658d142de5", + "createdTime": "2020-11-12T08:24:37.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a90547aa-649a-4206-aa47-5cdd5f8ced02", + "createdTime": "2020-11-12T08:24:37.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "411ebe99-61ec-4f04-b00e-5397f86601a5", + "createdTime": "2020-11-12T08:24:36.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fcd37d5b-2779-497f-86e9-dd6e29814f68", + "createdTime": "2020-11-12T08:24:36.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1970eef5-cff7-4be1-92f3-e1ab34dacbd9", + "createdTime": "2020-11-12T08:21:32.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e2dbd95-31fe-4359-bd1f-1e335265030b", + "createdTime": "2020-11-12T08:21:32.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "49b2b88e-196b-4c23-8e8d-8298c6cbdbb6", + "createdTime": "2020-11-12T08:21:31.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db0269cb-3b0a-4192-a7dd-b4c25324dcb5", + "createdTime": "2020-11-12T08:21:31.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bf078a61-edfb-4a3e-a8c0-c32551a508a3", + "createdTime": "2020-11-11T09:12:16.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a5d7ac3b-05ac-4360-8797-90e45ca2b0ad", + "createdTime": "2020-11-11T09:12:16.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "14d0efc0-b3cd-4bfd-81ac-ad71d148f749", + "createdTime": "2020-11-11T09:12:15.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "253c678d-ca5b-46a3-90c3-981b427803bc", + "createdTime": "2020-11-11T09:12:15.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "951a7371-fb3e-4606-93db-d7d0d1934a28", + "createdTime": "2020-11-11T09:08:40.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0d15d0b2-888c-4ee7-9870-bbfd6d1d5da3", + "createdTime": "2020-11-11T09:08:39.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7ce84938-8b1c-4f8d-b3db-90d11d761ad8", + "createdTime": "2020-11-11T09:08:39.188Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c81c4f73-3d43-40e3-a2b5-b49f1c57688f", + "createdTime": "2020-11-11T09:08:38.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0164f277-f8ab-4ef4-a556-56159f8e5663", + "createdTime": "2020-11-11T09:01:37.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51b6d93d-d7d6-45b0-9dec-1d84e749e502", + "createdTime": "2020-11-11T09:01:36.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e0f7c535-4c9e-4103-84ef-78faa9a50ddb", + "createdTime": "2020-11-11T09:01:36.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b152d986-721c-4427-abf4-36805a1d3b0e", + "createdTime": "2020-11-11T09:01:35.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1875373-034c-480b-8c0c-68d005dc2258", + "createdTime": "2020-11-11T08:57:58.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "deab1924-ff83-4d99-aeb2-e21a562cc181", + "createdTime": "2020-11-11T08:57:58.275Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6028381c-9826-415b-b31b-82a841ebc949", + "createdTime": "2020-11-11T08:57:57.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "db9e93ae-b035-49f2-81a8-f2d15d1bd7ef", + "createdTime": "2020-11-11T08:57:57.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e16f168-ce6d-4bc9-86ee-4ab10f4697a9", + "createdTime": "2020-11-11T08:48:06.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "87e7be94-1f2a-4aea-8014-8a38a757fbb2", + "createdTime": "2020-11-11T08:48:05.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "abf3cdfb-ead3-4b64-aa67-dc662c3bff0c", + "createdTime": "2020-11-11T08:48:04.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "87dbe4ea-2b2a-4e24-9986-e34382ba3895", + "createdTime": "2020-11-11T08:48:04.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e62cf637-f29c-466a-a378-08fc68d62bb8", + "createdTime": "2020-11-11T08:35:48.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "16f4e2de-9f15-45e5-b544-2e481a656642", + "createdTime": "2020-11-11T08:35:48.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3e17d608-3234-4ccf-8304-2600a2936e57", + "createdTime": "2020-11-11T08:35:47.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ad0f8178-c7d7-4173-9a6d-5365940c7323", + "createdTime": "2020-11-11T08:35:46.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b255be0-b0eb-4ffd-bbfc-54f0a10e1716", + "createdTime": "2020-11-11T08:31:38.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c87dad98-1245-45e4-9559-62c432ad24c9", + "createdTime": "2020-11-11T08:31:37.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2ee0b582-bf31-4af6-8684-d781ae138c86", + "createdTime": "2020-11-11T08:31:36.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b38b239f-6d45-4023-befc-1c9d555f3df2", + "createdTime": "2020-11-11T08:31:36.104Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc77bc1e-7514-4849-a1b0-d45b7d7791de", + "createdTime": "2020-11-11T08:24:29.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d11ee66e-f576-4a1c-942e-8c2045c7bbd3", + "createdTime": "2020-11-11T08:24:28.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f16dec-f11d-4bfa-b5f5-4e73241f802c", + "createdTime": "2020-11-11T08:24:27.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa4ffaa5-2b54-466e-9a4f-b9c1edc23a44", + "createdTime": "2020-11-11T08:24:26.599Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dcbde5c4-8a5d-4923-93e3-71d81f84da02", + "createdTime": "2020-11-11T08:21:19.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8767960e-7ba3-43c1-9a79-bdade42dc16f", + "createdTime": "2020-11-11T08:21:19.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eaf0ce90-00d1-4f59-9057-e022db60609a", + "createdTime": "2020-11-11T08:21:18.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "666a18e1-00ef-4553-8bd8-ba96f1d26fe2", + "createdTime": "2020-11-11T08:21:18.134Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "719d9f1a-176d-439c-8c7b-18b874265d58", + "createdTime": "2020-11-10T21:28:01.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "e1d4633b-047a-448f-9a36-04b50a26423d", + "createdTime": "2020-11-10T21:28:01.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "6b8d94ca-717f-408c-84b9-0a77659c2103", + "createdTime": "2020-11-10T21:28:00.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:27:59.37Z", + "endTime": "2020-11-10T21:27:59.37Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d7cd2165-4160-469d-94d1-876dd2cf7d69", + "createdTime": "2020-11-10T21:27:59.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:27:59.37Z", + "endTime": "2020-11-10T21:27:59.37Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "572c91a7-e955-4971-a7e2-48e571b7df97", + "createdTime": "2020-11-10T21:27:58.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "6f090e4d-8a13-430c-9795-e861c5cda67d", + "createdTime": "2020-11-10T21:27:58.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "8d9d4de4-d75c-48dc-bf69-b2b6b66c4148", + "createdTime": "2020-11-10T21:27:58.077Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:27:57.407Z", + "endTime": "2020-11-10T21:27:57.407Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "46b4c9ab-2041-4965-8dca-08edf457e5d1", + "createdTime": "2020-11-10T21:27:57.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:27:57.407Z", + "endTime": "2020-11-10T21:27:57.407Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18c26895-41aa-4a34-a335-54f21719ca8e", + "createdTime": "2020-11-10T21:26:53.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5971573f-a46d-46a8-aa56-309f7aa8614a", + "createdTime": "2020-11-10T21:26:48.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "83c4a4a5-b7fe-4f98-8b81-0e2f42482587", + "createdTime": "2020-11-10T21:26:47.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "1f998703-0a3b-49fe-9e75-c178c0fcae5a", + "createdTime": "2020-11-10T21:26:47.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:26:46.695Z", + "endTime": "2020-11-10T21:26:46.695Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "09150f1f-cf65-44ae-879e-aa9216b36d0d", + "createdTime": "2020-11-10T21:26:46.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:26:46.695Z", + "endTime": "2020-11-10T21:26:46.695Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "afcdfc99-6cd4-4303-8778-88929ccd0d74", + "createdTime": "2020-11-10T21:26:46.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "20464395-a962-4a61-8bd0-6e1cfdd3faf3", + "createdTime": "2020-11-10T21:26:45.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "ba069235-3399-46e3-86a0-2afab07198ed", + "createdTime": "2020-11-10T21:26:45.096Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:26:44.023Z", + "endTime": "2020-11-10T21:26:44.023Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fa8c3cd8-690d-4853-a048-e7872861f507", + "createdTime": "2020-11-10T21:26:44.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:26:44.023Z", + "endTime": "2020-11-10T21:26:44.023Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57a93d63-adf6-426c-8f59-85fb8028e719", + "createdTime": "2020-11-10T21:25:28.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee2388c-0eda-47df-948c-ea27d9752cb5", + "createdTime": "2020-11-10T21:13:19.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "88c5aa65-1863-4bb9-b6e2-57b83de82aa8", + "createdTime": "2020-11-10T21:13:18.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "47a4873a-ca9b-42f4-ae5e-c1b892298092", + "createdTime": "2020-11-10T21:13:18.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:13:17.619Z", + "endTime": "2020-11-10T21:13:17.619Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0bf10246-e98f-424e-abc1-5fb43e2fb28e", + "createdTime": "2020-11-10T21:13:17.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:13:17.619Z", + "endTime": "2020-11-10T21:13:17.619Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3952ae86-58ed-49be-8125-69dc4f79480e", + "createdTime": "2020-11-10T21:13:17.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "d76dd8e0-66f2-48fb-9e30-cbd17b4f8596", + "createdTime": "2020-11-10T21:13:16.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "2a7f8ae9-d594-47b3-9619-bf5593a48646", + "createdTime": "2020-11-10T21:13:16.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:13:15.681Z", + "endTime": "2020-11-10T21:13:15.681Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5c7b0c3f-af2f-4c1d-9032-dd8eb05c441e", + "createdTime": "2020-11-10T21:13:15.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:13:15.681Z", + "endTime": "2020-11-10T21:13:15.681Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9d9eb5f-a49f-461c-a31d-38a20b1a26c8", + "createdTime": "2020-11-10T21:11:59.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a21fe860-76de-430f-afc1-3ffd9ae33194", + "createdTime": "2020-11-10T21:11:55.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "c7c08a20-a8df-4b00-a63a-b3e3a13eba07", + "createdTime": "2020-11-10T21:11:54.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "cb791265-1f34-4def-881a-72a56ecbdf5d", + "createdTime": "2020-11-10T21:11:54.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:11:53.796Z", + "endTime": "2020-11-10T21:11:53.796Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3356a22-8575-4809-af51-dbf8c5b2fd21", + "createdTime": "2020-11-10T21:11:54.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:11:53.796Z", + "endTime": "2020-11-10T21:11:53.796Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79b06d52-322d-4805-9d62-412796318735", + "createdTime": "2020-11-10T21:11:53.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "8954e375-8b44-47b7-a2e7-4e738b1d4841", + "createdTime": "2020-11-10T21:11:53.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "54d7c406-748d-4b76-b8cf-226881a4936c", + "createdTime": "2020-11-10T21:11:52.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T21:11:51.828Z", + "endTime": "2020-11-10T21:11:51.828Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "13975084-267f-48cf-a177-01ad86328786", + "createdTime": "2020-11-10T21:11:52.081Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T21:11:51.828Z", + "endTime": "2020-11-10T21:11:51.828Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "564e2ec9-5db0-4eab-9cb5-fd259b9a37b7", + "createdTime": "2020-11-10T21:10:37.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "41b39175-b6fa-4c6a-8dfb-51bacdc658be", + "createdTime": "2020-11-10T19:40:19.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "23c3554a-89e4-4ac2-92ae-f97c0816f5f0", + "createdTime": "2020-11-10T19:40:09.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ac8d62a-1a5f-4bda-a313-8ba3a8ac954b", + "createdTime": "2020-11-10T19:40:02.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "60ed588a-1416-4aed-af95-5d7f1d5336ca", + "createdTime": "2020-11-10T19:39:59.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7fc3e3a-28ca-46a1-b9a3-f1b986243b59", + "createdTime": "2020-11-10T19:39:50.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7257338c-aff5-4bf1-853f-644950d305df", + "createdTime": "2020-11-10T19:38:46.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b86f1704-33f1-4783-8f9d-363d2c2e5739", + "createdTime": "2020-11-10T19:38:35.283Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aed129dd-2f2b-4852-9448-3cbd05c6cc79", + "createdTime": "2020-11-10T19:38:25.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d3e33f7-78f2-4a41-bede-bb32c7eefeb7", + "createdTime": "2020-11-10T19:38:23.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86eb43d4-e3db-4128-b6e4-9fe0e96977b5", + "createdTime": "2020-11-10T19:38:13.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "709f78ed-3e71-4efe-a7b1-550bcf2046ba", + "createdTime": "2020-11-10T19:40:23.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "eb8e3787-0f2d-4cbc-8061-3a2f8ae26ebc", + "createdTime": "2020-11-10T19:40:21.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6ace6a54-b386-4f78-acb3-4d1c7e8e0410", + "createdTime": "2020-11-10T19:40:17.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "82da3454-9a62-4e96-81da-4954c6df3964", + "createdTime": "2020-11-10T19:40:14.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "862768c4-e878-4dd2-ad66-32728619f973", + "createdTime": "2020-11-10T19:40:12.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "84767021-7307-4d0d-933f-e28284f54ddc", + "createdTime": "2020-11-10T19:40:07.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b48d1585-32e2-4810-99a7-995f3f1c2297", + "createdTime": "2020-11-10T19:40:05.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0b3edcfd-2608-4f8f-836d-1455fb4f8bd8", + "createdTime": "2020-11-10T19:37:22.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06c7040d-1a13-4698-98f2-a317c5150e91", + "createdTime": "2020-11-10T19:40:03.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8183bea-11bb-4d45-8f05-33ed4862cc44", + "createdTime": "2020-11-10T19:39:58.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6ba55b9d-4ac6-4779-a05c-9ab024db033d", + "createdTime": "2020-11-10T19:39:54.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c1d6dfbb-d707-42e0-9e54-b964aa6db861", + "createdTime": "2020-11-10T19:39:53.641Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "074a1af8-d75d-4390-9492-7292d6d75577", + "createdTime": "2020-11-10T19:39:47.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "62fd52a4-581c-4369-aba4-89d5ab662588", + "createdTime": "2020-11-10T19:37:11.553Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e20798d1-6c55-4966-b0fd-5a897131ae6a", + "createdTime": "2020-11-10T19:38:50.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "eba88cda-b439-4644-befd-3e33a5650454", + "createdTime": "2020-11-10T19:38:48.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d29ae5db-551b-4046-9c75-1e0e6f671664", + "createdTime": "2020-11-10T19:38:43.929Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "128c02bd-5b0f-420b-bf3f-280d915fce30", + "createdTime": "2020-11-10T19:37:05.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d36a48bc-40d1-4b0d-9320-3709cc565a0a", + "createdTime": "2020-11-10T19:38:40.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9528cc57-09a7-4812-bbdc-d3c110a35593", + "createdTime": "2020-11-10T19:38:38.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a56c8436-3ad3-48d0-99f6-2654f3dfdfca", + "createdTime": "2020-11-10T19:38:30.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e1aac5e2-c285-4571-819e-948707a26f04", + "createdTime": "2020-11-10T19:38:29.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "16eca5f2-14e8-41e6-86d1-f3c5ca315ca7", + "createdTime": "2020-11-10T19:38:27.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8195ec2c-362c-494a-83ca-4b758b5fcfbb", + "createdTime": "2020-11-10T19:38:20.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf96482b-6cb0-46d1-8719-ef638fd797ba", + "createdTime": "2020-11-10T19:38:17.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "80b5172a-5cc7-4897-980e-a506602191cd", + "createdTime": "2020-11-10T19:38:16.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "42408df7-07ff-4499-a31f-de82ee84b2d5", + "createdTime": "2020-11-10T19:38:09.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7c702e02-fff9-4f0f-8bfd-cda08d97e164", + "createdTime": "2020-11-10T19:37:02.854Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe179c5e-035c-4be1-8818-3780b40be0d4", + "createdTime": "2020-11-10T19:36:54.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64535297-257e-449f-909e-257002ba09b0", + "createdTime": "2020-11-10T19:37:25.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fd92e8b8-19d1-4bbf-8eff-1e8eea1e07ff", + "createdTime": "2020-11-10T19:37:23.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8f1ecf83-dc3e-49e0-8556-195206be5b19", + "createdTime": "2020-11-10T19:37:19.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "53221801-43b3-41fc-829c-51014eb33ab7", + "createdTime": "2020-11-10T19:37:15.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1e646f23-fc93-49bf-9bdd-fb85d2a78bfe", + "createdTime": "2020-11-10T19:37:14.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bb3d38ec-19a0-44f2-81fa-fdc036462cea", + "createdTime": "2020-11-10T19:37:08.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1802c6a9-4f5f-4358-9f41-6586eb4e884c", + "createdTime": "2020-11-10T19:37:07.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "50d8a34a-9818-4cb3-997c-c143d5dc4809", + "createdTime": "2020-11-10T19:37:06.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2589dc2a-6ce8-457a-9e4c-2cf10a9daf07", + "createdTime": "2020-11-10T19:37:01.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5818065d-6581-4821-a60c-544bb28c71e1", + "createdTime": "2020-11-10T19:36:57.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "43962562-dd27-4c73-8600-ae4bba0e485a", + "createdTime": "2020-11-10T19:36:56.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6ac3649-5604-4b05-924d-2147627760e8", + "createdTime": "2020-11-10T19:36:51.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "42075982-6072-4f3d-9d24-96a62980d6b2", + "createdTime": "2020-11-10T19:30:18.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "daaffaf5-e470-45aa-ac30-c294e1822fb3", + "createdTime": "2020-11-10T19:30:06.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46553a9e-4d2a-4eb3-8a78-ef3b7098d461", + "createdTime": "2020-11-10T19:29:57.643Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1996f32-0a64-499c-976e-a44a2fa9f21b", + "createdTime": "2020-11-10T19:29:54.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "650e62f8-7b4a-4bd2-a287-20eb652838c8", + "createdTime": "2020-11-10T19:29:42.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c122d4f6-3f71-49d3-9910-f80475b88c8f", + "createdTime": "2020-11-10T19:30:23.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "088bdf85-c1fe-454b-b990-dc2dcc079162", + "createdTime": "2020-11-10T19:30:20.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "199a99e6-9394-43e6-b7fe-fab45470207e", + "createdTime": "2020-11-10T19:30:15.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7cb4b5c7-de4c-4e09-a8b5-238371e578ce", + "createdTime": "2020-11-10T19:27:19.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7f05dc4-1c8a-45cf-a4c9-10e5386ffb4d", + "createdTime": "2020-11-10T19:30:11.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bbec08b2-66ba-4cfd-a8eb-b9d2541ec44e", + "createdTime": "2020-11-10T19:30:10.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "507c5219-4cb3-4c07-a64d-73ab1a998c87", + "createdTime": "2020-11-10T19:30:03.601Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ed0dd8b1-64f2-4fe8-b370-7dc555a875df", + "createdTime": "2020-11-10T19:30:01.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f0ef4f0a-f6f2-45db-93c6-f17ba558f70b", + "createdTime": "2020-11-10T19:29:59.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5e00262c-de51-471b-b2ca-f290b6b09c7d", + "createdTime": "2020-11-10T19:29:52.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56fbecdc-ec15-486d-904c-f8d6a7985960", + "createdTime": "2020-11-10T19:29:47.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "99e6b02a-7013-403f-9b11-37b88ddfc0fb", + "createdTime": "2020-11-10T19:29:45.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d6a08a96-0255-4331-adae-2dc1d8c2f2bf", + "createdTime": "2020-11-10T19:29:38.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9fd1323d-80dd-4265-bb9f-6057f146b317", + "createdTime": "2020-11-10T19:27:08.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "547a08c6-d117-44b9-9206-68308ddf5660", + "createdTime": "2020-11-10T19:26:55.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "003fce9d-6cb5-4ac5-8391-3631d4ffbd38", + "createdTime": "2020-11-10T19:26:37.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "158cc334-d0e2-4bbc-b189-cb402dfd10af", + "createdTime": "2020-11-10T19:27:23.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a575d9c7-d242-457c-9447-6b069fa2b558", + "createdTime": "2020-11-10T19:26:28.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be86a5bb-d64b-4d4a-94ad-2a5db5ce2d38", + "createdTime": "2020-11-10T19:27:21.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3e9737f5-0583-43b3-bb56-443924fe4024", + "createdTime": "2020-11-10T19:27:17.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "833dbc58-fc04-4e03-aa50-e63f29ede77e", + "createdTime": "2020-11-10T19:27:12.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3d83d494-4088-415e-9aba-7cf369f1f8c8", + "createdTime": "2020-11-10T19:27:11.052Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d2855b0d-5f51-4361-8fce-eda83ffa618b", + "createdTime": "2020-11-10T19:27:06.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88331a86-2db1-4647-81b3-23c8b849fc23", + "createdTime": "2020-11-10T19:27:04.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7d32a73b-e63c-4384-9a5a-72eed4756f4b", + "createdTime": "2020-11-10T19:27:02.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef4d59d0-13ef-4d1f-a5c5-82c38f9f200d", + "createdTime": "2020-11-10T19:25:47.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fff51d95-5969-4699-aaef-c397cb036c58", + "createdTime": "2020-11-10T19:26:36.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c335f1d7-8b3b-4311-8ebc-e3fbf3d8eb4c", + "createdTime": "2020-11-10T19:26:32.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2c0c4051-e5a0-4869-9fca-ce38ad11da1e", + "createdTime": "2020-11-10T19:26:30.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7ea734e3-d45b-4d8c-8d7f-0269c8ea9f23", + "createdTime": "2020-11-10T19:26:25.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbeb24ec-322b-47ac-8e6f-b8b635fcd419", + "createdTime": "2020-11-10T19:25:39.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c5be98d-19f5-4334-95e1-c788b45929c9", + "createdTime": "2020-11-10T19:25:34.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f887dcf2-0dd3-43a3-bf20-6f52236c59ca", + "createdTime": "2020-11-10T19:25:49.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a76baa45-6f93-4822-b1f7-228cbf34496e", + "createdTime": "2020-11-10T19:25:33.205Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "09729207-00d9-45f9-ad1c-2e19f6c5ebc3", + "createdTime": "2020-11-10T19:25:48.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6062d2c8-e34d-4835-bb32-69e180a9a037", + "createdTime": "2020-11-10T19:25:44.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bdafb538-23b0-411c-aa4f-b4dacfdc651d", + "createdTime": "2020-11-10T19:25:42.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "82d7c54c-4f47-4041-ad44-2a50072368be", + "createdTime": "2020-11-10T19:25:41.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72b941ce-60ab-4690-8642-e3fe68e4fec1", + "createdTime": "2020-11-10T19:25:37.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d98dd94f-36e6-4286-a1a4-aa30999d721f", + "createdTime": "2020-11-10T19:25:26.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e3ab386-fff1-479a-8ffa-57034dd7d9f6", + "createdTime": "2020-11-10T19:25:36.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0cafdd17-7c7f-477f-bf55-10e76730c312", + "createdTime": "2020-11-10T19:25:35.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9f9933fc-0b11-4072-958a-836dbeee46fa", + "createdTime": "2020-11-10T19:25:32.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "88976ca1-50e2-4843-83b7-891fb565c522", + "createdTime": "2020-11-10T19:25:29.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4dca3017-d484-45b4-b5d6-d6e8778b08a9", + "createdTime": "2020-11-10T19:25:28.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fde7031f-cdc8-488d-84e0-a25f8726f13e", + "createdTime": "2020-11-10T19:25:24.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "af33d15e-6334-45c7-ada1-9b92657d06f6", + "createdTime": "2020-11-10T18:14:20.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "dc44c654-9461-4c1d-9c51-4f358e3f3ef7", + "createdTime": "2020-11-10T18:14:19.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "f69dc233-5a72-49bc-8fea-29bb1333ee63", + "createdTime": "2020-11-10T18:14:18.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "592e2b52-1a19-4bb2-afcf-8c1804b90d5f", + "createdTime": "2020-11-10T18:14:17.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3ea30fd-ecca-462c-845a-442dde1a1978", + "createdTime": "2020-11-10T18:06:08.59Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3603535a-5a88-47b9-ad1e-420e1ee3770e", + "createdTime": "2020-11-10T18:06:08.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "d3053bd8-09d7-4cfe-b375-808074c44a97", + "createdTime": "2020-11-10T18:06:07.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5f7df9f0-18dd-48e3-8cd9-526d977063fb", + "createdTime": "2020-11-10T18:06:07.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "d6b45c1f-ba1d-4c63-8d29-978c1edb3147", + "createdTime": "2020-11-10T18:06:06.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2225b8f2-a421-4028-b60c-49398c8e3b89", + "createdTime": "2020-11-10T18:06:06.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8b67883-4dc0-4f7d-9e49-7a3fe188f87e", + "createdTime": "2020-11-10T18:06:06.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "ce75763e-d5f3-4237-9381-b36af9a13dff", + "createdTime": "2020-11-10T18:06:04.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "daacfca4-b91f-4088-ad6b-18d2f14c670e", + "createdTime": "2020-11-10T18:05:05.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "3ceebc51-56d7-4ea4-b931-71b6174e1816", + "createdTime": "2020-11-10T18:05:04.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "2bd7953c-ee96-4906-b7aa-5b8e451cf5af", + "createdTime": "2020-11-10T18:05:04.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "a6301640-411f-4bce-9c53-de23f5101b80", + "createdTime": "2020-11-10T18:05:03.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2043575d-8f3b-4f9f-a563-775ab5ac4d58", + "createdTime": "2020-11-10T17:30:25.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "9458dbef-9b6e-4c59-9ce2-4d1d31643b63", + "createdTime": "2020-11-10T17:30:25.355Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "bb5270bb-4554-4c93-9456-2c44e14ccf8a", + "createdTime": "2020-11-10T17:30:24.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:30:24.194Z", + "endTime": "2020-11-10T17:30:24.194Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f94a2d77-3c2c-446e-9bdf-ad0cf17ca427", + "createdTime": "2020-11-10T17:30:24.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:30:24.194Z", + "endTime": "2020-11-10T17:30:24.194Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee0c5f5-a9c7-440c-9f35-b71b16a765b4", + "createdTime": "2020-11-10T17:30:23.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "0b879b79-eb64-46b3-9e80-dd74b0a4a433", + "createdTime": "2020-11-10T17:30:23.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "83d7e550-feb7-46e5-ac82-79a2abfcb2ce", + "createdTime": "2020-11-10T17:30:22.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:30:22.105Z", + "endTime": "2020-11-10T17:30:22.105Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c544ac9-5398-42a5-b847-4ef0c99c809d", + "createdTime": "2020-11-10T17:30:22.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:30:22.105Z", + "endTime": "2020-11-10T17:30:22.105Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "623798f7-b1c0-47d0-abaa-a48361ebb7ea", + "createdTime": "2020-11-10T17:28:59.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3c306269-2105-408a-9613-e6d799f42d76", + "createdTime": "2020-11-10T17:28:55.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "c465fda2-1751-4b75-bae6-3bd5b84a7161", + "createdTime": "2020-11-10T17:28:54.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "853c0af5-6a48-454c-8e10-ecdab3ad87a2", + "createdTime": "2020-11-10T17:28:54.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:28:53.785Z", + "endTime": "2020-11-10T17:28:53.785Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "027878d4-8560-4e21-a279-1a3907c94ec3", + "createdTime": "2020-11-10T17:28:54.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:28:53.785Z", + "endTime": "2020-11-10T17:28:53.785Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "12d0eefb-3ac4-4189-844c-787b0ba0af70", + "createdTime": "2020-11-10T17:28:53.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "26b3e2dd-19ff-438d-b5b3-630455148157", + "createdTime": "2020-11-10T17:28:53.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "5ce42898-f5d6-4328-9c0c-9cca652d325f", + "createdTime": "2020-11-10T17:28:52.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-10T17:28:51.936Z", + "endTime": "2020-11-10T17:28:51.936Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c6f69cf-c9d2-4b36-9405-a924dd926318", + "createdTime": "2020-11-10T17:28:52.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-10T17:28:51.936Z", + "endTime": "2020-11-10T17:28:51.936Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "865e223a-1541-4fac-85f4-3dd400ee379d", + "createdTime": "2020-11-10T17:27:36.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d659710d-1046-45b2-bacf-9e06f69b16d4", + "createdTime": "2020-11-10T17:26:09.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "33a1ccfb-5bc5-4436-8322-4ef6b12a52ef", + "createdTime": "2020-11-10T17:25:36.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "739c366e-cfab-4b59-bcc5-a1519db8a7ae", + "createdTime": "2020-11-10T16:09:24.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3bbd647a-94d4-4682-8d73-c4a991f58ce7", + "createdTime": "2020-11-10T16:08:54.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "efa5ad97-1b06-468d-b42f-2019a587322e", + "createdTime": "2020-11-10T10:41:02.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "47cd848e-af71-45a2-be99-92df3d4af32c", + "createdTime": "2020-11-10T10:41:02.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2fe137d2-e67a-40c3-aabb-66351f7b2024", + "createdTime": "2020-11-10T10:41:01.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0d0aa563-a4d2-455c-9626-cb81629398fb", + "createdTime": "2020-11-10T10:41:01.095Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c4e5a0d-c6fe-4c1a-ba3a-90cc45aa2c1c", + "createdTime": "2020-11-10T10:37:38.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dcc7db06-6ea5-412d-aaf9-aa36dd026c77", + "createdTime": "2020-11-10T10:37:37.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "287f5143-16e1-46fe-95de-8fa98d401e23", + "createdTime": "2020-11-10T10:37:37.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "30c3760e-a8b7-42dc-854d-4cef6a649c39", + "createdTime": "2020-11-10T10:37:36.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d3b95b8e-2000-4262-903d-362b0a3c702c", + "createdTime": "2020-11-10T10:21:36.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad827d39-a985-4112-bc86-d98f1d296c41", + "createdTime": "2020-11-10T10:21:36.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "013df9a8-8322-477d-8a32-ef7a78ee6ab9", + "createdTime": "2020-11-10T10:21:35.572Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8133efb2-0f9e-4f4c-bf6c-973520b88727", + "createdTime": "2020-11-10T10:21:34.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "860e2958-44b8-4ee6-8563-ca05184aea87", + "createdTime": "2020-11-10T10:17:42.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0b633bce-9808-4787-a26a-7b0117f6a718", + "createdTime": "2020-11-10T10:17:41.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f531981a-dd95-42df-9aa7-883f03f35966", + "createdTime": "2020-11-10T10:17:40.881Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9a62145-7ff8-4a0e-86d6-e374fc1c36ff", + "createdTime": "2020-11-10T10:17:40.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "acd280bd-71e9-4ae6-9af9-ac4c13c726bc", + "createdTime": "2020-11-10T09:46:42.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e743834a-ddcb-4b05-aa5c-54fe6407981d", + "createdTime": "2020-11-10T09:46:41.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6e656740-5c9c-4dbd-992d-efb84d230ae2", + "createdTime": "2020-11-10T09:46:41.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3e19a212-e66e-49f0-a279-babe1f1f7877", + "createdTime": "2020-11-10T09:46:40.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1048eeef-be5c-40cb-b0f4-b6c1b5aa73de", + "createdTime": "2020-11-10T09:11:03.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "af06ec52-b9cd-4680-862c-bf0c9c78278c", + "createdTime": "2020-11-10T09:11:02.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7d1cd613-3bb1-47f9-a599-918c8bbf88b4", + "createdTime": "2020-11-10T09:11:02.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "538cae72-5389-45f7-82e0-dbeb5dbca2e9", + "createdTime": "2020-11-10T09:11:01.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02e01cf6-46ce-44cd-93aa-39b414bbee8e", + "createdTime": "2020-11-10T09:06:56.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c1964be6-4d41-483a-956d-3f5e9a593c6c", + "createdTime": "2020-11-10T09:06:55.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bb68ec72-af53-4696-81c6-2b07dd625a7e", + "createdTime": "2020-11-10T09:06:55.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e2b87c82-8c90-498a-b573-24c7327e087d", + "createdTime": "2020-11-10T09:06:54.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9afa0aba-5bda-4d64-bc6e-3eae7e760e20", + "createdTime": "2020-11-10T08:40:03.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6f83550d-d5ed-49ef-b1ca-a1fd573dce2a", + "createdTime": "2020-11-10T08:40:02.565Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6c428bd2-b8d1-42ad-988c-5cb43a5bf232", + "createdTime": "2020-11-10T08:40:02.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2440e2de-abf9-4cf3-b99a-6dba6fddaf95", + "createdTime": "2020-11-10T08:40:01.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78a75908-6b2a-4a5a-b0fc-b7bb41b4cbfe", + "createdTime": "2020-11-10T08:36:25.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "00f656fd-804e-4c02-aba2-0f4acf1d17a4", + "createdTime": "2020-11-10T08:36:24.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8791fb04-1997-4746-97bd-2da6d1066beb", + "createdTime": "2020-11-10T08:36:23.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7736ce5c-b84a-4951-9882-7e5c4cffc9ac", + "createdTime": "2020-11-10T08:36:23.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7eed86c6-8bdb-43b0-aa09-c6d5e27466ab", + "createdTime": "2020-11-10T07:39:58.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5bbe17e7-d984-4395-8c1c-19be722dd1d1", + "createdTime": "2020-11-10T07:39:47.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9bcafe8f-2610-440b-97b1-6bd1ff7a6c88", + "createdTime": "2020-11-10T07:39:37.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "84481532-798a-4483-bd93-a9597873e6f3", + "createdTime": "2020-11-10T07:39:34.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ee615f6-7cdb-4655-a9e3-7b572bfcda73", + "createdTime": "2020-11-10T07:39:24.315Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f9401931-7c09-4f2a-8728-0da69f07f715", + "createdTime": "2020-11-10T07:37:25.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f4160b9-c094-4890-b1d3-6120873388d9", + "createdTime": "2020-11-10T07:37:14.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d55299a8-d368-4990-b9f6-c51d719cd952", + "createdTime": "2020-11-10T07:37:06.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c3023ef6-39e8-4485-97a2-76d0ffef2d2d", + "createdTime": "2020-11-10T07:37:04.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "37675207-38fd-4599-a2ad-73c95c7bc9e2", + "createdTime": "2020-11-10T07:36:54.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e29f171-5acb-4939-830b-ad757667b976", + "createdTime": "2020-11-10T07:36:36.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e33a1225-94d5-4a88-b760-d0e0c36af8a9", + "createdTime": "2020-11-10T07:36:25.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "90bc94b0-e7e4-4b74-9d7b-83659509c27a", + "createdTime": "2020-11-10T07:36:17.987Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "74fef4a1-7216-460d-9e33-9854c0a54464", + "createdTime": "2020-11-10T07:36:15.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bdb9e729-71b9-4567-acfe-446f5229eeb8", + "createdTime": "2020-11-10T07:36:06.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "97a07322-10d5-4433-ab9f-861cdb070513", + "createdTime": "2020-11-10T07:34:40.256Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "477ca160-65b3-4a8b-96ed-b9646bbceac4", + "createdTime": "2020-11-10T07:40:02.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "be41cba1-645c-4cf4-8aa8-190b0c22aa2f", + "createdTime": "2020-11-10T07:39:59.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dbd2a87c-00be-4ae6-9b5b-7a78fb186c91", + "createdTime": "2020-11-10T07:34:28.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "31ef930d-be59-4576-98db-37a67e6f8c48", + "createdTime": "2020-11-10T07:39:55.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "73093c0b-0c68-4f4f-a2f8-b2f00986feaa", + "createdTime": "2020-11-10T07:39:51.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "edd7a652-2bf4-45cf-a03e-1b93c8023ed3", + "createdTime": "2020-11-10T07:39:49.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c8bd1970-23d0-4d01-b2d8-5a146c9f4903", + "createdTime": "2020-11-10T07:39:43.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8f88ac50-7c98-46c4-9b01-90bf6c061aaa", + "createdTime": "2020-11-10T07:39:41.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e46f2764-5c2c-4a2e-a9ac-84c6394b2630", + "createdTime": "2020-11-10T07:39:39.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "89238ba1-b23d-441a-aa17-6dc92b71fbe9", + "createdTime": "2020-11-10T07:39:32.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f3af7428-f3ab-4b57-8d8f-99b19ca51f22", + "createdTime": "2020-11-10T07:39:28.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3c210453-ae89-42d4-9b13-e85cbb3cd481", + "createdTime": "2020-11-10T07:39:27.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4b8c0089-f48f-4c9f-b760-2444d3c58f92", + "createdTime": "2020-11-10T07:39:20.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "85a2208e-e44d-4abe-ba3c-24cb9d6efd8c", + "createdTime": "2020-11-10T07:34:18.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66134cb4-2dc0-453d-a436-72e90060bca5", + "createdTime": "2020-11-10T07:34:15.834Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35bb98b5-0b26-4b96-b749-2ee24c3973c7", + "createdTime": "2020-11-10T07:34:03.996Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a1030a4-b039-4e44-a431-ee3f64df0ccc", + "createdTime": "2020-11-10T07:37:28.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1e5148b9-9910-4fc5-9b5c-329b9e73dff8", + "createdTime": "2020-11-10T07:37:27.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8e9aa955-b051-4edc-9826-cbbf87934808", + "createdTime": "2020-11-10T07:37:22.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56b1d10c-d935-4066-9447-1796a2a54f18", + "createdTime": "2020-11-10T07:37:18.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2c6fae64-527a-44e5-a7d2-abdb2e725efe", + "createdTime": "2020-11-10T07:37:17.465Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "40f14455-91a5-4f63-912c-23f7d5de9d18", + "createdTime": "2020-11-10T07:32:15.63Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "59f3f976-cf72-4cdf-845c-73dff2cc3a78", + "createdTime": "2020-11-10T07:37:12.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "917731d8-ebb3-4299-8d00-e82b3b7ca2e3", + "createdTime": "2020-11-10T07:37:10.372Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d8f3d228-170a-4932-8134-df9732ccbfeb", + "createdTime": "2020-11-10T07:37:08.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8cdb2584-b679-4a41-bd92-69d2b98e7021", + "createdTime": "2020-11-10T07:37:02.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3eb2f160-597f-4254-99af-1e1a9ff3958f", + "createdTime": "2020-11-10T07:36:58.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c0839c0a-7a5b-4f7d-b6a9-5cd5bb044215", + "createdTime": "2020-11-10T07:36:57.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7dcd771e-b2dc-4754-8b57-3b02b7c16c96", + "createdTime": "2020-11-10T07:36:51.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "95450a80-de8c-4edd-8c86-1caa09c7bdb2", + "createdTime": "2020-11-10T07:36:38.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "264b9ead-c10c-4032-b5b7-77a46864fa4c", + "createdTime": "2020-11-10T07:36:37.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a52f5a8c-517e-4195-a59a-7fcf5799b029", + "createdTime": "2020-11-10T07:32:03.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1054a8b3-a0c9-4726-b9d4-612397b7ffe3", + "createdTime": "2020-11-10T07:36:33.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f4549203-fda3-4a28-9ff6-c89c4603592f", + "createdTime": "2020-11-10T07:36:29.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "06e388be-266a-41ac-b659-cdd7ef0958e1", + "createdTime": "2020-11-10T07:36:28.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ae9c4ac-64ed-41e0-b3e1-5ef35d8c7c10", + "createdTime": "2020-11-10T07:36:23.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "68bfedef-80b7-4351-b87f-b93155bb38ff", + "createdTime": "2020-11-10T07:36:21.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "821f821f-1f82-4d6d-8983-7ee5b744ad91", + "createdTime": "2020-11-10T07:36:19.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b0b42828-e8a4-4312-8dcf-8e7952ab7e99", + "createdTime": "2020-11-10T07:36:13.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0f5ba346-a9ec-4e29-98db-857bb64b59d1", + "createdTime": "2020-11-10T07:36:10.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "25b771aa-5acc-45ad-895f-012e64d518d6", + "createdTime": "2020-11-10T07:36:08.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "17c7aa88-9ae7-4f0e-8d2b-ae9a01c180c3", + "createdTime": "2020-11-10T07:36:03.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92592dad-ffbb-4542-ad3d-4554012a3aae", + "createdTime": "2020-11-10T07:32:00.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2178ea4f-5ede-4e26-ba74-abbf7446b9c9", + "createdTime": "2020-11-10T07:31:59.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6a36d08-c98c-4620-aec7-3983cd9a159e", + "createdTime": "2020-11-10T07:34:44.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c34dd5fc-4bf5-4335-b63f-d1107a0f2178", + "createdTime": "2020-11-10T07:34:42.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "08c20a30-aa1c-4c81-b45a-47f269d35290", + "createdTime": "2020-11-10T07:34:37.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "16f01c6f-064d-4ff2-8fe4-76416684a41b", + "createdTime": "2020-11-10T07:34:33.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad2acfa5-b8cb-4b00-9de9-dc36fafc7743", + "createdTime": "2020-11-10T07:34:32.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "facb9201-f125-4b3d-a27c-ea044ba89da7", + "createdTime": "2020-11-10T07:31:57.226Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2868c7b8-0087-4416-a2d6-82d80ca64dfa", + "createdTime": "2020-11-10T07:34:25.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "02ccedbd-5143-4974-b724-3ea99a93a1d9", + "createdTime": "2020-11-10T07:34:22.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1783ec2d-8c5c-4f98-9cc5-a4b55f4c72af", + "createdTime": "2020-11-10T07:34:20.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5fcc6ea1-b6be-4d1d-a5e2-b3695232cfb0", + "createdTime": "2020-11-10T07:34:13.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6ce20ab-b186-4555-820d-66a9bff3b6f3", + "createdTime": "2020-11-10T07:34:08.676Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e222dead-c7d4-488b-8404-80d6fe23a948", + "createdTime": "2020-11-10T07:34:07.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f7089f64-57e6-4e4e-8a3f-f9f18d5914c7", + "createdTime": "2020-11-10T07:33:59.603Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cd4f63af-082f-46ca-b2f9-83b715b1b829", + "createdTime": "2020-11-10T07:31:54.517Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e737210-cf4c-4cb4-8528-dffaa561ae14", + "createdTime": "2020-11-10T07:31:46.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7ad78fca-6a67-4440-9d13-8cb46a00f55a", + "createdTime": "2020-11-10T07:32:17.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "16807902-7e4f-4afe-8837-37844b0082c0", + "createdTime": "2020-11-10T07:32:16.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9784aa70-5686-46bf-a25e-64110e1432bf", + "createdTime": "2020-11-10T07:32:14.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "107cec19-632a-4986-972f-ec7a23653ecd", + "createdTime": "2020-11-10T07:31:40.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c63e968-8d64-41a9-ae35-01dec6f6eb04", + "createdTime": "2020-11-10T07:32:11.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4ab1e6e7-b661-48c9-81ed-ee91434a23ff", + "createdTime": "2020-11-10T07:32:10.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7abd5e59-eaf0-40ef-ace8-a657c5bfdc09", + "createdTime": "2020-11-10T07:32:02.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ac27c48a-d7e7-41bb-ba39-c525a39ef1ea", + "createdTime": "2020-11-10T07:32:02.13Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f7c00667-fba9-4a1f-a860-d8be1897bbde", + "createdTime": "2020-11-10T07:32:01.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1a9bd051-cf4a-4970-9aa5-ef7afa18719f", + "createdTime": "2020-11-10T07:31:59.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8a73f893-57c9-47f2-9367-7d33f597bfdb", + "createdTime": "2020-11-10T07:31:58.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c8206497-85f8-4a9e-b95f-50113e8722e9", + "createdTime": "2020-11-10T07:31:39.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea2c5ee8-4a95-4691-975e-59f4229507bb", + "createdTime": "2020-11-10T07:31:58.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d128e9f1-9437-4c1b-8e9d-0a276ef10b15", + "createdTime": "2020-11-10T07:31:56.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ec4fa042-f05e-427c-8d6f-9cfed0963e3d", + "createdTime": "2020-11-10T07:31:55.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "13eb8007-a457-462b-8271-c85d25665016", + "createdTime": "2020-11-10T07:31:55.418Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87e3bdf8-5497-472e-8aa0-1845d02da94e", + "createdTime": "2020-11-10T07:31:52.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b1b45cef-e679-4132-a890-c84e8b2fc361", + "createdTime": "2020-11-10T07:31:49.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ffe310e5-44c7-4bd8-8e1f-b32e8f2f1ae8", + "createdTime": "2020-11-10T07:31:48.705Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "07ca0fd2-d151-4831-b32f-877e95cb62a8", + "createdTime": "2020-11-10T07:31:32.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f0d11081-2512-4f09-b68c-683e54a9ad3d", + "createdTime": "2020-11-10T07:31:44.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "35100c8a-929d-4d57-bf1d-9784661350d3", + "createdTime": "2020-11-10T07:31:43.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "674f47f4-00c5-4f84-83d1-5a55835b8a35", + "createdTime": "2020-11-10T07:31:42.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c0fa6ba4-a8e8-4ff7-8602-4c3eeb5b8bb5", + "createdTime": "2020-11-10T07:31:37.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "76cb596a-090e-49ba-a716-8d529e597bfb", + "createdTime": "2020-11-10T07:31:35.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56f98e0e-6c69-479b-b680-4e3c5b638c5a", + "createdTime": "2020-11-10T07:31:34.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4faad438-dee1-4979-b156-5edb12898291", + "createdTime": "2020-11-10T07:31:30.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fbeabda5-05db-4b7f-ba15-7f24a9366e22", + "createdTime": "2020-11-10T04:13:26.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3e5a96bd-4ef4-4033-8a29-fe933b38998c", + "createdTime": "2020-11-10T04:13:15.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d989dc67-481c-477f-86ab-e1c56b31ed11", + "createdTime": "2020-11-10T04:13:06.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46a3c358-22f0-48a5-a991-872d74555d82", + "createdTime": "2020-11-10T04:13:03.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "497b2268-3bcb-4983-a5d2-e8f3bc7eba11", + "createdTime": "2020-11-10T04:12:53.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a839879b-6dab-4b9e-84fe-f30571559d2c", + "createdTime": "2020-11-10T04:12:23.059Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "42dcc3a1-348c-431a-9c0a-8d39f4ac999f", + "createdTime": "2020-11-10T04:12:13.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8a4041e-6553-449c-b078-c35d76298d81", + "createdTime": "2020-11-10T04:12:04.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "554126ce-57cd-419c-b20d-a8a79666b12b", + "createdTime": "2020-11-10T04:12:01.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aae4deef-f88c-448d-a8f6-7a5521c4d782", + "createdTime": "2020-11-10T04:11:52.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a5d1643-1aaf-42db-b44a-b38b23d9d48c", + "createdTime": "2020-11-10T04:07:45.651Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db57d78b-5f63-4dce-8b39-31063bcfc032", + "createdTime": "2020-11-10T04:07:33.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98d0065e-b321-42ae-a833-fd8033efd3ed", + "createdTime": "2020-11-10T04:07:11.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dcc9d3b2-4d74-4072-9726-18670571fc3f", + "createdTime": "2020-11-10T04:06:51.152Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93c82dc3-0e1b-4295-bc86-3c470a24aa95", + "createdTime": "2020-11-10T04:13:37.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "96e446c0-9b4f-4d49-840d-a5ede4baf7ca", + "createdTime": "2020-11-10T04:13:28.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6f810f41-29c9-4935-b48e-84b8d7959793", + "createdTime": "2020-11-10T04:13:23.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f31f33cc-487a-48a7-a2f0-29a79330812b", + "createdTime": "2020-11-10T04:13:19.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fefaa2a0-fd98-4356-82be-3029c4cbaf73", + "createdTime": "2020-11-10T04:13:18.724Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7990369d-80ca-44d2-8cd1-c8bab3546ed1", + "createdTime": "2020-11-10T04:13:12.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "62a3f3c9-0a48-4bf2-b195-cf78fa284789", + "createdTime": "2020-11-10T04:13:10.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "45dfedce-f6c8-4b38-8ea8-8abe4ab98079", + "createdTime": "2020-11-10T04:06:39.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8a9659c4-feca-44f3-b564-c357aaf51576", + "createdTime": "2020-11-10T04:13:08.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "15ff3e18-a862-4ac1-b1e0-41ebbd130efc", + "createdTime": "2020-11-10T04:13:01.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "751cd779-ff7f-451b-a96d-fee3e2e80897", + "createdTime": "2020-11-10T04:12:57.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba4c4337-7e4f-4819-9d7f-08e69f0a22dc", + "createdTime": "2020-11-10T04:12:56.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1f533147-d2a8-408b-84e2-e9b0689ab0b9", + "createdTime": "2020-11-10T04:12:49.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "58237da6-7434-4aa7-a54f-31ff285a8e64", + "createdTime": "2020-11-10T04:12:26.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5eb9553e-30eb-46b9-ba83-31f456bcafb2", + "createdTime": "2020-11-10T04:06:30.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "508a6cdf-e84b-4f17-93b3-d73896e89c7a", + "createdTime": "2020-11-10T04:12:24.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c9f5762c-3335-49cc-b400-cb2771fd41a8", + "createdTime": "2020-11-10T04:12:20.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e87e3e4b-4360-44e7-ae78-53ce11ee45c1", + "createdTime": "2020-11-10T04:12:17.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f85bbd9-147f-4422-8d5c-14c38207e1d0", + "createdTime": "2020-11-10T04:12:15.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6b0cdc1-b39a-4a40-a54f-3950de31a66f", + "createdTime": "2020-11-10T04:12:09.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "182049aa-66c5-4a82-9536-042ba5cfc308", + "createdTime": "2020-11-10T04:12:07.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "717934f7-e9e1-4563-bb54-08841e069978", + "createdTime": "2020-11-10T04:12:06.155Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "24907351-27e6-42ce-844a-513522043248", + "createdTime": "2020-11-10T04:12:00.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b8fe7fd-aaf1-4b18-9cfe-d6b284832ae4", + "createdTime": "2020-11-10T04:11:56.335Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56e2fd5d-4598-4222-8ab1-462b3f7d60f5", + "createdTime": "2020-11-10T04:11:55.057Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "69c16a2d-626f-4bc0-a31a-84345fcc5796", + "createdTime": "2020-11-10T04:11:49.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6d98191e-f4cb-4689-a15b-b1ebe10d4341", + "createdTime": "2020-11-10T04:06:20.596Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78998dfc-8908-4c47-a568-b104b66545ed", + "createdTime": "2020-11-10T04:06:12.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f4c6a40-c417-4a76-908a-6081f8a32c61", + "createdTime": "2020-11-10T04:06:09.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d084535-68e5-45bd-8c20-a717f287b928", + "createdTime": "2020-11-10T04:06:01.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07d362d2-cc1a-4dd5-852c-517ac1873cd1", + "createdTime": "2020-11-10T04:04:46.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5d47125b-dee3-4c30-9b43-478a6e6c40f0", + "createdTime": "2020-11-10T04:04:33.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b9e9316b-f609-4ba4-a852-123321c31ec0", + "createdTime": "2020-11-10T04:07:49.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ea510f7a-bcc9-4108-b9c8-68c4a41f1985", + "createdTime": "2020-11-10T04:07:47.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e37b6d8d-86be-456d-a3b4-c39bdee899b8", + "createdTime": "2020-11-10T04:07:41.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "57880d7c-963a-4962-a122-70eab1f9d97e", + "createdTime": "2020-11-10T04:07:37.684Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "96ed4136-26f8-4d61-899d-1a54102b3a01", + "createdTime": "2020-11-10T04:07:36.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a803bb71-fd7e-4b33-b3c0-2a24f2f44624", + "createdTime": "2020-11-10T04:07:28.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7bc4cf4-2b80-43af-a036-0c0155fd9b47", + "createdTime": "2020-11-10T04:07:26.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "98e18691-aa0f-407b-921d-e76d3705fca8", + "createdTime": "2020-11-10T04:04:25.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3693b22e-d0b8-4dd5-a927-d16d9ca497b1", + "createdTime": "2020-11-10T04:07:13.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b57c49c-1177-43fe-a3a7-9c11407209db", + "createdTime": "2020-11-10T04:06:48.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4b0ab5b4-e0df-4bcd-b18a-77c4d30cef35", + "createdTime": "2020-11-10T04:06:44.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b9342b5-7ff6-4f5f-aff3-70ec006cecff", + "createdTime": "2020-11-10T04:06:43.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a59fef80-2f27-41eb-b17a-66970f5cbd4c", + "createdTime": "2020-11-10T04:04:22.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0024e72c-7f42-4276-8a31-b596d36150d1", + "createdTime": "2020-11-10T04:06:35.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9434c109-7943-41f2-9745-629f4c949158", + "createdTime": "2020-11-10T04:06:34.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fb42a77a-7dd2-4d82-be65-8f562fbcbb7d", + "createdTime": "2020-11-10T04:06:32.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ad8178c-3a67-469f-b37e-f6057b5a5809", + "createdTime": "2020-11-10T04:06:28.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c97915cf-da50-4372-ad4b-087d37cc376a", + "createdTime": "2020-11-10T04:06:25.049Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3b5b1dd2-0a17-45a4-994c-7d3f3add3f62", + "createdTime": "2020-11-10T04:06:23.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "51406dec-45d3-4e28-aa6f-becd50d57402", + "createdTime": "2020-11-10T04:06:17.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0e4312a-42e5-4e3d-9acb-2119ec344461", + "createdTime": "2020-11-10T04:06:16.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0c712a58-464e-4d21-b883-40873a8590a6", + "createdTime": "2020-11-10T04:06:14.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "50e9ad93-f778-4431-88d9-5bd826671843", + "createdTime": "2020-11-10T04:06:08.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ddeb83c9-00b3-44ed-b422-d30620668a5a", + "createdTime": "2020-11-10T04:06:05.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8a7dc739-e787-4880-8df8-5bddf790f6a5", + "createdTime": "2020-11-10T04:06:04.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c73da653-ab7f-42db-a60e-fa7aaa1d8787", + "createdTime": "2020-11-10T04:04:11.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5ccbf3e-8401-4abd-b605-c7b1a1c5407b", + "createdTime": "2020-11-10T04:05:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5bd3115b-73bb-44be-b3f8-044244cfc6f0", + "createdTime": "2020-11-10T04:02:34.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbc191a3-4a32-4ff8-9e14-df08a1b43315", + "createdTime": "2020-11-10T04:04:50.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "82be63c5-776e-4fe4-852c-a698e70cf0d0", + "createdTime": "2020-11-10T04:04:48.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "07b90779-8ed3-4167-9b0b-b21aebf30fe0", + "createdTime": "2020-11-10T04:02:25.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa17d10e-33c6-4f93-b9f4-9000c51473f9", + "createdTime": "2020-11-10T04:04:42.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f50938ef-b5dc-4dd3-8fd4-292f63210d04", + "createdTime": "2020-11-10T04:04:38.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "afa623e6-07de-48cf-b35b-daa18d13b6ca", + "createdTime": "2020-11-10T04:04:36.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b067248-00dc-40d1-9374-e5271fef8123", + "createdTime": "2020-11-10T04:04:30.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6cbc05f0-b024-42c5-b2dd-4a395125712d", + "createdTime": "2020-11-10T04:04:28.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "dcaeb9f7-78b5-4c19-bc3a-2c5af887bb9c", + "createdTime": "2020-11-10T04:04:26.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "29ae06d9-b7b2-4b15-885b-90217dd79394", + "createdTime": "2020-11-10T04:04:20.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "732a85cb-648c-43a7-8ae3-f1f6654079da", + "createdTime": "2020-11-10T04:04:16.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e9a04789-fc24-496c-88d0-7b70c5915c85", + "createdTime": "2020-11-10T04:04:15.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf00aacf-0060-417f-954e-3e0dd4f55c94", + "createdTime": "2020-11-10T04:04:08.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "48e666dd-16fe-482b-bf53-c62a02b8100e", + "createdTime": "2020-11-10T04:02:17.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bee7898b-4783-420a-b4e6-c8aaf3a216d5", + "createdTime": "2020-11-10T04:02:16.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "672c36ee-e077-4bf9-afb4-0045cc0b32ec", + "createdTime": "2020-11-10T04:02:08.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "789f493d-ce75-4a20-9779-34320f257451", + "createdTime": "2020-11-10T04:02:38.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a61f2d35-03b9-4823-b012-5501bb80002c", + "createdTime": "2020-11-10T04:02:36.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "974f3f68-248e-47b3-bdb3-40162e72257d", + "createdTime": "2020-11-10T04:02:31.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "760dd77d-c9c2-4952-bea3-9224f2f3cf3e", + "createdTime": "2020-11-10T04:02:28.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7eb317a9-9e29-4c03-be10-0dd99e4b1322", + "createdTime": "2020-11-10T04:02:27.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "674cdedf-3f50-4633-a2e8-3cb32a9deccb", + "createdTime": "2020-11-10T04:02:22.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1c612714-3b24-4beb-9c25-a0c2f4634c77", + "createdTime": "2020-11-10T04:02:21.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c2b4f388-7225-4e68-b288-07e33f2b9614", + "createdTime": "2020-11-10T04:02:19.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28540f5c-c4d3-4540-87ea-ca269826b088", + "createdTime": "2020-11-10T04:02:14.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9dad551f-ff4f-4bf9-8b2e-cd17bbe3160c", + "createdTime": "2020-11-10T04:02:11.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad27bd56-e166-44b6-b44b-164af4e0ecdb", + "createdTime": "2020-11-10T04:02:10.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "de760bf5-1595-4944-a6cf-c302095bf2a6", + "createdTime": "2020-11-10T04:02:05.528Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "085e3548-ca04-4222-8ac6-a4978840c403", + "createdTime": "2020-11-10T02:57:02.183Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a8e2cd5c-a2e4-4733-a9a2-e6e69f4fb0ae", + "createdTime": "2020-11-10T02:56:55.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "56eed3d7-1cd7-442f-84a8-5ca38e4ed09a", + "createdTime": "2020-11-10T02:57:04.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6ff68f58-ed58-4e5a-a3d5-304f8e01ee72", + "createdTime": "2020-11-10T02:57:03.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "79f32683-96ad-41ba-98aa-29aca24884c8", + "createdTime": "2020-11-10T02:56:48.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c0126d59-3b00-459f-9627-fd193a4eac54", + "createdTime": "2020-11-10T02:56:54.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1c19300c-dbd0-4919-bdda-dc594ad9d447", + "createdTime": "2020-11-10T02:56:51.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0bc2d8d6-f710-4d0b-8589-e6d82be6f0eb", + "createdTime": "2020-11-10T02:56:50.626Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "66477380-aef9-49b7-ac42-8a85780bac07", + "createdTime": "2020-11-10T02:56:46.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74799031-74dd-488f-a1be-91fce5ee0c75", + "createdTime": "2020-11-10T02:55:13.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "987b82b3-0e3d-4c29-9e6b-e961893b9b22", + "createdTime": "2020-11-10T02:55:14.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "71af31a9-8647-4c65-a6b9-82197162879b", + "createdTime": "2020-11-10T02:55:14.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1857ab1c-cce6-4525-b4a2-bef4acb8f162", + "createdTime": "2020-11-10T02:55:12.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "869d4fcc-40f4-452b-8ecf-848b9ce80801", + "createdTime": "2020-11-10T02:55:02.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7b9d650-6e6d-49a7-bea3-bfd8bd9a20c0", + "createdTime": "2020-11-10T02:55:06.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a7df00a0-692c-4d77-add8-f93961996e79", + "createdTime": "2020-11-10T02:55:05.981Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d21f0af3-162d-4487-b1f7-d302c2a94143", + "createdTime": "2020-11-10T02:55:01.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ebf2eac4-4532-4aee-a9f7-4d8035d1d7b7", + "createdTime": "2020-11-10T00:43:05.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "12b1823b-1c44-40f5-adc7-02f0b9748a23", + "createdTime": "2020-11-10T00:43:05.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "9954ba4e-4fee-4e81-a98a-94595012be9e", + "createdTime": "2020-11-10T00:43:04.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "71c5df60-2233-4e41-8f04-dfcc67a4fd90", + "createdTime": "2020-11-10T00:43:04.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48dbeba4-f033-421c-84a2-08c358cda654", + "createdTime": "2020-11-10T00:08:43.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "0129d9d3-0766-4945-bbca-f74f3d392b0f", + "createdTime": "2020-11-10T00:08:43.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "40842d83-de7e-4fbc-835a-bd095c776680", + "createdTime": "2020-11-10T00:08:42.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "e351e0b7-ceb6-4ee1-93ed-179d7c4ccee2", + "createdTime": "2020-11-10T00:08:42.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94be39e2-6188-40fe-bf87-a85d7825f26b", + "createdTime": "2020-11-09T23:55:58.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "300c0ec1-463c-48bd-a72f-0775f7bb10d7", + "createdTime": "2020-11-09T23:55:57.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "a68b2ec7-7131-48e3-9422-8ca37c5f948b", + "createdTime": "2020-11-09T23:55:56.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "5cee8523-0fe3-4764-9f91-87d666ae9a51", + "createdTime": "2020-11-09T23:55:56.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5eeea90c-b77d-4205-83d9-0a75edc579e6", + "createdTime": "2020-11-09T23:36:05.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "b9b0b3a4-95a1-4f40-8377-a0486d8caf6b", + "createdTime": "2020-11-09T23:36:04.944Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "64d1288a-5da6-46e2-8fe6-d94206b693e9", + "createdTime": "2020-11-09T23:36:04.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "69b07110-88a5-43fa-9ad5-558dd3487cf4", + "createdTime": "2020-11-09T23:36:03.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0634523-1b4f-4566-918c-053d618ca3d0", + "createdTime": "2020-11-09T23:15:22.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "This is a comment" + } + }, + { + "feedbackId": "5cca7ff5-be51-45cb-a52b-8c3d9752d6df", + "createdTime": "2020-11-09T23:15:21.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 4 + } + }, + { + "feedbackId": "7be09036-81b7-491c-9f3b-60be6cb75325", + "createdTime": "2020-11-09T23:15:21.4Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-05T00:00:00Z", + "value": { + "changePointValue": "ChangePoint" + } + }, + { + "feedbackId": "6236c6e4-88de-4897-8a33-c94cc2207fa4", + "createdTime": "2020-11-09T23:15:20.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Cairo", + "category": "Home \u0026 Garden" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06af0cb4-3c03-4a5b-b260-ddae3c3a1fa4", + "createdTime": "2020-11-09T09:16:20.608Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6b52f0bc-8449-4b6c-b4d1-2f39dd4c646c", + "createdTime": "2020-11-09T09:16:19.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3e7b804-67bc-472a-8feb-e4da569cdcdd", + "createdTime": "2020-11-09T09:16:19.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f7691527-ae9d-4f54-a9b4-c85b084102c2", + "createdTime": "2020-11-09T09:16:18.628Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5566cac3-fe26-4ead-b99f-b150ef7b67d3", + "createdTime": "2020-11-09T09:12:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "009749ba-551c-406c-91cb-ac8f143b8ebf", + "createdTime": "2020-11-09T09:12:41.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c8b94161-f21b-4497-b12d-a3d535947c30", + "createdTime": "2020-11-09T09:12:40.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d958477e-15a2-47df-9c75-9ff2c28a46fe", + "createdTime": "2020-11-09T09:12:40.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c61a349-f7ed-4666-b7c5-f681845daba0", + "createdTime": "2020-11-09T09:01:21.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "72eb64dc-aa71-46d7-936e-05c9528fca38", + "createdTime": "2020-11-09T09:01:20.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "22672e16-b9c5-4aef-b970-ff9a3e5c374a", + "createdTime": "2020-11-09T09:01:19.849Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f60f73f6-dd1a-4508-af0b-bb5b57aa85e9", + "createdTime": "2020-11-09T09:01:19.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb4e7c2a-f521-411b-83c4-1f4eed2e245f", + "createdTime": "2020-11-09T08:57:44.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a6699ef0-3a74-4e4f-ac22-8225804254af", + "createdTime": "2020-11-09T08:57:43.966Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9bed5812-36dd-41d4-b131-ce9401d105e5", + "createdTime": "2020-11-09T08:57:43.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "84556377-8faa-4485-9077-460f76567049", + "createdTime": "2020-11-09T08:57:42.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "952698a2-3eaf-4fb9-941d-94b76a01dedc", + "createdTime": "2020-11-09T08:48:32.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c1194549-79f4-4101-bfee-c237fef7e359", + "createdTime": "2020-11-09T08:48:32.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6f8ed9c8-1c3d-427f-b531-3017cbc24e97", + "createdTime": "2020-11-09T08:48:31.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c6e1151d-6bff-473f-a2a4-48a29d37b856", + "createdTime": "2020-11-09T08:48:30.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86d9f154-c9fb-4349-8a21-5418ac6ab723", + "createdTime": "2020-11-09T08:37:28.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "531c5b21-b5db-402a-ab47-1822ff548cc0", + "createdTime": "2020-11-09T08:37:27.526Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e526b66-8a41-4ec6-a435-c5d1e8edada6", + "createdTime": "2020-11-09T08:37:26.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e0ff2e54-7429-4b7f-8635-b61535112d25", + "createdTime": "2020-11-09T08:37:26.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "39ec055f-54a0-4273-9c7d-906ef960e96f", + "createdTime": "2020-11-09T08:33:54.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "746d9046-dbad-4c28-9b08-e578f5dc1e2d", + "createdTime": "2020-11-09T08:33:54.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2b2e8c82-d766-4f9c-9bd9-87d5c0990ccc", + "createdTime": "2020-11-09T08:33:53.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3aea6a4-efc0-4f02-8062-447d728eac0d", + "createdTime": "2020-11-09T08:33:52.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f7f39c6-0067-418e-93b0-244a5ae8b34e", + "createdTime": "2020-11-09T08:26:33.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fa849ca5-4947-41ff-8fd3-8947b269d538", + "createdTime": "2020-11-09T08:26:32.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e36b75d5-e822-46a7-a94e-0d31ed114790", + "createdTime": "2020-11-09T08:26:32.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b8bfb3f-6c80-4c55-8076-f4f0c5bef1ff", + "createdTime": "2020-11-09T08:26:31.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f47c9a4-e4c5-442f-8c97-6888e88462f4", + "createdTime": "2020-11-09T08:20:59.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "941ff326-ce98-468d-b048-a9097c46a76f", + "createdTime": "2020-11-09T08:20:58.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f5c13cb0-d986-46f4-b4f3-4d8558d12cf9", + "createdTime": "2020-11-09T08:20:57.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "10a935ec-0ceb-4ea1-98e0-2d28edd91213", + "createdTime": "2020-11-09T08:20:57.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b3f438b-c723-4413-bb91-1be47865ffef", + "createdTime": "2020-11-06T21:49:44.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e5959f0-2524-4c7b-afe3-84734f9693b6", + "createdTime": "2020-11-06T19:11:11.046Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ba8f8aff-606b-4fd6-82b7-b286857bdc6c", + "createdTime": "2020-11-06T19:10:19.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c824f729-41f6-4221-8b62-c9cf7878f0a6", + "createdTime": "2020-11-06T19:06:59.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "21c66fc7-96fd-4f15-8a12-640b2117f1c3", + "createdTime": "2020-11-06T12:29:23.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c2d46d0-82ac-4ec9-8e19-85f2b83115cb", + "createdTime": "2020-11-06T09:18:16.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e106f2b1-0632-4172-adb7-5e49118c4f99", + "createdTime": "2020-11-06T09:18:15.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8edbdb4d-b5a0-4776-9d99-4859c4d2e825", + "createdTime": "2020-11-06T09:18:15.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "882ac7fe-2081-4937-924a-bd1d20ace1c2", + "createdTime": "2020-11-06T09:18:14.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "29673365-25ec-48bf-976b-adc8df7c2453", + "createdTime": "2020-11-06T09:14:07.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "add96275-baad-4ca7-905b-a39941131e6e", + "createdTime": "2020-11-06T09:14:07.171Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2d34d07f-a87f-45d5-9be4-6211504da90f", + "createdTime": "2020-11-06T09:14:06.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "80e67d8f-9986-497b-8c9d-78f58d1056f0", + "createdTime": "2020-11-06T09:14:06.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8929fa10-0942-4f5e-9c23-8275e3b53b22", + "createdTime": "2020-11-06T09:05:12.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0225d2e7-16a5-4c32-a971-ecf0e9e0280c", + "createdTime": "2020-11-06T09:05:12.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "076ba814-3c3e-4d0a-9ddd-f9697d6e4d0d", + "createdTime": "2020-11-06T09:05:11.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cf3d3877-45e6-4b6d-8b3b-70d375c43f09", + "createdTime": "2020-11-06T09:05:11.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "161ba4e7-b21f-418a-bb3f-02a286aedae9", + "createdTime": "2020-11-06T09:00:45.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8d6c7fd4-bc2d-41e2-9901-ad6643979721", + "createdTime": "2020-11-06T09:00:45.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "41050f71-439d-491f-930f-6606747d8a4e", + "createdTime": "2020-11-06T09:00:44.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ffe82c33-a614-482d-8ac0-7dabd2ec1107", + "createdTime": "2020-11-06T09:00:44.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4dd32dc2-ca58-41ee-a15d-43d2a4a4d3f7", + "createdTime": "2020-11-06T08:50:02.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9d85e0fc-121a-4491-bb3d-d3c5214dd27d", + "createdTime": "2020-11-06T08:50:01.778Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4bf65be4-8a93-425f-8df2-02f0671843bf", + "createdTime": "2020-11-06T08:50:01.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8b7084d1-1ddc-45f8-8b84-2a56089b420c", + "createdTime": "2020-11-06T08:50:00.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a8028ff4-5b2b-41ad-8358-35a7a765acfa", + "createdTime": "2020-11-06T08:37:48.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "613d268e-6a85-44af-8852-6aaad5ea0623", + "createdTime": "2020-11-06T08:37:47.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "799682e6-792d-40ea-8abb-83cefdc56f5b", + "createdTime": "2020-11-06T08:37:46.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ed871cc6-5fa5-48d9-80ca-a016399e3dfe", + "createdTime": "2020-11-06T08:37:46.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "baf6c686-1e2b-42e5-994b-3c6f50545d07", + "createdTime": "2020-11-06T08:33:57.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f8fc448f-90b3-45ec-935d-0bafdb1b1545", + "createdTime": "2020-11-06T08:33:57.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8adf3615-02b3-4e9d-afcc-2a0859ceb427", + "createdTime": "2020-11-06T08:33:56.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "aacb3484-4db7-4c9c-8019-868191dd80c8", + "createdTime": "2020-11-06T08:33:56.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b131120-265b-4944-aa0e-b0bf613861b6", + "createdTime": "2020-11-06T08:25:08.863Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "21d62533-5274-4e0f-8008-79ad4ec63f67", + "createdTime": "2020-11-06T08:25:08.213Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "90aa0366-b43b-4ba5-ae69-188470e1bcf4", + "createdTime": "2020-11-06T08:25:07.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59304e75-c8f6-4a71-8663-d680ebcd5c63", + "createdTime": "2020-11-06T08:25:07.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76c54142-2b6a-4bb1-903e-d038340586e5", + "createdTime": "2020-11-06T08:21:30.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "491bdd96-58fe-4b9d-ad94-eab212c017da", + "createdTime": "2020-11-06T08:21:29.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f139ed2a-6ef0-4d22-a558-2e3a94cafe1b", + "createdTime": "2020-11-06T08:21:29.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "58400d21-544a-4ba2-92a8-d74917b24d2a", + "createdTime": "2020-11-06T08:21:28.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "765b2e41-65c2-4eae-ace9-7e170338d821", + "createdTime": "2020-11-05T18:41:45.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98755494-07d8-404c-b195-8e33ba065dd9", + "createdTime": "2020-11-05T18:41:36.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e02a348-1d75-448a-9767-da45ffd0489b", + "createdTime": "2020-11-05T18:41:28.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5710b0a0-ec4f-4e64-ae0e-bcf50fafa0d4", + "createdTime": "2020-11-05T18:41:26.413Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3ba70cd-70a1-4b2f-b056-4ddc38f8f5ad", + "createdTime": "2020-11-05T18:41:18.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "928b8694-f677-4c1a-9602-46875600c077", + "createdTime": "2020-11-05T18:39:30.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05ae85ab-a8c2-4866-8f45-4a8ed6f0609a", + "createdTime": "2020-11-05T18:39:20.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48b442ca-7057-4641-9dc5-eec44bc48d5f", + "createdTime": "2020-11-05T18:39:12.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7758c71-f1d2-4b5e-8288-2fce1b273070", + "createdTime": "2020-11-05T18:39:09.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e2796b9c-6d78-4335-ad64-ebf47d2750bb", + "createdTime": "2020-11-05T18:38:59.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f75fce83-6cf3-4b42-8939-8499c2c413fa", + "createdTime": "2020-11-05T18:37:55.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6fee08ea-82ec-4b04-83b8-c629da10134e", + "createdTime": "2020-11-05T18:37:42.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1b41e77-e6b6-4a4a-a4f8-87fa23531d15", + "createdTime": "2020-11-05T18:37:33.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8d4cae6-225f-4ea6-83cb-6f43cc49bbb4", + "createdTime": "2020-11-05T18:37:32.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "080a9943-9de4-4524-af96-0cb371e30c26", + "createdTime": "2020-11-05T18:37:31.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b9d9c25-58d5-4e6f-ac4c-7059067d5c94", + "createdTime": "2020-11-05T18:37:21.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bf4d367b-f79e-477a-a601-02c43c466656", + "createdTime": "2020-11-05T18:41:49.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0a0f9c7a-7cbb-4da1-8569-a666b1b125dd", + "createdTime": "2020-11-05T18:41:47.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b31f0eef-3893-4540-b1c5-236eb033c93e", + "createdTime": "2020-11-05T18:41:43.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0cbd1653-53a4-4ac8-a2d9-59adfb98cc9f", + "createdTime": "2020-11-05T18:41:40.365Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72608450-8e7b-4c37-8b62-aa8552ffff0f", + "createdTime": "2020-11-05T18:37:19.263Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28cda11c-d5f2-4c1a-8d1d-8f79d7863c86", + "createdTime": "2020-11-05T18:41:38.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "652b85e8-4d08-4b8f-b6eb-afece1afbbba", + "createdTime": "2020-11-05T18:41:34.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "51a31322-3820-44a4-9f98-d7fad06fe817", + "createdTime": "2020-11-05T18:41:31.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "959545e7-d8a1-418b-9b8a-815efaaff1d5", + "createdTime": "2020-11-05T18:41:29.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2447ec84-d3e7-4be0-8698-b89692ef833b", + "createdTime": "2020-11-05T18:41:25.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5df20aa5-c0c1-4126-ae69-2a046605d499", + "createdTime": "2020-11-05T18:41:21.964Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aef6dd68-cd40-43a2-89b7-a104a15808ba", + "createdTime": "2020-11-05T18:41:20.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28d0fb7d-0758-47aa-afba-31a6f603d408", + "createdTime": "2020-11-05T18:41:16.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "b281c657-06f1-4696-ab4b-2f48f8a2c7b6", + "createdTime": "2020-11-05T18:37:08.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ac6a1b1c-befc-478b-9599-c51ecf1ea116", + "createdTime": "2020-11-05T18:37:06.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3eb5b6b7-9466-47f2-a1a6-2cd009df32c8", + "createdTime": "2020-11-05T18:37:04.135Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0686e167-776b-4b7d-a981-6ac7e9542f66", + "createdTime": "2020-11-05T18:39:34.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "9cc07e3f-e9bf-4741-aaf6-836a3b7992b7", + "createdTime": "2020-11-05T18:36:56.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2156ad0e-f0a4-469c-a7b0-d2e7e5228f97", + "createdTime": "2020-11-05T18:39:32.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "db26d877-7ad0-4a5a-884c-5a0f5739921b", + "createdTime": "2020-11-05T18:39:27.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "93a45963-9b71-4650-8d3d-dbeb7c6c7f0b", + "createdTime": "2020-11-05T18:39:24.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bc2d0259-8189-477a-b55d-aa5106c9d606", + "createdTime": "2020-11-05T18:39:23.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8750222-c513-4845-98a3-02eff88cd1c1", + "createdTime": "2020-11-05T18:39:17.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e16734d7-1c2e-453c-a001-f80472a60660", + "createdTime": "2020-11-05T18:39:16.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2a48aba3-3430-46d2-9f59-86470272135d", + "createdTime": "2020-11-05T18:39:14.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c5200eae-c771-4211-86e2-dbdd3ff66fa0", + "createdTime": "2020-11-05T18:39:07.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "542e53db-68cb-4552-9e1a-6de46685af0a", + "createdTime": "2020-11-05T18:39:04.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "66703d2d-3069-4310-818a-84591fffe9d2", + "createdTime": "2020-11-05T18:39:02.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "14ddf199-c310-4881-9fde-1b80b4d81afd", + "createdTime": "2020-11-05T18:36:54.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f53c06f-09d7-4c25-8288-86004deb90a3", + "createdTime": "2020-11-05T18:38:55.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "100f3a40-2223-4a2d-9ca1-21401b0ce4c0", + "createdTime": "2020-11-05T18:36:53.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "82d33c79-ddeb-462f-ac3f-eb390c949c88", + "createdTime": "2020-11-05T18:37:59.032Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "da510259-bd1a-4908-adfe-19895b74e5db", + "createdTime": "2020-11-05T18:37:57.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d1d176b4-50ea-44d2-93f9-8d9d6b4db960", + "createdTime": "2020-11-05T18:37:52.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d6bca95e-7883-4d2b-bb67-a34a2321fc80", + "createdTime": "2020-11-05T18:37:47.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "73879a33-5f88-435f-8d0f-e9b31b2a930d", + "createdTime": "2020-11-05T18:37:46.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d4983df6-9066-4da4-b202-65f4343e5de2", + "createdTime": "2020-11-05T18:37:39.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e439564-e151-42b5-b979-d237dabc375c", + "createdTime": "2020-11-05T18:37:37.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e0464761-a59d-45a1-9c23-a97aea879984", + "createdTime": "2020-11-05T18:37:37.036Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "33eb253a-b2fb-489a-9048-3eb478b0b65f", + "createdTime": "2020-11-05T18:37:35.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f4db4366-0b55-4e95-8e4a-ca853d647224", + "createdTime": "2020-11-05T18:37:34.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f42bcbe3-a532-4b61-a207-89d019f8efca", + "createdTime": "2020-11-05T18:37:29.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6763a77f-b2f3-48cc-ad4d-220ddf60e813", + "createdTime": "2020-11-05T18:37:29.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "74c6f86c-76cd-4d47-a96e-3fcd81ed46b0", + "createdTime": "2020-11-05T18:37:26.425Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b148cdb5-fc2a-4a7d-aac4-d5f62ebe510a", + "createdTime": "2020-11-05T18:37:25.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87adb3ee-fb03-4810-b41b-72fcdd9c7d24", + "createdTime": "2020-11-05T18:34:39.494Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "739e08e5-0212-4a1f-a935-643108b44dfc", + "createdTime": "2020-11-05T18:37:25.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "92615749-5014-4e25-98cf-35d8c84c98a3", + "createdTime": "2020-11-05T18:37:23.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "814aca7d-6ab2-41a5-b2b1-b57ff1a14545", + "createdTime": "2020-11-05T18:37:18.888Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d4a3f0ad-339a-4fc5-bfb3-2e923a2780db", + "createdTime": "2020-11-05T18:37:15.143Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4a99cd00-2eb5-4e52-9eb1-db3fa722d1e0", + "createdTime": "2020-11-05T18:37:13.103Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "430b664c-2cff-4062-a4f1-28c7861b5f25", + "createdTime": "2020-11-05T18:37:10.284Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "565c4b3e-8ed6-416c-acb1-21ca0905e359", + "createdTime": "2020-11-05T18:37:07.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4183941d-f221-4b8b-b759-6562dba75fa4", + "createdTime": "2020-11-05T18:37:05.606Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b2f6590-65ac-43a8-b7db-ed4020c88b41", + "createdTime": "2020-11-05T18:37:04.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2ced7f49-9b37-4dd3-8323-aeba26cb06c7", + "createdTime": "2020-11-05T18:37:00.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d79883ec-f2bf-4b1a-aa3e-447159235dc8", + "createdTime": "2020-11-05T18:37:00.341Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87e48f1c-6f90-4386-9c4f-ffd8ae933b39", + "createdTime": "2020-11-05T18:36:58.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9546b065-a79d-4125-8053-5f79312def02", + "createdTime": "2020-11-05T18:36:57.254Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "310b0ad9-c1c0-419a-b37d-8295c3a1cb05", + "createdTime": "2020-11-05T18:36:56.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d5ba0956-ace0-47b2-b24b-7df3df123af0", + "createdTime": "2020-11-05T18:36:54.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "41d3c0a9-2871-4d63-80ab-daae6e5421ad", + "createdTime": "2020-11-05T18:36:54.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b7a47610-87b3-4882-a035-e01e69b72946", + "createdTime": "2020-11-05T18:36:52.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8a4d1842-2b62-4042-ad60-29ea895f1a95", + "createdTime": "2020-11-05T18:34:36.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "608f3ff3-ea4f-4481-91c2-abe373c82569", + "createdTime": "2020-11-05T18:34:11.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f81f8566-3650-4632-9975-5063018864a4", + "createdTime": "2020-11-05T18:35:48.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e0176694-0271-4132-861e-4c69437a7130", + "createdTime": "2020-11-05T18:32:39.556Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "31183106-4229-4ace-a473-c4c5c3d2bb97", + "createdTime": "2020-11-05T18:32:28.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df0da438-6255-413b-be69-03c70ad06fcd", + "createdTime": "2020-11-05T18:34:46.135Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b2292c2b-fefe-4a1d-8c29-aee88e50a1d6", + "createdTime": "2020-11-05T18:34:34.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0680a26c-4243-49c4-b825-09c03f7edd5e", + "createdTime": "2020-11-05T18:34:25.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1225f61b-710c-47f0-bf0c-d5178f0567fa", + "createdTime": "2020-11-05T18:34:23.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "190fd8e4-d223-43f9-8489-9beadf72f985", + "createdTime": "2020-11-05T18:32:19.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3885645a-c95a-40ea-8947-566a7a24e689", + "createdTime": "2020-11-05T18:34:08.168Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "425681a9-4ee9-4c12-996c-0439aac43edb", + "createdTime": "2020-11-05T18:32:16.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65c66a88-5672-46f5-8b96-a1d7ebefc5cc", + "createdTime": "2020-11-05T18:32:44.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4d7b25eb-48a9-4f7a-93df-02c8224f662f", + "createdTime": "2020-11-05T18:31:59.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34de7911-fd62-4572-a5d0-6a7f9a737a6c", + "createdTime": "2020-11-05T18:32:41.84Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "137c1024-427e-42ae-9f56-7cdcde5b0474", + "createdTime": "2020-11-05T18:32:37.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e650e956-ab98-4b8d-89ab-a09f3483bb60", + "createdTime": "2020-11-05T18:32:32.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ca6272d8-66ad-4bff-b97e-19b7e1dcd8ee", + "createdTime": "2020-11-05T18:32:31.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "46319554-130f-4b50-a5ee-4900f54fa3d7", + "createdTime": "2020-11-05T18:32:25.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fad29962-1903-4657-8e4f-87fd4a901490", + "createdTime": "2020-11-05T18:32:23.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "48f5e3c9-6661-418f-bd73-056ed140a57e", + "createdTime": "2020-11-05T18:32:21.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a65459cb-447e-4a22-ba96-9ebd2db5b646", + "createdTime": "2020-11-05T18:32:13.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d57c8360-e296-49df-8bba-bcd2b26ec39a", + "createdTime": "2020-11-05T18:32:03.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fcfc3ebc-a34b-471c-8d40-dbd1e7098dee", + "createdTime": "2020-11-05T18:32:01.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1a05a169-c547-4ef0-9596-4252377d835e", + "createdTime": "2020-11-05T18:31:56.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0b49fbad-84e0-4099-8a03-58af76138d19", + "createdTime": "2020-11-05T17:41:13.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "2eb19ce8-d5dd-4ef6-8b90-078a4fb92919", + "createdTime": "2020-11-05T17:41:13.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "ed48a223-32c9-4fe9-8b4e-eb11ffaba9c5", + "createdTime": "2020-11-05T17:41:13.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-05T17:41:12.437Z", + "endTime": "2020-11-05T17:41:12.437Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "194f2993-24b2-4f1c-82ac-85bbe52eb4b6", + "createdTime": "2020-11-05T17:41:12.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-05T17:41:12.437Z", + "endTime": "2020-11-05T17:41:12.437Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fdd9937a-8341-442a-8d5e-ab3bff373e00", + "createdTime": "2020-11-05T17:41:12.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": null, + "endTime": null, + "value": { + "commentValue": "my comment" + } + }, + { + "feedbackId": "b6d4a319-db2e-4b3d-bfa8-ee64c2a79b19", + "createdTime": "2020-11-05T17:41:11.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 5 + } + }, + { + "feedbackId": "2552a626-0746-48e6-bbcc-e79e7fee99f3", + "createdTime": "2020-11-05T17:41:11.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-07-05T17:41:09.653Z", + "endTime": "2020-11-05T17:41:09.653Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "38898d0c-5140-4b30-979c-84cd4fdcf0c7", + "createdTime": "2020-11-05T17:41:10.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-07-05T17:41:09.653Z", + "endTime": "2020-11-05T17:41:09.653Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8f322589-9d0b-4dba-9017-bb918cbfc927", + "createdTime": "2020-11-05T09:35:13.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6e06af66-c7c4-4a27-bde7-5899e240f12f", + "createdTime": "2020-11-05T09:35:13.033Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1446642a-0afa-4b43-8a82-f266e622c7a6", + "createdTime": "2020-11-05T09:35:12.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fe98c9dc-df9c-48a1-b987-cbfe8163a33c", + "createdTime": "2020-11-05T09:35:11.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd748430-91ec-4869-88e4-b85ae5b1189a", + "createdTime": "2020-11-05T09:31:15.761Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e45c7c18-a562-4869-89d8-ddf6a2f6cf29", + "createdTime": "2020-11-05T09:31:15.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e9366de-98e9-4cde-a5af-3fddd40fc080", + "createdTime": "2020-11-05T09:31:14.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a96b10bb-b91e-48f0-a5e7-da0853c4acf1", + "createdTime": "2020-11-05T09:31:13.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "756f35b9-0b36-4130-9bdc-7f0767f507c7", + "createdTime": "2020-11-05T09:09:55.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d65b8cfb-f62f-4b1c-bba1-643a6afb8356", + "createdTime": "2020-11-05T09:09:55.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5c25f5d4-ff7f-41e0-8600-761db635f72a", + "createdTime": "2020-11-05T09:09:54.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54bff7a4-cf38-4ab2-a264-fc06285f6846", + "createdTime": "2020-11-05T09:09:54.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a220691-b764-44d7-b52b-7d77064ab445", + "createdTime": "2020-11-05T09:06:27.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9c89ca8a-9b5f-43fa-984d-0d36aa4de627", + "createdTime": "2020-11-05T09:06:26.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4f885c8-49c4-44f2-8bcb-6a6bebcb10e1", + "createdTime": "2020-11-05T09:06:26.347Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1e572577-a72a-4586-aab6-e99d1e9ac7ac", + "createdTime": "2020-11-05T09:06:25.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c4736aad-dc7c-4261-b24a-531b55cad030", + "createdTime": "2020-11-05T08:50:48.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fb4f9f0c-af07-4670-b24b-888ed334dd82", + "createdTime": "2020-11-05T08:50:47.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "30d35cd3-faf6-46be-b119-09a1232bde7b", + "createdTime": "2020-11-05T08:50:47.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e237805-80a4-4a8b-9a61-c0163cbe28a6", + "createdTime": "2020-11-05T08:50:46.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9b0a03e-1f8d-40f9-a44e-9b000661f7b4", + "createdTime": "2020-11-05T08:39:02.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6532f7b2-5c8f-4075-a997-91da3cc22be3", + "createdTime": "2020-11-05T08:39:02.003Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e49ce86e-703f-4d2a-8a8a-797d3f76b9de", + "createdTime": "2020-11-05T08:39:01.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "99f05005-29ce-41ae-80ca-057f8e20fa2c", + "createdTime": "2020-11-05T08:39:00.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db890746-bfe5-4d01-9752-fa431fb2df1a", + "createdTime": "2020-11-05T08:35:17.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b32ffa3b-9acf-4e40-98fe-fd427c9557a9", + "createdTime": "2020-11-05T08:35:16.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "481c0c6d-fff1-41a3-9cfd-5bef31f75101", + "createdTime": "2020-11-05T08:35:16.279Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ee21c5c2-9bdb-43ba-ac84-3b3bf228b888", + "createdTime": "2020-11-05T08:35:15.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e391717a-adb6-4b83-89d2-504d20cc2a1d", + "createdTime": "2020-11-05T08:26:21.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3bed1ae4-ceb9-41d2-9b9f-e35e54d9bab1", + "createdTime": "2020-11-05T08:26:20.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b6b89cfb-8061-45f7-a28a-a93315da4b3d", + "createdTime": "2020-11-05T08:26:20.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "460390fc-8434-4a10-953d-197c1108af8b", + "createdTime": "2020-11-05T08:26:19.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c16e380-39f1-4132-b06d-389dd0c14a4b", + "createdTime": "2020-11-05T08:22:32.592Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03332abb-5009-49a9-9484-0ae4ee4371b8", + "createdTime": "2020-11-05T08:22:31.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "241b4d00-fa91-4448-b811-f38779ee4eba", + "createdTime": "2020-11-05T08:22:31.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "845b004c-8a4a-4344-91ad-0704e130fe1a", + "createdTime": "2020-11-05T08:22:30.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0eb3a91b-81d5-40a2-9497-68a06e08780e", + "createdTime": "2020-11-04T22:42:14.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "293807e2-12c7-4503-b31c-3367db9011c1", + "createdTime": "2020-11-04T22:41:59.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7a548d9-f904-4fa6-b3ba-fb1eccf01513", + "createdTime": "2020-11-04T22:41:50.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1b7b83d-8df7-4c43-9436-bdb480f4abd9", + "createdTime": "2020-11-04T22:41:48.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6bf74e4-b833-47c0-92a3-9601d5951b75", + "createdTime": "2020-11-04T22:41:41.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea382ad1-53c1-41b5-8db5-2974af1caebe", + "createdTime": "2020-11-04T22:41:37.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73c825f8-5b2a-45cb-af8d-8d4d094da7a2", + "createdTime": "2020-11-04T22:41:31.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8931a485-49f3-4a21-89b9-65f93efc0521", + "createdTime": "2020-11-04T22:41:24.988Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1b76ea1-2716-48b2-b040-ccda49f9d2de", + "createdTime": "2020-11-04T22:41:22.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "93277c43-7fc5-4192-bfb5-96a6ef8241b7", + "createdTime": "2020-11-04T22:41:14.163Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "05420d20-57ff-4ef8-bc6f-1a173be1c80e", + "createdTime": "2020-11-04T22:42:18.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "03925816-70da-4af7-8856-d12e04e6ceaa", + "createdTime": "2020-11-04T22:42:16.251Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1436b46b-1a15-44ac-9ec5-24c451a3ac19", + "createdTime": "2020-11-04T22:42:06.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ee6c273-cbc6-4e4a-82aa-bedaee90d837", + "createdTime": "2020-11-04T22:42:03.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5bd7fb26-2519-45cf-bf58-76f1a38ced60", + "createdTime": "2020-11-04T22:42:02.031Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d92d28a8-b1b7-459a-9d01-c05616dc8478", + "createdTime": "2020-11-04T22:41:56.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "743f35c2-46da-4b0b-98d4-8d4b2ff7ec8d", + "createdTime": "2020-11-04T22:41:54.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "23275cf6-c8a0-4d0b-aecf-997710f11bb9", + "createdTime": "2020-11-04T22:41:52.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "11c0e6a3-ce4b-4aef-b46b-e29495c66e33", + "createdTime": "2020-11-04T22:37:29.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "936ca0c2-519f-4d50-a387-9903eb3b7c58", + "createdTime": "2020-11-04T22:41:46.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6422985e-8dd6-4531-90bc-2a1a8f4d15f4", + "createdTime": "2020-11-04T22:41:45.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2005d849-d598-4c3c-b83b-2be12cc774be", + "createdTime": "2020-11-04T22:41:43.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d86ebccb-cc26-4dbb-bbf1-edf5439a1d42", + "createdTime": "2020-11-04T22:41:42.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2104bcc6-8890-44a4-b9f4-f9dbd1563fdd", + "createdTime": "2020-11-04T22:41:41.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ea539117-65b1-4501-870e-2d1f6571d7b1", + "createdTime": "2020-11-04T22:41:39.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "59f01137-f018-46a9-8810-c77ba98db2ea", + "createdTime": "2020-11-04T22:41:36.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5f1cd835-e20e-4e32-85e8-de175a4fc82e", + "createdTime": "2020-11-04T22:41:34.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "24f3160b-66c2-4a5b-b13e-ece934d20b4b", + "createdTime": "2020-11-04T22:41:34.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6c2e56af-7b41-4ea7-a372-0d9f4372c993", + "createdTime": "2020-11-04T22:41:29.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ee9e8adb-38c3-48b3-9372-0ea149725b94", + "createdTime": "2020-11-04T22:41:27.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "861ba46b-1069-4bae-acc6-8dfbb978ce65", + "createdTime": "2020-11-04T22:41:26.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f3c708a8-9a55-48af-b9b7-e2a085b81036", + "createdTime": "2020-11-04T22:41:21.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a5ab44c-6e28-40d8-912a-fb6bda486a25", + "createdTime": "2020-11-04T22:41:18.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cabc4d32-0179-40c3-8790-3974464b9c2b", + "createdTime": "2020-11-04T22:41:17.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "57c2c1d0-4685-45aa-aa8d-b81d5ac53605", + "createdTime": "2020-11-04T22:41:11.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d9c88b96-6c84-4407-9ad2-c00f534799ec", + "createdTime": "2020-11-04T22:37:19.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f7f8eec-98d1-492e-b35b-87437ceb69a9", + "createdTime": "2020-11-04T22:37:11.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43058c61-1cd9-4a9a-bf3a-3f1620673487", + "createdTime": "2020-11-04T22:37:08.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "be575b67-65dd-48e0-b2d1-25b056c7f8f4", + "createdTime": "2020-11-04T22:36:48.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cd44a98-2fe4-4e6d-95c1-a9354a3d0c17", + "createdTime": "2020-11-04T22:34:17.664Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "17e39849-1c95-462b-9230-033c97a0e8cc", + "createdTime": "2020-11-04T22:34:05.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa56af32-69b8-40db-8cb9-c73fd8c51a32", + "createdTime": "2020-11-04T22:33:51.161Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b2f147e-ffcc-43cc-9072-c54de996c114", + "createdTime": "2020-11-04T22:37:33.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "84281c3f-d32e-48e0-8bdd-7eb4da6bef63", + "createdTime": "2020-11-04T22:37:31.157Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2423c3d0-6580-4624-bb5f-b47eb908e13d", + "createdTime": "2020-11-04T22:37:27.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "01792579-3472-4898-b594-55521d10264a", + "createdTime": "2020-11-04T22:37:24.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fa15ae9a-d729-492a-8177-a8a9324f4005", + "createdTime": "2020-11-04T22:37:22.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6caa7277-40ca-48a5-b28b-0ba3f26bc2db", + "createdTime": "2020-11-04T22:37:16.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "186d326c-5a27-4c3b-9641-6c41e4493aa4", + "createdTime": "2020-11-04T22:37:15.354Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "86ee0c9c-6321-404a-aa0e-fd9fd4c5c1eb", + "createdTime": "2020-11-04T22:37:13.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3cebfaf5-2d77-497d-b320-724e83ee3fae", + "createdTime": "2020-11-04T22:37:06.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "94648176-f4c9-485b-8832-c704a210edc2", + "createdTime": "2020-11-04T22:33:48.398Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96320450-f9e1-4538-9ad6-d19d4490d904", + "createdTime": "2020-11-04T22:36:52.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f3bb6e2a-fe86-40fa-a40f-3d21a72d36a5", + "createdTime": "2020-11-04T22:36:51.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "767229e4-e1cf-4fa8-bc9a-df89e7275ee2", + "createdTime": "2020-11-04T22:36:46.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a402062f-1f41-462b-8882-a04553034336", + "createdTime": "2020-11-04T22:33:38.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "02353ba7-71ca-47b0-929f-8b193eb8f52f", + "createdTime": "2020-11-04T22:32:31.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8fda261b-e7a3-49c9-a872-05de41377813", + "createdTime": "2020-11-04T22:30:00.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8cd5e955-fabf-43ee-b306-edf83394a1c1", + "createdTime": "2020-11-04T22:34:22.435Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "893c0058-00de-4e3b-82c0-a15f68ed5671", + "createdTime": "2020-11-04T22:34:19.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ab8cf874-67ec-43ac-8107-bcebff6f3b94", + "createdTime": "2020-11-04T22:34:14.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2151d55a-7b9f-494d-b287-30f59c879d47", + "createdTime": "2020-11-04T22:34:10.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8fd442aa-2c24-4f08-a447-0d0406cbc712", + "createdTime": "2020-11-04T22:34:08.846Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "10d52b35-ca7c-48db-b4ef-9b75fb9c1c7b", + "createdTime": "2020-11-04T22:34:07.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a09fe175-2815-46fd-b759-e4f890189fa2", + "createdTime": "2020-11-04T22:34:02.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5884778c-0f61-4bf9-bfc6-65a091222b74", + "createdTime": "2020-11-04T22:34:00.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5a953dbf-c1fe-4833-beae-5c8ae9248fe5", + "createdTime": "2020-11-04T22:33:57.695Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0dd4227e-363a-4160-9649-f496cd044678", + "createdTime": "2020-11-04T22:29:46.334Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7037eb48-72df-46e4-a1c2-31d31e94aece", + "createdTime": "2020-11-04T22:33:46.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "67a93196-f3ae-439f-80be-c2244a39c4a4", + "createdTime": "2020-11-04T22:33:42.859Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ae87ac8d-25d3-45c6-971f-de9aa167ec0e", + "createdTime": "2020-11-04T22:33:41.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f4b9db4b-43fd-43cb-b1fd-cdc2b4374421", + "createdTime": "2020-11-04T22:33:36.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "88e56e44-baf9-466d-a624-3cd8ad9d1350", + "createdTime": "2020-11-04T22:33:34.776Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9635fd71-e16a-4d29-b8ef-12dd8b114c1a", + "createdTime": "2020-11-04T22:29:38.162Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "138a6dd7-7141-4639-98f6-25d39ce7bb54", + "createdTime": "2020-11-04T22:29:27.037Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "133a4255-aaa6-474d-8847-ee3a9acef48b", + "createdTime": "2020-11-04T22:32:33.125Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6fcd6cd-e0c0-4238-8d06-fe81955b7b1a", + "createdTime": "2020-11-04T22:29:05.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96c7f1ca-c60c-4854-902b-20e8747b22f1", + "createdTime": "2020-11-04T22:31:26.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f9a1831f-02f2-48cc-9baa-916e411e951f", + "createdTime": "2020-11-04T22:31:22.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a9e957f1-41a0-4ad9-be4f-c0d57b556521", + "createdTime": "2020-11-04T22:31:20.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "00769790-2b5a-4df9-b4c8-025aefd75d1e", + "createdTime": "2020-11-04T22:28:56.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45e3cce3-ac97-434f-898d-b07b9399b36b", + "createdTime": "2020-11-04T22:28:49.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f58f26d-4760-42da-8240-6ba4b60db44b", + "createdTime": "2020-11-04T22:29:56.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9e6db4a8-02a8-4192-be2a-64750ec25d28", + "createdTime": "2020-11-04T22:29:54.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5a16f306-2771-46a2-be39-ab972121f48a", + "createdTime": "2020-11-04T22:29:51.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "47cb963b-38b9-4330-b9a5-f080f5210a92", + "createdTime": "2020-11-04T22:28:47.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3a31f91c-b41e-4bf7-8670-de8806ae493e", + "createdTime": "2020-11-04T22:29:36.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "820118e2-204c-478b-9e40-d28f459984c3", + "createdTime": "2020-11-04T22:29:32.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "156d89bc-0921-42a4-9714-d1bfba6ef838", + "createdTime": "2020-11-04T22:29:30.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "307936a7-c2e0-47fc-91b6-14257850f55d", + "createdTime": "2020-11-04T22:29:23.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a36f752b-7cd8-42e6-902d-5f2b721ac594", + "createdTime": "2020-11-04T22:29:07.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cbd7bd3f-d7d5-47dd-8879-8ae623d83416", + "createdTime": "2020-11-04T22:29:06.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "31322fdc-e673-4a69-8932-f3bd6635559a", + "createdTime": "2020-11-04T22:28:33.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9e9e0d8c-4c39-456e-a44d-aaddfcf7c872", + "createdTime": "2020-11-04T22:29:03.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "377f832f-b0c2-4814-b8b2-0818c0ff1e77", + "createdTime": "2020-11-04T22:29:00.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cfd26905-73af-49da-9eec-8ca189f4b086", + "createdTime": "2020-11-04T22:28:58.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b7646d09-833a-4207-b80a-bd2dd1583528", + "createdTime": "2020-11-04T22:28:54.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "fe1c54cb-1de4-42f1-86b3-13d071480245", + "createdTime": "2020-11-04T22:28:52.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "236930c9-9d45-4192-97a4-2ea9558f036b", + "createdTime": "2020-11-04T22:28:50.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b09b5e9-83ed-457b-80c5-5670012b959b", + "createdTime": "2020-11-04T22:28:46.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "af85470e-18c5-4d52-923e-56b79d735846", + "createdTime": "2020-11-04T22:28:38.164Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8209a41f-5269-4d7d-9e93-58b3985fa11a", + "createdTime": "2020-11-04T22:28:36.687Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d65eec1a-4856-451e-a10e-2e376088a547", + "createdTime": "2020-11-04T22:28:30.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4d7e747f-8a48-442e-a388-66f6a5869815", + "createdTime": "2020-11-04T18:36:58.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f389919-be8d-4bff-abce-f3c66e8661df", + "createdTime": "2020-11-04T18:36:40.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "afe419e3-dd0b-4a50-bfdc-bdc3980c3bad", + "createdTime": "2020-11-04T18:36:30.013Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "046c5a36-b49e-4a34-a5e9-c063c8035f8c", + "createdTime": "2020-11-04T18:36:27.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2524ec5-17c5-4742-8b0d-7b1ad7f18692", + "createdTime": "2020-11-04T18:37:02.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e44f3e33-899e-4339-913c-ceafa0a3803e", + "createdTime": "2020-11-04T18:37:00.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0e5883cc-47d8-4914-9553-5d801f40b070", + "createdTime": "2020-11-04T18:36:55.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2526db10-dafd-4575-b5db-240f77c710b0", + "createdTime": "2020-11-04T18:36:17.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "324e2a23-0c4a-4c53-bee0-46bfb2649aaa", + "createdTime": "2020-11-04T18:36:46.064Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "295b7020-6105-432d-8de4-99774bddb2d0", + "createdTime": "2020-11-04T18:36:44.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6bb28ee3-7d79-4375-9f99-70484675c943", + "createdTime": "2020-11-04T18:36:36.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c2aa551f-e173-4207-8ee9-0041ffd2014e", + "createdTime": "2020-11-04T18:36:34.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "863324ff-5991-4618-aef0-924fad980cc5", + "createdTime": "2020-11-04T18:36:31.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2f1cdac8-62bf-4517-b36e-a9f2da547f56", + "createdTime": "2020-11-04T18:36:25.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9abaf2a4-7361-4634-8cc3-e87ec6b07513", + "createdTime": "2020-11-04T18:36:22.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6c227e5e-0799-4dfc-b7a6-25edd3ea8dcb", + "createdTime": "2020-11-04T18:36:20.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2df5586f-af79-45cf-b8ea-c727166e097f", + "createdTime": "2020-11-04T18:36:13.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "169886e3-8c79-4b32-9939-36649a9e3e2e", + "createdTime": "2020-11-04T18:26:14.696Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6d97854-7d08-4281-97bb-19472dd101bf", + "createdTime": "2020-11-04T18:26:08.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dd76eeca-f23d-4417-8e4e-9e558e5db69e", + "createdTime": "2020-11-04T18:26:03.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9a7ce2b1-f84b-4d2d-9e82-0f31b33e7317", + "createdTime": "2020-11-04T18:25:59.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "776ba192-212c-422e-8132-e258523b4964", + "createdTime": "2020-11-04T18:25:54.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "841a11b8-9b5d-4eee-ad15-e71758357afd", + "createdTime": "2020-11-04T18:25:51.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79cc15b3-b2d6-4b9e-9f2f-2da361b7b1a5", + "createdTime": "2020-11-04T18:25:50.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e1fc2af-2e7a-4c1b-9e43-ce77846dab36", + "createdTime": "2020-11-04T18:25:42.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "741f26eb-de78-4daa-837b-a0c142baa861", + "createdTime": "2020-11-04T18:25:40.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e24f9588-b63c-4e0d-8447-ae251a1c6df8", + "createdTime": "2020-11-04T18:25:35.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1573fc73-5fbe-492e-8d7e-67415ba549b2", + "createdTime": "2020-11-04T18:25:20.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "36527d3e-b507-42bb-8115-7632f290b21e", + "createdTime": "2020-11-04T18:25:19.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d196da53-fc0c-4153-93e1-a81fe6e463fb", + "createdTime": "2020-11-04T18:25:13.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "286927ed-2a41-4482-91da-3ba8e1c7deb9", + "createdTime": "2020-11-04T18:25:10.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a2fdcfcf-2180-4ad0-9693-a31d18108a8e", + "createdTime": "2020-11-04T18:26:19.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "984a1bef-ca5a-4efb-950d-3799c1dc876a", + "createdTime": "2020-11-04T18:26:16.747Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5095cfe2-334b-4a0d-9ff0-9f9f7573b1f4", + "createdTime": "2020-11-04T18:26:13.346Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "767a8e20-1164-45b3-8595-3da5c5f593d9", + "createdTime": "2020-11-04T18:26:11.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e59c47da-7f8d-4cee-9372-6a761e109cb4", + "createdTime": "2020-11-04T18:26:10.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ab6390b-b0d6-495b-969b-d86bc06de9be", + "createdTime": "2020-11-04T18:26:07.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ed9cdf43-964e-4fba-843e-51af6c3e3de9", + "createdTime": "2020-11-04T18:26:06.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "088ae3f7-0926-45d8-b8bd-d30d887861a3", + "createdTime": "2020-11-04T18:26:06.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "04d8add8-3ebb-4331-bf73-ec18b7ecb7f0", + "createdTime": "2020-11-04T18:26:03.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7aeacc09-cfd4-4212-b31a-0ad14bba09b4", + "createdTime": "2020-11-04T18:26:01.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad70474c-f711-43d0-a2c1-7669a7cd0ac0", + "createdTime": "2020-11-04T18:25:59.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9c119b53-c236-4f9d-92a0-59b5f171d673", + "createdTime": "2020-11-04T18:25:58.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "99f69922-8f5d-4e30-8dbe-57e6bbc07ed6", + "createdTime": "2020-11-04T18:25:56.438Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d1683ff6-fe16-4d7e-a661-c32adc1d9ca7", + "createdTime": "2020-11-04T18:25:56.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "eb71835c-4ee4-4a37-a60b-dbf982da7a8c", + "createdTime": "2020-11-04T18:25:54.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "55104fd8-b367-467b-9226-70ba2d2e6b98", + "createdTime": "2020-11-04T18:25:51.921Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f9926c9-4b82-4296-9665-aa2ac5c2dd9b", + "createdTime": "2020-11-04T18:25:49.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "60f81412-cb4b-49d1-ae5a-f854dfc22de1", + "createdTime": "2020-11-04T18:25:44.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4117ae92-d992-4333-8aa6-af6a14ab2269", + "createdTime": "2020-11-04T18:25:41.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0cd8c1b0-a499-4f09-9be8-719702b1aa08", + "createdTime": "2020-11-04T18:25:41.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9925137b-011f-4c76-a51c-80cd56f9c5e7", + "createdTime": "2020-11-04T18:25:40.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ffb1203b-2774-47b5-92ab-b9b83b1e5e38", + "createdTime": "2020-11-04T18:25:39.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e81bebc3-3844-492d-9502-988285012d71", + "createdTime": "2020-11-04T18:25:37.959Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "747a88b7-17cf-4b9d-8a7c-cc80c1b084a1", + "createdTime": "2020-11-04T18:25:03.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1eabcc7e-781e-4813-afcd-652f4f1f360f", + "createdTime": "2020-11-04T18:25:36.326Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72fdd973-052a-49de-8fa5-8f96c1bc1219", + "createdTime": "2020-11-04T18:25:34.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "51116c8c-cf5f-4b61-bb99-96458e87f64f", + "createdTime": "2020-11-04T18:25:34.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1fa89871-7d8c-4165-9c9e-6068fd38ad8e", + "createdTime": "2020-11-04T18:25:33.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "37108cec-beb7-4812-a545-b18af93af9dc", + "createdTime": "2020-11-04T18:25:20.642Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "23b55e52-955f-4146-8b09-338e19e88830", + "createdTime": "2020-11-04T18:25:17.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a62ffdb9-e98a-487d-acfb-dfed356b267d", + "createdTime": "2020-11-04T18:25:17.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "98961094-58c5-4bb6-ab37-9a4e13bf794f", + "createdTime": "2020-11-04T18:25:16.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "264cfb2c-ecbe-4b21-ab56-e5d90057bfe0", + "createdTime": "2020-11-04T18:25:14.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d02c0ee-e9f2-4950-b0b2-4fbbd5ff496a", + "createdTime": "2020-11-04T18:25:08.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "94a9fde7-97d9-42bd-a4e8-3979aa57720c", + "createdTime": "2020-11-04T18:25:06.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "00f72914-d635-496a-8b9c-6677905bcdcf", + "createdTime": "2020-11-04T18:25:05.437Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6cd1c077-218f-4bd8-b853-1ca342a47845", + "createdTime": "2020-11-04T18:25:00.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7f3d3b27-262d-48e3-ba3f-9f7293836c7f", + "createdTime": "2020-11-04T18:21:04.798Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2ad26f21-84c5-41e3-918f-288378035671", + "createdTime": "2020-11-04T18:20:47.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61acbbd0-c944-4647-b4bd-1265534507ce", + "createdTime": "2020-11-04T18:20:38.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6c951161-39e5-44fa-9580-faa219477ff2", + "createdTime": "2020-11-04T18:20:36.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a799f50b-7f12-4394-9d7a-1ae14a4935e5", + "createdTime": "2020-11-04T18:20:26.449Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "135a20e1-5631-44ae-9413-a00561587886", + "createdTime": "2020-11-04T18:21:14.95Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "86213827-5b07-4400-9671-20d4b63d91a3", + "createdTime": "2020-11-04T18:21:06.84Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "898c96bc-5097-4997-898a-26658613de8c", + "createdTime": "2020-11-04T18:18:20.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "007f9073-0eef-430e-bac9-159997da55c9", + "createdTime": "2020-11-04T18:21:00.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a6abcff2-9b28-4df5-8888-848368a44b40", + "createdTime": "2020-11-04T18:20:56.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "df038f0e-08dc-492b-a407-6491f735626e", + "createdTime": "2020-11-04T18:20:50.431Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4bc45eb1-1d46-4585-95a9-1df94c7c3987", + "createdTime": "2020-11-04T18:20:44.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a80b7571-2e2e-427d-8ac0-891d9b94e337", + "createdTime": "2020-11-04T18:20:41.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "54921f47-7573-4f41-a150-26dd204376c7", + "createdTime": "2020-11-04T18:20:39.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad9c4612-84c8-4d41-bcc8-017bae1c5395", + "createdTime": "2020-11-04T18:20:34.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "131de8b0-ec4b-47c8-a9f3-4b83ad456d17", + "createdTime": "2020-11-04T18:20:30.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "007b95b5-4fd4-47e3-bcdd-64fe65d92045", + "createdTime": "2020-11-04T18:20:29.144Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7319aa9b-d258-43f1-ac83-8ce466bb6d0a", + "createdTime": "2020-11-04T18:20:22.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "59336c28-47e1-4011-9441-9f4870bf6b74", + "createdTime": "2020-11-04T18:18:15.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "35956aed-552d-4069-bdc4-c629c0f0d4bf", + "createdTime": "2020-11-04T18:18:10.074Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "50338aef-20f0-4253-86e9-5df2b2790184", + "createdTime": "2020-11-04T18:18:08.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "97e41198-e14a-48b6-8faa-5d41476cd4b4", + "createdTime": "2020-11-04T18:18:23.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a3d074f6-6de8-4e4f-bf30-79ae5830d1c3", + "createdTime": "2020-11-04T18:18:04.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fba82cc8-ecca-4d76-be12-b0fb24f647fe", + "createdTime": "2020-11-04T18:18:21.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "862121f7-9453-49be-ad53-ce78792b6d55", + "createdTime": "2020-11-04T18:18:19.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f31dcc8a-2eec-463d-bfc2-1d2752544cbc", + "createdTime": "2020-11-04T18:18:17.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ca26fb04-095c-4095-89b4-0acbedf79c37", + "createdTime": "2020-11-04T18:18:16.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fcec151a-b0df-4529-8e34-e46a1b5628f6", + "createdTime": "2020-11-04T18:18:13.519Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d4eef1b5-58f2-4308-854d-994323e8f22d", + "createdTime": "2020-11-04T18:18:12.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e3dacedb-9811-4da7-a9e9-d33650c7b485", + "createdTime": "2020-11-04T18:18:11.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b7eac1c0-883c-45d5-8c70-5f2269a3bdf0", + "createdTime": "2020-11-04T18:18:08.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bdeea23a-a31b-43cb-899c-5ccac54ca3d1", + "createdTime": "2020-11-04T18:18:06.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87048d3c-8c50-4bda-80ac-80659f3edf1a", + "createdTime": "2020-11-04T18:18:05.875Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aab8ce92-9465-4eb9-b9ec-a63f46263a6f", + "createdTime": "2020-11-04T18:18:03.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d7a80340-0e19-4c3b-9d7b-8ed585438084", + "createdTime": "2020-11-04T18:16:00.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "deda8700-0f22-427b-92ac-8763f86a93d3", + "createdTime": "2020-11-04T18:15:59.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9e2fa9c5-227e-4d5e-aa37-88c95379ab7e", + "createdTime": "2020-11-04T18:15:59.332Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "446b6087-4d1b-4cbb-a29c-5df1db3bec26", + "createdTime": "2020-11-04T18:15:58.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7fb0c422-6324-4022-87fb-3a32e1154c17", + "createdTime": "2020-11-04T18:13:12.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4e7c4b9a-d55d-495e-8fd1-b85d58303099", + "createdTime": "2020-11-04T18:13:11.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "600b1287-c2f3-432b-96d3-271eb2691a21", + "createdTime": "2020-11-04T18:13:11.566Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "beeccfd7-e81c-47c3-a1b5-212740db9cff", + "createdTime": "2020-11-04T18:13:11.166Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0604bc2c-90a0-40e5-95b9-a6a0a3f964f2", + "createdTime": "2020-11-04T18:07:11.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad268a20-3ca9-4dfd-a55a-955c1b917d3b", + "createdTime": "2020-11-04T18:07:10.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8bf49716-ec70-456b-bc41-1103aee89e38", + "createdTime": "2020-11-04T18:07:10.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "40e27a67-e2df-4f34-a37a-6c72e0d6b42c", + "createdTime": "2020-11-04T18:07:09.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "60e8f087-1320-416b-9559-cc67cfc9d15a", + "createdTime": "2020-11-04T18:03:35.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43ddd7de-ad29-48a4-958c-a817787ef944", + "createdTime": "2020-11-04T18:03:22.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "039d4d0a-b2b7-4895-9fc4-d256c96f1786", + "createdTime": "2020-11-04T18:03:22.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "489843a0-d5a0-4cd1-8f6d-f8eeb8b49494", + "createdTime": "2020-11-04T18:03:21.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dc82028a-672b-47ac-b80a-43598efdb330", + "createdTime": "2020-11-04T18:03:21.02Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66f3f57f-3257-4383-b958-33fbdaa348fe", + "createdTime": "2020-11-04T17:54:42.914Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "814d3813-cd47-4aab-a3b6-210dfdc5f35e", + "createdTime": "2020-11-04T17:54:42.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "da415e1e-7105-434f-a615-1a322a0c2698", + "createdTime": "2020-11-04T17:54:41.816Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "dce5d908-80b6-4959-9beb-5ed1f95afab4", + "createdTime": "2020-11-04T17:54:41.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "604a4385-1ce8-4341-98e7-b3b77b17af09", + "createdTime": "2020-11-04T17:40:26.614Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ff988e1a-15f7-470e-b08b-8c1b666262eb", + "createdTime": "2020-11-04T17:40:26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "db99ebe7-8057-42b4-96e8-a510c21b1d6a", + "createdTime": "2020-11-04T17:40:25.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "22e19409-3ed3-47fa-83f9-b486c8241295", + "createdTime": "2020-11-04T17:40:24.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b3b8e24-27fa-4080-931d-c19fcf2587bc", + "createdTime": "2020-11-04T17:36:37.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7eb15b42-06e2-4d5a-8b1f-5d42aa4d8277", + "createdTime": "2020-11-04T17:36:36.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "aad1c72d-b11e-48cd-9924-cf2e324ba945", + "createdTime": "2020-11-04T17:36:36.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8ba0e8dd-cf62-4f8a-b339-3f5ddd18285d", + "createdTime": "2020-11-04T17:36:35.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e755f6c8-4e58-45bc-95f5-f1c53dae39ca", + "createdTime": "2020-11-04T17:22:20.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0138c371-e691-4785-8763-cd14334fcc06", + "createdTime": "2020-11-04T17:22:19.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "24e42544-5598-453f-af75-cca2668d4912", + "createdTime": "2020-11-04T17:22:19.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fbc30d55-e434-4ed9-95b0-4e2d7da22c94", + "createdTime": "2020-11-04T17:22:18.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b0016aab-a869-4042-86c8-49df3f859642", + "createdTime": "2020-11-04T17:18:42.67Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b3f307b4-5875-4ed4-b730-c5c8a110d266", + "createdTime": "2020-11-04T17:18:42.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7b53625a-254b-463a-b79b-7f7937345f59", + "createdTime": "2020-11-04T17:18:41.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3f4272a8-4ffd-454a-80ec-c66f54c75f05", + "createdTime": "2020-11-04T17:18:40.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cd506b60-cd1d-4776-a426-91b981e4275c", + "createdTime": "2020-11-04T11:02:40.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "44845233-3897-4e36-a90c-d3a4557e3c8b", + "createdTime": "2020-11-04T11:02:39.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "132a7603-7a2b-46dc-b4a7-2344c13ba45a", + "createdTime": "2020-11-04T11:02:39.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "87789afa-579c-451e-b1ad-0e4f6c5349a8", + "createdTime": "2020-11-04T11:02:38.513Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f996c1f9-3308-4e5b-bcdb-887f397f22b7", + "createdTime": "2020-11-04T10:59:16.794Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0b60a8a0-2151-43f9-b377-5c589ec0ec3a", + "createdTime": "2020-11-04T10:59:16.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "80b334a0-d43e-4967-8228-86ced561c9ac", + "createdTime": "2020-11-04T10:59:15.691Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "699d9785-a80f-475c-bb19-225c969b5206", + "createdTime": "2020-11-04T10:59:15.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bde901c6-1d0c-41b0-8635-cecea4f6ca7d", + "createdTime": "2020-11-04T10:34:07.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a4d6cf12-ef20-48da-ac12-72381e1bb0d2", + "createdTime": "2020-11-04T10:34:07.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8c865b33-ff84-431d-b2b1-2f36c8f64174", + "createdTime": "2020-11-04T10:34:06.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "aef5ba4e-6501-4963-902d-dd152529c9c8", + "createdTime": "2020-11-04T10:34:06.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b699ea68-8715-4aef-b931-f146db3ffe6a", + "createdTime": "2020-11-04T10:31:10.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92cb468d-6a03-4cc2-bd89-a247a0086972", + "createdTime": "2020-11-04T10:31:10.499Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "3c3aa47c-a433-41c5-b7c4-0452a5e8772b", + "createdTime": "2020-11-04T10:31:09.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f65626f0-790c-4340-9359-0bfcd8cfce68", + "createdTime": "2020-11-04T10:31:09.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "923ea007-6685-444a-8aa2-097bc435a1a4", + "createdTime": "2020-11-04T09:59:04.591Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "afc85362-161b-4030-812d-a7599cb96f54", + "createdTime": "2020-11-04T09:59:04.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4a6e2ebc-9940-4bad-8194-0129ade9a992", + "createdTime": "2020-11-04T09:59:03.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "95d93271-6ca1-481f-b223-3d5539d6fe92", + "createdTime": "2020-11-04T09:59:02.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "840b4d57-ef9e-4225-b3d3-7866abea467c", + "createdTime": "2020-11-04T09:17:33.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "30be2f12-0ac7-4719-8f5d-258d852bc2b0", + "createdTime": "2020-11-04T09:17:33.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e86ee0db-557b-430d-b185-e547a22e9218", + "createdTime": "2020-11-04T09:17:32.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4091e4b0-4856-49ae-991a-30f6924f8786", + "createdTime": "2020-11-04T09:17:32.101Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8493c25c-a848-4a41-a128-ff3dccfe42c4", + "createdTime": "2020-11-04T09:13:59.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "778d6a91-9c09-461e-bce8-b964698c62d4", + "createdTime": "2020-11-04T09:13:58.502Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9216e780-bffd-4241-a825-a0056ffad92d", + "createdTime": "2020-11-04T09:13:57.894Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "759db291-1c7b-4a4b-9350-3dc89a7e22ac", + "createdTime": "2020-11-04T09:13:57.245Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "927bfcbf-6b21-4c1e-8964-67a257c5775b", + "createdTime": "2020-11-04T08:30:31.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03f6b08c-7b88-4bc3-b003-3c01dcb4c54f", + "createdTime": "2020-11-04T08:30:30.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b3951f0d-6d3b-4d67-8e12-d19ce90f5c69", + "createdTime": "2020-11-04T08:30:30.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "aa0376b7-8709-4ec2-8af2-3c91f6d2e9fc", + "createdTime": "2020-11-04T08:30:29.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9086c250-89c2-4ae5-9bfa-0be8a11db81b", + "createdTime": "2020-11-04T08:27:37.993Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "42124d4f-2d94-4d12-9447-ce8911e5afb4", + "createdTime": "2020-11-04T08:27:37.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0d3eb182-d0b4-48da-b23a-7acdfe724331", + "createdTime": "2020-11-04T08:27:36.752Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e83ed0dd-5599-4ed4-a102-1e46afa6311a", + "createdTime": "2020-11-04T08:27:36.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aa1fe121-45ed-4a64-84bc-f9862256e4de", + "createdTime": "2020-11-04T01:53:16.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fc1bc9c3-3f32-49f7-9c43-e5fa5e6d086a", + "createdTime": "2020-11-03T23:44:08.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f6c1b2a-271b-4069-a408-899ec15321d8", + "createdTime": "2020-11-03T13:22:59.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7fe7466c-d961-4339-b45e-a6cc3a4cbefd", + "createdTime": "2020-11-03T09:13:13.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "570b83c7-db03-4626-b9a3-a3f4124b8d7e", + "createdTime": "2020-11-03T09:13:12.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7870ad8d-b908-4efb-9be5-7875c979800c", + "createdTime": "2020-11-03T09:13:12.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5cdc2a81-0cea-42ba-8998-3cde7f45bda2", + "createdTime": "2020-11-03T09:13:11.653Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d3ff2ad-296d-4592-a0f4-b9235d07a6eb", + "createdTime": "2020-11-03T09:10:28.084Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f92c8ed7-2874-450f-b40a-135866b066db", + "createdTime": "2020-11-03T09:10:27.555Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "446c16ff-05ee-4c9e-8b8b-b64f3397d9f4", + "createdTime": "2020-11-03T09:10:27.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "546afb8d-4db2-4878-8e0f-ab33fadd60dc", + "createdTime": "2020-11-03T09:10:26.476Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5ed8306-6f17-40e3-981f-a924bb85ac0d", + "createdTime": "2020-11-03T09:01:55.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "630d2a95-4e0b-4358-bc27-c89dfdc0e345", + "createdTime": "2020-11-03T09:01:55.165Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1747b102-88c2-435b-b772-bf7a81e6446e", + "createdTime": "2020-11-03T09:01:54.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c95f666d-6ee6-4946-95dd-8ee999936038", + "createdTime": "2020-11-03T09:01:53.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c51cfaf-f1ef-482d-ad11-6c0c6f83510b", + "createdTime": "2020-11-03T08:59:08.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6c0379e3-1ae3-4bec-b054-c7f08805f78d", + "createdTime": "2020-11-03T08:59:07.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8fc47bb9-7fcc-4358-8afd-d5fc6cc80699", + "createdTime": "2020-11-03T08:59:07.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "080db816-a322-4511-99cd-d4293536831e", + "createdTime": "2020-11-03T08:59:04.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "197644f6-1fc7-4de3-adef-ba860bec5cfd", + "createdTime": "2020-11-03T08:46:26.706Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "64613d71-64c8-4c15-8645-18dca757fa9c", + "createdTime": "2020-11-03T08:46:26.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f7ee857d-f0e5-4d60-af6c-d897d2e7b349", + "createdTime": "2020-11-03T08:46:25.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "782f0d72-9504-4304-920d-eae7b8b6232a", + "createdTime": "2020-11-03T08:46:24.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a02c88d8-2cbd-4cbb-b5af-348da99bd18d", + "createdTime": "2020-11-03T08:37:38.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6e3430de-2ec2-4add-b18b-42a7a70509f7", + "createdTime": "2020-11-03T08:37:37.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1a6ca2e-13f3-44b1-a08f-81bf8838b587", + "createdTime": "2020-11-03T08:37:37.229Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "9853de71-2c85-40e2-b55f-5bcd5e65bbf3", + "createdTime": "2020-11-03T08:37:36.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "90f16812-4de6-49d3-854a-79e6e1873879", + "createdTime": "2020-11-03T08:34:59.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e566d1a3-f238-4d3d-a09d-47e1b7074956", + "createdTime": "2020-11-03T08:34:58.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9dedb0c1-b12c-476f-b062-ec4eae199363", + "createdTime": "2020-11-03T08:34:58.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "65d6c670-b67a-4fa7-a849-e1b8250b8e95", + "createdTime": "2020-11-03T08:34:57.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "49fae9ef-2bbb-4175-b5ff-a52a8f2cb5fb", + "createdTime": "2020-11-03T08:23:13.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e3bc251-de15-4f8d-9e13-75a86b5a518d", + "createdTime": "2020-11-03T08:23:13.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1fb1fbf8-a6a9-4a35-b8ec-c7b631b41254", + "createdTime": "2020-11-03T08:23:12.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "73a35cc2-612c-48d9-9edb-874417a0ee3a", + "createdTime": "2020-11-03T08:23:12.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "988794ec-58c2-4808-8536-44ab88556e3c", + "createdTime": "2020-11-03T08:20:32.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "77247f16-dd5b-4cb0-96f8-9d1fcb0f8ab6", + "createdTime": "2020-11-03T08:20:31.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4d619e57-7851-488e-aa63-68624a8d7dad", + "createdTime": "2020-11-03T08:20:31.393Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8f797b39-786a-4d90-887a-c7e8023f5c41", + "createdTime": "2020-11-03T08:20:30.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6e4d1870-661c-4bea-9582-3f4438387c19", + "createdTime": "2020-11-02T21:45:14.733Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aaa901ad-6532-4402-b4a4-c08a435e2bcb", + "createdTime": "2020-11-02T18:09:48.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cb534a1-7008-499e-a027-b4137f74cf0f", + "createdTime": "2020-11-02T14:26:04.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1978f1fc-583f-4cdc-97bc-fbb45ac209f3", + "createdTime": "2020-11-02T09:21:07.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "69154437-2e5b-46d6-8dab-8e548722df0b", + "createdTime": "2020-11-02T09:21:06.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e76da869-3e64-4cb7-afd3-241ef4ac509f", + "createdTime": "2020-11-02T09:21:06.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7f34dbfc-71aa-4b25-9107-75ca38730ecd", + "createdTime": "2020-11-02T09:21:05.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fbed2925-14c9-41f1-ae12-288fc008fa64", + "createdTime": "2020-11-02T09:18:18.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "37460ce3-0507-4dab-a2a9-9d3feb7da5b2", + "createdTime": "2020-11-02T09:18:17.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a4fcee42-0536-4093-a797-ca15e06e0fad", + "createdTime": "2020-11-02T09:18:17.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4bf8cec4-efb7-4c38-b270-9ddbada95d7c", + "createdTime": "2020-11-02T09:18:16.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "16da2e98-26be-41bc-83c0-ed1779b44dc3", + "createdTime": "2020-11-02T09:00:49.644Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fedccc5c-a9d3-403a-bd87-7e7b0debf070", + "createdTime": "2020-11-02T09:00:49.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "577b76d4-48eb-40dd-b99e-d5daf1f318c8", + "createdTime": "2020-11-02T09:00:48.604Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0360f3b9-a24f-48d0-8d84-34c701ad0026", + "createdTime": "2020-11-02T09:00:48.116Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cdc9aae-a6cf-45bf-bd5c-92be23938977", + "createdTime": "2020-11-02T08:58:21.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9ea43476-ebad-46eb-80e8-a60d99b7f4f7", + "createdTime": "2020-11-02T08:58:20.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e350b501-cad5-4004-b04e-4b51c153908a", + "createdTime": "2020-11-02T08:58:20.542Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "701b1ad5-aa22-4463-ab80-538b170ab24e", + "createdTime": "2020-11-02T08:58:20.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0b84fddb-5677-4169-9904-c510dbce8f78", + "createdTime": "2020-11-02T08:45:44.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8a1f493c-d182-464a-9d50-127ddc490e72", + "createdTime": "2020-11-02T08:45:43.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "398bb3d9-0f61-4682-94ea-7ed3e8354465", + "createdTime": "2020-11-02T08:45:43.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4c1bf63c-3709-4f06-bdfd-1e3cbd8255df", + "createdTime": "2020-11-02T08:45:42.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4aca317e-a217-4478-82c2-fbdd23d95a2a", + "createdTime": "2020-11-02T08:36:43.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "45ffe890-2d0c-4c15-857c-e8e84fd19571", + "createdTime": "2020-11-02T08:36:42.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "741e4faf-44a0-4faf-9db6-d8f812efcc68", + "createdTime": "2020-11-02T08:36:42.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "35788d6e-db63-4af7-8c35-e18d2a83ad8d", + "createdTime": "2020-11-02T08:36:41.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c83115d1-e822-49b3-a05e-a42a785b1d86", + "createdTime": "2020-11-02T08:34:14.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "92c847c2-56f2-4759-bc9d-1a6d32346ead", + "createdTime": "2020-11-02T08:34:14.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6560ab8-99a3-4d09-898b-b5a23975913a", + "createdTime": "2020-11-02T08:34:13.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f3c33a7d-212f-45d0-bb29-8a70d14212ac", + "createdTime": "2020-11-02T08:34:12.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "087166d5-97d2-468f-94de-3415af445f57", + "createdTime": "2020-11-02T08:22:15.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e507933f-4610-43ba-a4e6-ba88cbd954a5", + "createdTime": "2020-11-02T08:22:15.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2e7367f3-3d5f-45b9-9df9-acbfe272adb9", + "createdTime": "2020-11-02T08:22:14.616Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bd64b728-9b45-4007-ac61-c8557c622598", + "createdTime": "2020-11-02T08:22:14.187Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0992df3c-3c85-48f3-bee0-6856d27b604c", + "createdTime": "2020-11-02T08:20:09.009Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "beef9186-debc-472a-9004-b8fe9be3c475", + "createdTime": "2020-11-02T08:20:08.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0ec00763-7361-45be-8c43-fb84f4bc7461", + "createdTime": "2020-11-02T08:20:08.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "85b1a26d-bc11-44db-a851-40e13c51db85", + "createdTime": "2020-11-02T08:20:07.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66c69050-5392-4865-98f6-8b18416d9e2e", + "createdTime": "2020-11-01T23:44:31.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b1e7779-d3a5-48cb-afaf-d21bb4b726a8", + "createdTime": "2020-11-01T23:44:16.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cebc9d68-b72c-4ada-88b2-30cc4cd26999", + "createdTime": "2020-11-01T23:44:07.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd52415b-7018-4f15-a06e-5db024b1ed07", + "createdTime": "2020-11-01T23:44:05.976Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7d8f36ce-1db7-4747-8ff1-ceb87244dead", + "createdTime": "2020-11-01T23:44:35.464Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6848463b-c04a-4f10-baf0-f87bf56c3ce9", + "createdTime": "2020-11-01T23:44:33.73Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5dc8a7b8-6240-492c-b254-4014f859bcfd", + "createdTime": "2020-11-01T23:43:59.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "281508b5-5855-4e65-a96e-b08292bf8902", + "createdTime": "2020-11-01T23:44:26.087Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "278f601a-4bcf-4fba-b716-9417aeadac50", + "createdTime": "2020-11-01T23:44:21.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2b80f680-d2d0-4906-a1b0-26b8ad280772", + "createdTime": "2020-11-01T23:44:20.369Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2dd6b39b-643f-42fa-b3df-b0e018e05698", + "createdTime": "2020-11-01T23:44:12.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6bfcfd24-b12e-484b-866f-f453056485df", + "createdTime": "2020-11-01T23:44:10.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3e84d9e2-4a46-4e53-ad4d-fc7497d2c3c6", + "createdTime": "2020-11-01T23:44:08.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f4f384d-768e-47db-9fdb-347a587625a1", + "createdTime": "2020-11-01T23:44:04.87Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "000ebe19-58dd-4665-a6d9-5d30531b571f", + "createdTime": "2020-11-01T23:44:02.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a9ea4e0f-151c-4508-b389-d8b6c3bd4b32", + "createdTime": "2020-11-01T23:44:01.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "acee37c8-a1e6-4d70-a8a4-5d4ebb916437", + "createdTime": "2020-11-01T23:43:57.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d6bdcc4f-3709-4570-a208-4f7e2e5ba5a7", + "createdTime": "2020-11-01T23:16:00.179Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0bd0d86d-44e4-4c85-af99-ba20c7137fc8", + "createdTime": "2020-11-01T23:15:52.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7844f989-e3be-4b67-956b-0e7c6fa74d3d", + "createdTime": "2020-11-01T23:15:46.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a87541e7-e808-4bf1-b689-31722664357f", + "createdTime": "2020-11-01T23:15:45.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c003812d-f4bb-49ea-aaf5-9eb602c402ad", + "createdTime": "2020-11-01T23:15:38.994Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c2a245d-6f7a-4278-a4f8-24016403d963", + "createdTime": "2020-11-01T23:12:58.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eedb5198-e837-4180-b525-24f402a9b4c1", + "createdTime": "2020-11-01T23:12:51.518Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d5210f1-6ad7-4e3d-a645-755469332738", + "createdTime": "2020-11-01T23:12:39.915Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f39e2077-bf0c-443d-bcea-b90413fa5ca7", + "createdTime": "2020-11-01T23:12:38.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cbc4df6a-d1de-448a-987d-c58294def199", + "createdTime": "2020-11-01T23:12:31.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "83aba0ca-5628-4a53-ab1d-41edd39a2281", + "createdTime": "2020-11-01T23:12:12.027Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a17b7f84-0ea6-41ff-a6f6-20c2ba3e3f44", + "createdTime": "2020-11-01T23:12:04.259Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "70c2a345-aff7-46a9-9aaf-007ed2aeac72", + "createdTime": "2020-11-01T23:11:55.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6fc1eaa4-4731-4ed9-b874-975fec656959", + "createdTime": "2020-11-01T23:11:53.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ec74048a-9d69-4db2-8dc9-f2f9b957c34c", + "createdTime": "2020-11-01T23:11:46.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1d96f6e-63d3-4c42-a052-4b66f7b909da", + "createdTime": "2020-11-01T23:11:22.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54744f32-b868-4ac4-8af4-d05181c47a93", + "createdTime": "2020-11-01T23:16:02.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "481bad4f-0438-455a-b254-cbde4892aed2", + "createdTime": "2020-11-01T23:16:01.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6cc87bec-ab4e-43da-8fa5-624deca2eb5d", + "createdTime": "2020-11-01T23:15:58.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "14062025-f204-4921-8ac7-d632c14bbb8c", + "createdTime": "2020-11-01T23:15:56.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f067252-7f50-4bb1-b195-6b13e46ccd0d", + "createdTime": "2020-11-01T23:15:55.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6f71aaf-9f88-42f3-8912-c5a11b897ffa", + "createdTime": "2020-11-01T23:15:50.17Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cef1081a-9f73-4401-9285-69e5fe6f953a", + "createdTime": "2020-11-01T23:15:48.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cc3e937f-f196-4c32-85d3-8d2dcf2fb394", + "createdTime": "2020-11-01T23:15:47.674Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ab39072b-814a-47a4-a644-a3ed012ca67d", + "createdTime": "2020-11-01T23:15:43.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "534f27a0-a4ce-4742-ac69-15e6abdf2b2d", + "createdTime": "2020-11-01T23:15:41.871Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4baac6ae-f458-469a-bcd2-dc690daee990", + "createdTime": "2020-11-01T23:15:41.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "49305ef7-306b-461e-8b81-21259fbf4ade", + "createdTime": "2020-11-01T23:11:15.615Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "97d65a4c-0fa8-43eb-aec6-00892449c507", + "createdTime": "2020-11-01T23:15:36.85Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ba29da35-d7aa-466f-8fdb-f81681f41008", + "createdTime": "2020-11-01T23:11:09.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7a902b51-836a-4391-936e-9f00e8fc83a2", + "createdTime": "2020-11-01T23:11:09.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0dcb3b87-7164-4713-a26e-aaea9389f93e", + "createdTime": "2020-11-01T23:11:07.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30f38475-d514-438b-9486-dbf888a82c30", + "createdTime": "2020-11-01T23:11:03.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed4c93e0-e802-454a-a4c1-c5b2bcc77bf3", + "createdTime": "2020-11-01T23:11:00.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f7acc525-f3e5-4fc6-9f40-811c9effbf22", + "createdTime": "2020-11-01T23:13:01.05Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "67f8b56e-9d89-43ba-b74f-ac27898e66d2", + "createdTime": "2020-11-01T23:12:59.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cf966d18-cdcf-49f0-a863-f83698698a4f", + "createdTime": "2020-11-01T23:10:58.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b57ff413-fa97-4771-bc85-9a9457bf74c7", + "createdTime": "2020-11-01T23:12:57.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1e49e0ca-7c13-43b5-8c0a-4658985887a4", + "createdTime": "2020-11-01T23:12:54.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "47f8577a-d8d8-4a76-8a43-dbaf2c006c59", + "createdTime": "2020-11-01T23:12:53.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "038e6902-ec30-4272-af4e-419db9cbbbcf", + "createdTime": "2020-11-01T23:12:43.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "680786e3-30c7-4fe7-ac08-75a04cecbe51", + "createdTime": "2020-11-01T23:12:42.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b485300a-6d7f-4c1c-8599-4de991e639ab", + "createdTime": "2020-11-01T23:12:41.056Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a0d7e7b3-cfc5-4fa5-97fc-a226f0f886c9", + "createdTime": "2020-11-01T23:12:37.142Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5dcd6aeb-043f-4943-bbde-7ac9af221a46", + "createdTime": "2020-11-01T23:12:34.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7ad62d70-0a1e-40ee-8f39-f1336a4f5919", + "createdTime": "2020-11-01T23:12:33.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "099c434a-3903-4f6e-a46f-1147b80f7652", + "createdTime": "2020-11-01T23:10:56.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0d036861-9af9-4cc5-a114-98918052a5a3", + "createdTime": "2020-11-01T23:12:28.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a0045923-350e-44fc-ba91-8dd13b08cb52", + "createdTime": "2020-11-01T23:12:15.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3d75a94d-d025-49c7-bfed-d4971f5006d7", + "createdTime": "2020-11-01T23:12:13.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a7122cc9-2634-47b6-bf4b-8c6b13674ee6", + "createdTime": "2020-11-01T23:12:09.88Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e5c9c941-ebfe-44ab-9f5a-8f39f2d737d6", + "createdTime": "2020-11-01T23:12:07.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0409ac81-670f-42be-b42f-3f08b04032ec", + "createdTime": "2020-11-01T23:12:06.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "abf13269-707e-4a43-8a47-18d9a3b3f42e", + "createdTime": "2020-11-01T23:10:41.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0f3d2886-2fbc-4901-94d7-3ec08cadc37e", + "createdTime": "2020-11-01T23:12:01.666Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5ecf90b5-32df-4a2d-9b52-bd66f328e03f", + "createdTime": "2020-11-01T23:11:58.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3e4a2e23-197e-4e84-9379-76b2fed633b3", + "createdTime": "2020-11-01T23:11:56.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "570699e5-d174-49c0-a62d-21126f40ac0a", + "createdTime": "2020-11-01T23:11:52.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "68138ef0-1542-45b1-9448-4afabbdbfdb4", + "createdTime": "2020-11-01T23:11:49.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28d4e22f-d19e-46b5-8a37-05161410d91b", + "createdTime": "2020-11-01T23:11:48.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "245faeed-fb75-4548-b99a-bb32071cec3e", + "createdTime": "2020-11-01T23:11:44.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "535e9022-5ee9-44e8-87af-4b628adfb23e", + "createdTime": "2020-11-01T23:09:48.153Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfbf930e-6761-47f5-b0c7-bfda5785fb77", + "createdTime": "2020-11-01T23:11:25.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7d75c883-8765-4538-ab69-5d14b6ba61f4", + "createdTime": "2020-11-01T23:11:23.851Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b44b487b-7cc5-4166-a952-c71267d26c98", + "createdTime": "2020-11-01T23:11:20.509Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cd7cd844-360a-4c37-b210-bf951939acee", + "createdTime": "2020-11-01T23:11:18.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "71de49da-b06a-4b60-a044-34887afb6613", + "createdTime": "2020-11-01T23:11:17.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7bd447ac-a0db-4d02-959a-29771ec8c6da", + "createdTime": "2020-11-01T23:11:13.317Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5c7aeb65-7d67-4921-a890-a6f84022a7e6", + "createdTime": "2020-11-01T23:11:11.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "75766529-4ee6-44c5-9d0a-bc990fa0cb94", + "createdTime": "2020-11-01T23:11:11.764Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f2e79453-0b2f-410e-9e1e-74e597b3cde7", + "createdTime": "2020-11-01T23:11:10.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "921d3d0e-81d1-4838-93d8-75c30ad61f62", + "createdTime": "2020-11-01T23:11:10.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1b3c844d-a516-4967-ba91-6eb6ec2d1b38", + "createdTime": "2020-11-01T23:11:07.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5529d9a9-c26d-4159-bd00-b9fcc835bf50", + "createdTime": "2020-11-01T23:09:40.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a393ea14-cc95-4f5c-868b-bd7c1de9b4a3", + "createdTime": "2020-11-01T23:11:06.184Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b76487dd-0254-4546-ad35-9c9b9f5c72eb", + "createdTime": "2020-11-01T23:11:06.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fcbe671e-e9bf-4df4-83e8-395aef951540", + "createdTime": "2020-11-01T23:11:05.15Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fbc6eab8-54fb-4ef4-9a2d-2928645b33d4", + "createdTime": "2020-11-01T23:11:03.855Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ddca924-a31d-464e-a49d-1c9b9391c8d9", + "createdTime": "2020-11-01T23:11:02.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "beb10a0f-8ee2-44cb-8d34-4e4779c836fa", + "createdTime": "2020-11-01T23:11:01.558Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0b5c7432-9cb0-4b92-93de-12c163cf9b28", + "createdTime": "2020-11-01T23:11:00.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "42f2b2d1-cd91-441c-971e-3fcbe4c7f0dd", + "createdTime": "2020-11-01T23:10:59.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c30c1ed4-487d-4750-afca-6353486eece5", + "createdTime": "2020-11-01T23:10:58.18Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5fe07639-518f-4e0c-b4b8-921e35411105", + "createdTime": "2020-11-01T23:10:55.913Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d8405211-ef3f-453d-bf21-7000efec7114", + "createdTime": "2020-11-01T23:10:44.109Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e0151dcb-0962-41eb-b561-a77f41b15119", + "createdTime": "2020-11-01T23:09:36.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "671571ad-865e-413c-94db-a53a1ce4c870", + "createdTime": "2020-11-01T23:10:43.266Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3fa8f067-9de6-48c2-ab36-948ce0d8c73f", + "createdTime": "2020-11-01T23:10:39.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9013b617-291e-4c45-9ff6-17454f364dcd", + "createdTime": "2020-11-01T23:09:34.853Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9ddd3b8-f61b-4d1b-bcce-692db70672b2", + "createdTime": "2020-11-01T23:09:26.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4340947-c573-4a81-8380-853cd21adcd8", + "createdTime": "2020-11-01T23:09:50.094Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1b5f0137-3a45-40f8-a79e-416adef5193d", + "createdTime": "2020-11-01T23:09:48.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4eabd2ce-53fe-4b1f-9c11-6a4f8341e34b", + "createdTime": "2020-11-01T23:09:46.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2af10e98-71f8-420e-865a-90e91143ea96", + "createdTime": "2020-11-01T23:09:44.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fe7ed774-51eb-49f8-bb0d-53b02addd3a9", + "createdTime": "2020-11-01T23:09:42.986Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7418e2bd-a4fd-480d-840f-e41ccfb64ad0", + "createdTime": "2020-11-01T23:09:39.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0e2bc890-db6c-4f47-8a06-2207feea4820", + "createdTime": "2020-11-01T23:09:38.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8e3bd00b-9562-4429-b724-09bd6dbb1b8b", + "createdTime": "2020-11-01T23:09:37.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aa59fba8-0526-49a1-a548-af8c70bb3b25", + "createdTime": "2020-11-01T23:09:33.477Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9515153e-0cc1-4de3-a48b-fb887092a684", + "createdTime": "2020-11-01T23:09:30.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2306b910-cd2f-4d9a-a54a-7b1904ce7da8", + "createdTime": "2020-11-01T23:09:29.454Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "04977dba-f5b1-49b2-9a1f-ff2dbc3c3193", + "createdTime": "2020-11-01T23:09:24.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "72c9b414-f4b2-4d06-a8ce-3559dabcc028", + "createdTime": "2020-11-01T23:02:14.351Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2c43cb5-2f92-4c12-9918-10a84d0fc74c", + "createdTime": "2020-11-01T23:02:05.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f3e7388-f6e0-43d0-ae93-4649bc3dd582", + "createdTime": "2020-11-01T23:01:58.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d92c980b-868a-4a55-bfff-0f8649c98197", + "createdTime": "2020-11-01T23:01:55.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7c6143f5-ba5b-4831-a370-4beead0a64ae", + "createdTime": "2020-11-01T23:01:48.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc7ac2a5-0c02-4d52-8910-2a369a746ac2", + "createdTime": "2020-11-01T23:00:16.329Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b26f7f6-fee3-4874-9231-3304abd4e534", + "createdTime": "2020-11-01T23:00:09.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1d44c709-7ef0-4f4d-9a6c-6872a7107bb4", + "createdTime": "2020-11-01T23:00:05.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b1fcb9dd-3dea-48ad-bf26-a50ea5bbd115", + "createdTime": "2020-11-01T23:00:03.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eab3da0a-2ac6-4852-ad7c-6d3f0a6659a0", + "createdTime": "2020-11-01T22:59:57.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "53a3463e-60be-46f5-99d2-d3cc41a811f3", + "createdTime": "2020-11-01T22:57:56.34Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ce159a8-3190-4b16-a11d-4ce1933d7d2f", + "createdTime": "2020-11-01T22:57:51.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65796a48-1f49-40cc-abbb-4ee252d89062", + "createdTime": "2020-11-01T22:57:47.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "efa94367-fad7-4873-a181-55b853a5c654", + "createdTime": "2020-11-01T22:57:46.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "902fba6a-ac24-460c-bbed-d04b251d0d08", + "createdTime": "2020-11-01T23:02:17.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "070cd4a5-c8d7-4c47-b947-29b3982f846e", + "createdTime": "2020-11-01T23:02:15.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "57268e29-c4cc-41cc-8606-ee30681903e1", + "createdTime": "2020-11-01T23:02:11.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "24f9d02e-132d-4dd3-b2d0-dea887bd88c1", + "createdTime": "2020-11-01T23:02:08.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c2f09939-87c8-49ec-ae24-e943d149ee25", + "createdTime": "2020-11-01T22:57:41.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b26e2f2-9bb7-49c1-89a3-ef9bcfba4d9b", + "createdTime": "2020-11-01T23:02:07.726Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6246b583-5099-44bb-908b-e1ace53c2afa", + "createdTime": "2020-11-01T23:02:02.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "60abadee-da56-40f0-a389-6da23fddce4b", + "createdTime": "2020-11-01T23:02:01.274Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cd5b9369-6742-44fa-9c8c-c3e52b1c0c64", + "createdTime": "2020-11-01T23:01:59.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "075965c9-a805-4e13-9455-9d73cf51f526", + "createdTime": "2020-11-01T23:01:54.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "30e9e01b-e71d-46d9-a2d6-36260d468d5c", + "createdTime": "2020-11-01T23:01:51.776Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d5022db5-db88-42c9-a781-07706216af1c", + "createdTime": "2020-11-01T23:01:50.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f319f783-9acd-4a74-b2f5-650292bddd4f", + "createdTime": "2020-11-01T23:01:45.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8d760eb2-6f13-4d5b-a850-c7c8665e16a5", + "createdTime": "2020-11-01T22:57:35.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "278b0f39-3371-4223-b8cb-8d25b27b76fd", + "createdTime": "2020-11-01T22:57:34.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "959597a0-4aad-4dad-a9de-2a6c513f369b", + "createdTime": "2020-11-01T22:57:28.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bd4f8882-47f2-4506-a80a-fe9df1c2ca51", + "createdTime": "2020-11-01T22:57:27.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65d39347-9f35-412a-b850-cbf04049bbfa", + "createdTime": "2020-11-01T23:00:18.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "aa305d81-a08b-4ac8-a702-4d395f6d30a5", + "createdTime": "2020-11-01T23:00:17.219Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1df8bc6-23a6-4eef-8c9b-951825e80c8b", + "createdTime": "2020-11-01T23:00:14.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2aff7a7f-9a91-4d65-9338-fa9b4dc79f05", + "createdTime": "2020-11-01T23:00:12.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9cd2dc98-7030-4f99-b19e-7170b14eec3c", + "createdTime": "2020-11-01T23:00:11.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5df1efcd-1cba-4a45-8030-64b3c07de069", + "createdTime": "2020-11-01T23:00:08.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e6771a61-1eb9-4d03-a855-2aa33183228a", + "createdTime": "2020-11-01T23:00:07.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f4e484bd-d262-4477-bac6-197b58fcc99a", + "createdTime": "2020-11-01T23:00:06.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "84012aac-d007-4297-a34d-bde7ae8e018a", + "createdTime": "2020-11-01T23:00:02.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "66555e29-74b7-4486-a196-66e86c532cfa", + "createdTime": "2020-11-01T22:59:59.963Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8268c55a-f44e-4353-b0a9-8df6b27f3062", + "createdTime": "2020-11-01T22:59:59.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0d6513b3-dd0e-4902-9d1a-8261ef1034ec", + "createdTime": "2020-11-01T22:57:21.898Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "27b941f3-7ae5-48be-9b19-402c5fca6dcb", + "createdTime": "2020-11-01T22:59:55.312Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "af883bce-e418-4f00-a4b6-c9701eccbb43", + "createdTime": "2020-11-01T22:57:20.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "94093801-d9fb-4606-b12f-aa25792b07a1", + "createdTime": "2020-11-01T22:57:20.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "741fb06a-32a9-46f4-9af2-c3d84eeb8c6e", + "createdTime": "2020-11-01T22:57:19.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54362578-2e00-42d0-8102-9b9d1cf73b40", + "createdTime": "2020-11-01T22:57:58.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b3cb4a05-dbcc-4825-9579-1d78965c1369", + "createdTime": "2020-11-01T22:57:57.458Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bfbb3f0f-ace9-456c-b29d-f585290ee83a", + "createdTime": "2020-11-01T22:57:12.782Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6b2af519-cab7-490f-9ae8-2f2db68e7723", + "createdTime": "2020-11-01T22:57:55.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2282ded0-8b62-4c6f-bf3a-06367c157b4b", + "createdTime": "2020-11-01T22:57:53.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f2be6d0f-68a1-4ab2-aeee-57349866afd2", + "createdTime": "2020-11-01T22:57:52.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5d4029fd-8fbd-4860-a309-f9b6c86d10a9", + "createdTime": "2020-11-01T22:57:50.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0d4e7036-33d0-4860-8024-d8af1811489a", + "createdTime": "2020-11-01T22:57:49.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cde9b416-af8a-45f7-a382-264a9dd9a729", + "createdTime": "2020-11-01T22:57:48.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b983df67-c0d3-47ba-9aae-e4ea150278f1", + "createdTime": "2020-11-01T22:57:45.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "390f4e83-7d8f-4784-aa9d-773c0d849187", + "createdTime": "2020-11-01T22:57:43.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef84d53b-ed74-4c9b-b0a2-5789e40c7399", + "createdTime": "2020-11-01T22:57:42.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e1e421c4-c92d-42f5-9e48-818ff7ef9683", + "createdTime": "2020-11-01T22:57:39.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0ba31e6b-cc62-4b81-b816-ea4e3a8d84ef", + "createdTime": "2020-11-01T22:57:38.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e25c780d-3b86-48b1-976a-5821646912db", + "createdTime": "2020-11-01T22:57:37.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "af806f40-5c35-4bea-a35f-12e789da04da", + "createdTime": "2020-11-01T22:57:36.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "47ada503-7c92-4e4e-8d17-a7fdb24ac956", + "createdTime": "2020-11-01T22:57:35.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "28fb122a-b8c8-4511-831b-c69395800e44", + "createdTime": "2020-11-01T22:57:33.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a91ee95b-ea57-4871-87ef-b01363d3b075", + "createdTime": "2020-11-01T22:57:32.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7f196b96-9a9d-42ef-90ac-2e375229bff8", + "createdTime": "2020-11-01T22:57:07.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22324094-f684-4ab2-bfd6-a1af680c635b", + "createdTime": "2020-11-01T22:57:31.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7b152569-a0d4-44ce-a424-0f0981f87146", + "createdTime": "2020-11-01T22:57:30.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c10eb46c-5e54-40c9-9d2b-0bacf1f81c2d", + "createdTime": "2020-11-01T22:57:30.336Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "057959e5-92ed-47db-909b-9755624e3dfc", + "createdTime": "2020-11-01T22:57:29.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ccb425d1-abe0-4335-bfc8-f5066106ad6c", + "createdTime": "2020-11-01T22:57:25.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c08a3b56-01f0-4d3f-bb72-0f29e7d60d4c", + "createdTime": "2020-11-01T22:57:24.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "54ff2d63-9af3-4ebd-8c0c-3fe422b000e2", + "createdTime": "2020-11-01T22:57:24.584Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a9e0a737-a96e-4302-af88-1a055bed0ef7", + "createdTime": "2020-11-01T22:57:23.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6668d6cc-0bfc-43e0-9fda-5692937413be", + "createdTime": "2020-11-01T22:57:23.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9db9eefd-43c1-439a-bde3-5ac0a2a2521a", + "createdTime": "2020-11-01T22:57:22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "85bc49af-9157-4ee6-b014-c6c37c8cea96", + "createdTime": "2020-11-01T22:57:18.938Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6f015259-750b-4dc4-b5e5-dcec6dd2bcfb", + "createdTime": "2020-11-01T22:57:17.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "49db43a8-3fe8-4562-985b-e3c291287c7f", + "createdTime": "2020-11-01T22:57:16.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12bf30a1-c2c2-4f74-8513-dc4e68a974c4", + "createdTime": "2020-11-01T22:57:15.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "be7b1b62-007e-46c8-8d8e-a280c39eaff6", + "createdTime": "2020-11-01T22:57:10.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8522069f-5c68-4954-b1fe-cdd6d2a390fe", + "createdTime": "2020-11-01T22:57:09.842Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd73f521-bcba-43c1-aedc-37dae7aa6742", + "createdTime": "2020-11-01T22:57:09.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8e5baa00-6561-4df1-a437-4ef93953ffa9", + "createdTime": "2020-11-01T22:57:04.093Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eebd249a-45f5-4596-88dd-906fe01513d2", + "createdTime": "2020-11-01T22:55:11.5Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7b34e078-be8f-49da-ae08-7df5eda6f67d", + "createdTime": "2020-11-01T22:54:53.586Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46df3c2b-1fd0-4a87-abce-51fd5aeb829a", + "createdTime": "2020-11-01T22:55:34.289Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8ee81c99-a22a-45ec-a6dd-3797ec09042f", + "createdTime": "2020-11-01T22:54:50.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9193f1d2-d186-4d08-9201-37805e0a8a78", + "createdTime": "2020-11-01T22:55:17.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ab998b2a-280a-4b42-a160-e2c1b571cd3b", + "createdTime": "2020-11-01T22:54:49.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e8243fc8-dcf8-4502-8716-6d0440ccb20f", + "createdTime": "2020-11-01T22:54:56.647Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d2ce0413-0393-4f46-b223-94dd2f7a3607", + "createdTime": "2020-11-01T22:54:46.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "79abcfd6-bc24-456e-9f00-0a543d97b8b0", + "createdTime": "2020-11-01T22:54:55.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "03c7e926-34ae-49c4-a67d-574df1502b75", + "createdTime": "2020-11-01T22:54:54.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5653fec3-0835-4145-9753-377655fe4a65", + "createdTime": "2020-11-01T22:54:52.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "659c84b0-75b2-4ce9-980b-03ec105fbffc", + "createdTime": "2020-11-01T22:54:51.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f37847cd-2a5f-4fbe-8e75-59c432b3a66b", + "createdTime": "2020-11-01T22:54:51.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1ffc8570-3679-43b2-8925-77bfdf241c18", + "createdTime": "2020-11-01T22:54:49.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ad1d1fe-9fc3-47c4-af02-fe14a7d3f670", + "createdTime": "2020-11-01T22:54:48.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "11de391c-9027-4cbc-958f-71afc85c2c73", + "createdTime": "2020-11-01T22:54:47.562Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e18c1530-9000-4438-bcab-46985b585efb", + "createdTime": "2020-11-01T22:54:45.378Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "134e495f-921c-4fc5-b5e2-5f98824008e6", + "createdTime": "2020-11-01T21:48:17.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6cf57359-f9bb-4718-9869-072bd088ac98", + "createdTime": "2020-11-01T21:48:10.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3649b3a-2abb-4a80-9dae-e19e1f650d5b", + "createdTime": "2020-11-01T21:48:05.295Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d78da5f-7e1d-4932-a25b-8f82024aa3ec", + "createdTime": "2020-11-01T21:48:03.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ac1db540-2571-4eb5-94d7-faa30c58ba3f", + "createdTime": "2020-11-01T21:47:58.122Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "04ac5d3e-dcde-4b77-a0e5-5002a29a42e2", + "createdTime": "2020-11-01T21:46:16.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2facd463-7034-41a5-9335-8335163d38a1", + "createdTime": "2020-11-01T21:46:10.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "66186452-831c-4e36-acbe-d0c41a2ea776", + "createdTime": "2020-11-01T21:46:05.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f4a65930-5a81-4863-92ab-24c7f1f88448", + "createdTime": "2020-11-01T21:46:05.872Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b133e0d8-408f-409f-b789-2fb61d6ca940", + "createdTime": "2020-11-01T21:46:03.844Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "def8f419-c74d-46cd-801e-cb7bbc158d2f", + "createdTime": "2020-11-01T21:45:58.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ebc740d5-673d-46f6-919f-0e6d7b14398e", + "createdTime": "2020-11-01T21:45:57.975Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d133cc34-66d4-44dc-a121-6677d408316c", + "createdTime": "2020-11-01T21:45:51.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2de7f05b-e6a6-47bc-90f3-55eb6f7adb83", + "createdTime": "2020-11-01T21:45:49.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a0c8d859-0e1e-4b27-ab0d-ec55d7d5a6dd", + "createdTime": "2020-11-01T21:45:40.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "858f394a-f015-4f2b-9f4e-3ea7b79c3556", + "createdTime": "2020-11-01T21:44:50.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "410cf92a-3eab-4cd7-aa65-2a5884ff9ce0", + "createdTime": "2020-11-01T21:44:41.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85790a5e-a7c4-4352-b5ba-5adb1740db53", + "createdTime": "2020-11-01T21:44:40.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ea9a451e-b536-49a5-b698-bb88e880a77b", + "createdTime": "2020-11-01T21:44:34.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ddfb095e-b26f-42a3-9fae-f51519a433d6", + "createdTime": "2020-11-01T21:44:31.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "241f3275-7046-4dc8-ab5d-8d3f254b5599", + "createdTime": "2020-11-01T21:44:30.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c39160c5-49c4-474c-aca8-ffa89c1f9b36", + "createdTime": "2020-11-01T21:48:19.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e8177524-5e03-494c-bdc1-6e9939bfff3c", + "createdTime": "2020-11-01T21:48:18.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "efd1cd74-e588-44df-956f-acc4ba9d1a17", + "createdTime": "2020-11-01T21:48:15.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cd81cb9b-9474-4830-a5a1-06600c5826cb", + "createdTime": "2020-11-01T21:48:13.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "91ef6dbd-deb3-452d-b63f-9307566cb405", + "createdTime": "2020-11-01T21:48:12.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2564a06e-171a-4e51-802c-440e9d6aed92", + "createdTime": "2020-11-01T21:44:23.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eb161c8b-59e1-4de6-8456-837c7486ef85", + "createdTime": "2020-11-01T21:48:08.802Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cdbf9e20-868f-4705-b19d-4fd0fdf6be4e", + "createdTime": "2020-11-01T21:48:07.511Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f9108a5b-2136-47cc-94ea-aed09e000e0a", + "createdTime": "2020-11-01T21:48:06.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f89867f6-44f9-4400-a3be-592e97d44e1e", + "createdTime": "2020-11-01T21:44:23.507Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "26a1fe1d-8581-4ca6-9c53-f9b39d7fb2e0", + "createdTime": "2020-11-01T21:44:22.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "09d45fb7-5dfb-4fc8-bd47-da146b634057", + "createdTime": "2020-11-01T21:48:02.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fe551434-9031-43ba-b4a9-1eebe1c498ab", + "createdTime": "2020-11-01T21:48:00.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a181703-f540-4bce-b43d-60c113021233", + "createdTime": "2020-11-01T21:47:59.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "65e00250-1ee0-4538-9a20-930d155fd938", + "createdTime": "2020-11-01T21:47:56.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "25881f2f-019b-4396-b7e8-625d39eb2c42", + "createdTime": "2020-11-01T21:44:21.742Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9d57974a-d6cb-4c64-81a0-296317124af0", + "createdTime": "2020-11-01T21:44:16.627Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "940bd7ff-6ce3-4dfd-88dc-1133620fb5fa", + "createdTime": "2020-11-01T21:46:18.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "9d782a52-15e9-4646-ad79-7630dbe33573", + "createdTime": "2020-11-01T21:46:17.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8f9a53a-339e-4c5c-a24a-c213d1b4e817", + "createdTime": "2020-11-01T21:44:14.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0fd053ed-f01c-435d-ae5d-d2668e0d2ddd", + "createdTime": "2020-11-01T21:46:15.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "20cfa087-33fe-4c99-adb2-84416f118d8f", + "createdTime": "2020-11-01T21:46:13.01Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1e63634c-0bec-41ca-a959-56942117c097", + "createdTime": "2020-11-01T21:46:12.158Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12673a06-f7a0-4c29-a686-4d6c7c4d8dc5", + "createdTime": "2020-11-01T21:44:10.185Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "147f2d14-620a-413b-8f0c-e9813e352262", + "createdTime": "2020-11-01T21:46:08.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "74012c33-c4e7-48c4-b932-b4b48a494e10", + "createdTime": "2020-11-01T21:46:08.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b4d08e12-8a99-4d6d-b758-39f5da777b9d", + "createdTime": "2020-11-01T21:46:08.012Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "8fd9cf18-764a-4283-8a3d-3bd5e9070e0d", + "createdTime": "2020-11-01T21:46:07.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6edd6fe6-8e70-451d-8c08-049cbb0876db", + "createdTime": "2020-11-01T21:46:06.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7462e986-13e7-41d7-b1d9-9f4bf269e923", + "createdTime": "2020-11-01T21:46:03.598Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "75473976-0e62-4283-a1a7-fb30fc3c352e", + "createdTime": "2020-11-01T21:46:02.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "be203e07-6bcb-48cb-abd9-a929dee2b708", + "createdTime": "2020-11-01T21:46:01.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8bacf32a-6c10-4c48-bc59-c19b406647e5", + "createdTime": "2020-11-01T21:46:00.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cbb44aa2-dd27-4b03-8ec6-e177adb89cfc", + "createdTime": "2020-11-01T21:46:00.244Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "70dc3dc8-6376-49bc-bac0-4748fd6981f5", + "createdTime": "2020-11-01T21:45:59.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "541690a2-3a63-4984-bd50-dce8700a80fc", + "createdTime": "2020-11-01T21:44:08.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b7c265c9-eb3e-40b3-bcde-d3f231efd6dc", + "createdTime": "2020-11-01T21:45:56.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9d1df958-e56e-406c-b236-cfbfacbc7b65", + "createdTime": "2020-11-01T21:45:55.375Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "a3daff7e-e9ee-40b4-8de8-0b41eb4c802f", + "createdTime": "2020-11-01T21:45:54.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "798588e3-425c-4489-bbb2-cffc47ff84e2", + "createdTime": "2020-11-01T21:45:52.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6bec528-4c49-40d1-a6cb-6a3ce0b23403", + "createdTime": "2020-11-01T21:45:47.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9e383ade-9b06-4257-af03-ab50989c4833", + "createdTime": "2020-11-01T21:45:44.636Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a9c34dae-e693-49d9-84b7-846d4236578c", + "createdTime": "2020-11-01T21:45:43.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a2f127af-1b1a-4af5-8469-4fff29fb1e9d", + "createdTime": "2020-11-01T21:45:38.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5d6f99b6-8590-4fbb-b5d5-1bca77a10385", + "createdTime": "2020-11-01T21:44:02.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "661e0e1e-984c-404f-984c-fbbd5abfcfea", + "createdTime": "2020-11-01T21:45:03.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "86ca4b8f-2d15-4107-810b-fceb2aba4d09", + "createdTime": "2020-11-01T21:43:10.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "08ab2f0c-4bfb-4f1a-af15-3981aecc51c3", + "createdTime": "2020-11-01T21:44:51.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "301e6496-617d-4b80-a0b3-79598d30769b", + "createdTime": "2020-11-01T21:44:47.821Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b6116ae-b99d-47a0-b6af-0957d6962e53", + "createdTime": "2020-11-01T21:44:45.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "18427184-db9d-448e-ad2b-639f0b68e914", + "createdTime": "2020-11-01T21:44:44.673Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "43e2d330-d73e-4f17-823c-08b6bac594c8", + "createdTime": "2020-11-01T21:44:44.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "30756859-0072-4863-802e-64c35693cb3a", + "createdTime": "2020-11-01T21:44:42.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c52fb1e2-c177-43ba-a914-a1afb93a1cc9", + "createdTime": "2020-11-01T21:44:38.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "103e75b1-3029-4046-af77-51861b56b022", + "createdTime": "2020-11-01T21:44:38.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2a872176-6d1e-47fd-8d1b-2b92c5c8f8da", + "createdTime": "2020-11-01T21:44:37.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ea0e1e3d-fa3d-464d-afda-9ee37422c6ca", + "createdTime": "2020-11-01T21:43:03.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18751398-2f7c-4563-8cbb-0d0921acee96", + "createdTime": "2020-11-01T21:44:35.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "094fdaa7-672f-4f2c-9b6c-4ddceee4032b", + "createdTime": "2020-11-01T21:44:35.524Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a760150-1071-4e2e-839f-759059438794", + "createdTime": "2020-11-01T21:44:34.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3fb00cfd-3b44-4575-b0dc-401adbd4703a", + "createdTime": "2020-11-01T21:44:29.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "281da9cd-3078-4ddb-b6fd-c4eebc730377", + "createdTime": "2020-11-01T21:44:27.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4fd7f053-1fbe-4c6e-b010-adb7bfef21a9", + "createdTime": "2020-11-01T21:44:27.111Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ef8340d-00b5-4076-9c52-a1da8b41eabd", + "createdTime": "2020-11-01T21:44:26.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "90d2e93a-8757-4868-bc87-3495ecfc4048", + "createdTime": "2020-11-01T21:44:26.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4a8bc7cc-15be-4b13-ad01-53b20ededcc1", + "createdTime": "2020-11-01T21:44:25.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "34903583-b8c9-4db6-a625-4602918a0daa", + "createdTime": "2020-11-01T21:44:24.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "94114bdb-f646-426f-8b95-65e7a4d31794", + "createdTime": "2020-11-01T21:44:23.758Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b090c7e4-f199-4cad-9fa5-9ce8fd24a8fe", + "createdTime": "2020-11-01T21:44:21.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "690e7ff2-5731-4dc7-8d6d-ba5183ef788c", + "createdTime": "2020-11-01T21:44:21.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5c3de47b-1bf1-48a9-bf25-4ceb78edb953", + "createdTime": "2020-11-01T21:44:20.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "55da33d0-f836-4bee-856c-0c0dc0f88c0f", + "createdTime": "2020-11-01T21:44:19.388Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "30256ae0-a193-455b-8e39-4b46a6f30442", + "createdTime": "2020-11-01T21:44:18.253Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6410d911-9a8c-4d84-bb40-d6b0a5103541", + "createdTime": "2020-11-01T21:44:17.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7f400001-6cbe-4ccb-ab0f-4cddf42f066b", + "createdTime": "2020-11-01T21:44:17.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "adea190b-6371-4aa2-bcbb-f796c44ce979", + "createdTime": "2020-11-01T21:44:14.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2d76262d-1215-4a3f-b8dd-290aa8fda9a9", + "createdTime": "2020-11-01T21:44:13.557Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "bad1ee8b-c4b6-4340-8281-9ffb078922cc", + "createdTime": "2020-11-01T21:44:11.456Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "75479d7d-7d0f-4cd3-8d41-87e7058900ca", + "createdTime": "2020-11-01T21:44:11.318Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b289c12c-02de-4d73-96db-59dc7c6ca8a6", + "createdTime": "2020-11-01T21:44:07.791Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "093d8472-ad3e-41a0-aa33-1a15819998d3", + "createdTime": "2020-11-01T21:42:52.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f55e8999-1bc0-4342-be49-4eb4e216a2f6", + "createdTime": "2020-11-01T21:44:05.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3d7cc6ca-d702-4110-bf15-ad2990ce1541", + "createdTime": "2020-11-01T21:44:04.273Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e5774869-3842-40aa-8a55-f5c201aed1d7", + "createdTime": "2020-11-01T21:43:59.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f91106a4-e162-4846-ac2e-9532de00638c", + "createdTime": "2020-11-01T21:42:48.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3505830a-cd3f-4740-a21d-9489037c6256", + "createdTime": "2020-11-01T21:43:13.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e9d19fe8-2974-4f38-907d-cb190a9692d0", + "createdTime": "2020-11-01T21:43:11.835Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9a89df99-4010-4934-b603-c711f023a5e2", + "createdTime": "2020-11-01T21:43:08.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1dc36d04-bf49-4538-a962-737e02f6fb69", + "createdTime": "2020-11-01T21:43:06.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f67b4cf-5c6b-4104-ad64-a69d02900e87", + "createdTime": "2020-11-01T21:43:05.498Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0c8173bf-769b-45b2-93ea-6698eaccd935", + "createdTime": "2020-11-01T21:42:35.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f1637944-5055-43f3-a72b-553f445cbc8b", + "createdTime": "2020-11-01T21:43:01.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7b4ce42a-377a-4677-a4c8-6fb02c426ac0", + "createdTime": "2020-11-01T21:43:00.173Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b153450f-b771-46b1-99d9-79d3b162fe1e", + "createdTime": "2020-11-01T21:42:58.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1ff51acd-ac1d-41ad-a628-cf9ddab02dd0", + "createdTime": "2020-11-01T21:42:43.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e3cf04fc-fa6c-4a0b-8f97-7b5846f3e8a4", + "createdTime": "2020-11-01T21:42:39.796Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ff239ab-1f32-4931-958e-c4b2d57074a9", + "createdTime": "2020-11-01T21:42:38.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c1546de5-68f3-442e-8a57-360a8024dea0", + "createdTime": "2020-11-01T21:42:31.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "88a453d6-724d-4410-9de1-31745b1f675e", + "createdTime": "2020-11-01T21:30:59.98Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43165539-089a-4a73-b665-c4b4a5c6ad7e", + "createdTime": "2020-11-01T21:30:52.501Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0431bb97-1092-41c6-8681-3c7bd20a2a62", + "createdTime": "2020-11-01T21:30:46.27Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "850b6363-5388-4f69-a034-2d98cbf1b738", + "createdTime": "2020-11-01T21:30:43.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e9018d8-0c2d-47d6-8ffd-3cd601d2c05e", + "createdTime": "2020-11-01T21:30:30.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "04550e3f-033d-4b88-a563-957c6cb435c2", + "createdTime": "2020-11-01T21:28:25.741Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a3c5046-0a9a-4351-9b16-fa656bc0c984", + "createdTime": "2020-11-01T21:28:19.983Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "01944d0b-1d89-4f44-9026-7ad3b1d48ab3", + "createdTime": "2020-11-01T21:28:14.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "57aa2375-b52c-4fcc-86d3-07c8c9902fa2", + "createdTime": "2020-11-01T21:31:02.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "24cd6550-a3ae-4cdc-b4cf-70012aef4288", + "createdTime": "2020-11-01T21:31:01.191Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e16e135b-b019-43c2-b58d-e44c6ab1ae5f", + "createdTime": "2020-11-01T21:30:57.675Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bec8557b-6795-4672-bf46-8431b7b4c49e", + "createdTime": "2020-11-01T21:30:55.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1d561cd-97d5-490d-b5cb-7cabadf72ab4", + "createdTime": "2020-11-01T21:30:54.493Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4d10981e-bbf3-4324-9231-2a103c1647a4", + "createdTime": "2020-11-01T21:28:13.366Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b6172e94-c91c-4645-bf9b-f19f763c0da8", + "createdTime": "2020-11-01T21:30:50.217Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d670fda1-37aa-41d8-87e2-76fe5a342bff", + "createdTime": "2020-11-01T21:30:48.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "47f08b37-1024-497e-ab9c-64a23c830835", + "createdTime": "2020-11-01T21:30:47.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "78430d6d-a3ec-418a-b109-768b1ac35812", + "createdTime": "2020-11-01T21:30:42.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4b92e48d-10cc-4697-a645-c44693609ed0", + "createdTime": "2020-11-01T21:30:39.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "197358eb-38d7-49e8-bf7d-d8e155bdfc26", + "createdTime": "2020-11-01T21:30:38.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "90aeeb00-3f9f-4736-9e85-5b91edaae06b", + "createdTime": "2020-11-01T21:30:28.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "433741c5-0b44-4607-9ad6-d8b02776f19c", + "createdTime": "2020-11-01T21:28:06.974Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71b2d277-b30c-44a3-ad7e-28da30a14952", + "createdTime": "2020-11-01T21:27:17.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72a6a8de-1d4a-4fee-afb1-5da4c3e707e9", + "createdTime": "2020-11-01T21:26:53.927Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6e2e8e9-d80e-4c57-a641-f3a3e661ed41", + "createdTime": "2020-11-01T21:26:47.175Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e4384ac-1de0-492d-bc03-92aa83ae482f", + "createdTime": "2020-11-01T21:26:45.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3f34b629-8091-4c5a-9a15-7be5bd2b4457", + "createdTime": "2020-11-01T21:28:27.916Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fd3a42ce-9a5f-44e1-965b-e1d4f3e6b7b0", + "createdTime": "2020-11-01T21:28:26.582Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d6f579e-1374-41d2-b38d-9d9967367edf", + "createdTime": "2020-11-01T21:28:24.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "54a01ba0-83ca-43b7-bd2e-3d03c0977999", + "createdTime": "2020-11-01T21:28:22.383Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2ae288ee-58c4-4d72-b340-1a8ed486f50b", + "createdTime": "2020-11-01T21:28:21.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "03a2be4f-9840-4260-9bc5-971b8aac2c31", + "createdTime": "2020-11-01T21:28:18.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ce45c2aa-37ee-4099-ad39-b47116cee45d", + "createdTime": "2020-11-01T21:28:17.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "116581a9-f352-40f5-9aff-1356329dde00", + "createdTime": "2020-11-01T21:28:16.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1ef391d-22ef-46ac-8e0c-6c85e24e258a", + "createdTime": "2020-11-01T21:26:37.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5a8aed1-b007-4366-bb29-0fe5cfab33d0", + "createdTime": "2020-11-01T21:28:12.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "63964284-3062-4656-8110-faa32602bff7", + "createdTime": "2020-11-01T21:28:09.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "91ab7e31-cf7b-4d1c-bb05-023dd6066923", + "createdTime": "2020-11-01T21:28:08.815Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2064a0e5-f4d3-41a1-84b8-3496a2957511", + "createdTime": "2020-11-01T21:28:05.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "afc721e3-ce22-4e09-af82-b7302ae25a54", + "createdTime": "2020-11-01T21:25:26.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72d63c77-f3ec-4f63-831c-ce6653043432", + "createdTime": "2020-11-01T21:27:20.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ea9e9d17-95ee-4e8f-adf5-c166c5932974", + "createdTime": "2020-11-01T21:27:19.068Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "529b0721-e2fc-4aa7-b5a7-9971f3ebbc39", + "createdTime": "2020-11-01T21:25:20.561Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "122e05f0-be1f-4497-aea9-428fed4e968d", + "createdTime": "2020-11-01T21:27:15.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1ea30d61-f92d-41ee-a5d5-af470c39e0cd", + "createdTime": "2020-11-01T21:27:08.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a8e58031-f44a-4ca1-9796-e71155ebb9d8", + "createdTime": "2020-11-01T21:26:56.57Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f44a532-ef59-4ee1-8837-cc4718974df5", + "createdTime": "2020-11-01T21:25:19.06Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d90113d3-e634-43c5-9093-c623a85bcaaf", + "createdTime": "2020-11-01T21:26:51.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9835ed43-6584-40d2-8439-c46e022d6038", + "createdTime": "2020-11-01T21:26:49.931Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fd4cce58-33f7-44a4-a3b6-757889e482df", + "createdTime": "2020-11-01T21:26:48.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b8ba625-3ea4-4b7d-b994-a014eb95993c", + "createdTime": "2020-11-01T21:26:43.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "09aee035-ea30-4fa6-859d-b10276c7299d", + "createdTime": "2020-11-01T21:26:40.908Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b54e3624-945b-44ba-92bd-b81875e81e88", + "createdTime": "2020-11-01T21:26:39.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3701b9b6-22a0-4ead-aa39-446f06b7400f", + "createdTime": "2020-11-01T21:26:34.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "66f266b4-e8bc-4883-bcf1-960e5eb160e6", + "createdTime": "2020-11-01T21:25:15.971Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8dfc6917-802d-4eb2-a5c0-843af66ff5c6", + "createdTime": "2020-11-01T21:25:13.221Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6760bc87-ccd8-46db-9fd5-48d36eb2ff21", + "createdTime": "2020-11-01T21:25:29.52Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "9fcd49c1-498f-46b2-a1c3-be34f3147ff4", + "createdTime": "2020-11-01T21:24:31.83Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b35f0fe0-2b7d-4df9-80e3-eb2f78a67f83", + "createdTime": "2020-11-01T21:25:27.671Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6a9a0060-e9d3-463e-ac4b-172e134707cd", + "createdTime": "2020-11-01T21:25:24.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6dd05df9-de25-451f-bb6f-9aa5070bce42", + "createdTime": "2020-11-01T21:25:22.415Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7fd7a0fc-5400-4304-a6d0-ac7605e2671f", + "createdTime": "2020-11-01T21:25:21.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e96dabb5-09d9-422e-aada-9d56ed3e1076", + "createdTime": "2020-11-01T21:25:21.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "33aed88d-c08d-4412-87fa-8c395ee45b87", + "createdTime": "2020-11-01T21:25:20.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "296b144c-72c1-4ed6-a338-0e5a6615df02", + "createdTime": "2020-11-01T21:25:19.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a1a45217-b3f6-4002-a31f-66cb49ef1594", + "createdTime": "2020-11-01T21:25:17.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b8496063-cc8e-4e80-9108-21e1122be844", + "createdTime": "2020-11-01T21:25:17.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c22e139f-8dba-4e71-8a10-29a6b6244449", + "createdTime": "2020-11-01T21:25:17.041Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "099d0a65-e20f-4b9c-84fb-ec4f2c29bf7a", + "createdTime": "2020-11-01T21:25:15.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "924fa238-804a-4304-adc8-e096ce072ca7", + "createdTime": "2020-11-01T21:25:14.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cb2ffba3-91bc-40c6-a9c0-c16a525d7aa6", + "createdTime": "2020-11-01T21:25:14.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ae6a5608-191e-42c2-a2e7-af0d80bab2e1", + "createdTime": "2020-11-01T21:25:13.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7ad8a7e9-9660-44e3-9a26-4cc654e0b2f9", + "createdTime": "2020-11-01T21:24:30.831Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b8d4fc30-a60f-45a5-9f75-196559a070c0", + "createdTime": "2020-11-01T21:24:29.934Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "71dac4d7-5bda-43f9-b2a9-3dbf100df4fc", + "createdTime": "2020-11-01T21:24:26.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5465780b-6a96-43bc-8b43-bb8c396ad4cd", + "createdTime": "2020-11-01T21:24:26.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cdc94220-bf87-467d-a659-ee1e5ef6868b", + "createdTime": "2020-11-01T21:24:31.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e440503d-1d4e-4793-b822-d07338e73057", + "createdTime": "2020-11-01T21:24:30.953Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "19c2ace4-004f-4ae2-b0cd-e7ed07ef5158", + "createdTime": "2020-11-01T21:24:29.399Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "70d558ee-a785-42f1-a248-72bb707cc71e", + "createdTime": "2020-11-01T21:24:28.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "86ad9a26-567e-4f91-83e9-5dccc883b645", + "createdTime": "2020-11-01T21:24:28.391Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "27f06fa6-6a7f-4530-b98d-ad52fef0b9a1", + "createdTime": "2020-11-01T21:24:27.891Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1abb6502-8a87-4e58-b9ee-66d9bec28fb8", + "createdTime": "2020-11-01T21:24:27.442Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "63b393f8-dc48-49b6-8dda-a3b4758bf57f", + "createdTime": "2020-11-01T21:24:25.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4bf00e40-64e5-4c6b-84b5-841ade6bff7a", + "createdTime": "2020-11-01T21:24:25.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "435a4570-f133-4020-b790-47031c3de6b7", + "createdTime": "2020-11-01T19:43:52.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07174982-48f8-4590-8dc3-4adc1e1bdb30", + "createdTime": "2020-11-01T19:43:44.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2d1837e-89da-4a92-89f5-a0b0cb2f9130", + "createdTime": "2020-11-01T19:43:36.774Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e69540f2-09e4-4cff-b6d8-f51fd054c3a9", + "createdTime": "2020-11-01T19:43:34.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c288d2a9-c8af-4cb5-bcbd-ac5440ef9e6d", + "createdTime": "2020-11-01T19:43:24.753Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d63b93d6-a3b7-480e-8460-c2722878c171", + "createdTime": "2020-11-01T19:42:39.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b77cf197-ef78-49cf-8e9d-26b28e4ea837", + "createdTime": "2020-11-01T19:42:33.023Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69ca6d99-4dc8-4896-ab0a-3936f7ea58bf", + "createdTime": "2020-11-01T19:42:27.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ed7afd78-66e0-4dab-8a78-4e011afa8306", + "createdTime": "2020-11-01T19:42:25.53Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bacbc250-1e6c-4501-9a74-4cc7bc2aba07", + "createdTime": "2020-11-01T19:42:20.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98aea00c-0d7a-4e4b-9bda-7218c7521253", + "createdTime": "2020-11-01T19:43:56.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c7f6da07-8a04-410d-ad46-a42be5b05c13", + "createdTime": "2020-11-01T19:43:54.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd65ee61-f870-4808-a3d9-9dfad0ed16a4", + "createdTime": "2020-11-01T19:43:50.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bbe7f921-97a2-4d8d-b3d6-1460eb976fe8", + "createdTime": "2020-11-01T19:43:48.092Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1aee596e-6e6f-476b-933b-3e9c0d7425be", + "createdTime": "2020-11-01T19:43:47.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3a21c8be-d0bf-487c-930b-842691f10051", + "createdTime": "2020-11-01T19:38:03.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "243536fc-a613-4c2b-b99b-3435e3a5932a", + "createdTime": "2020-11-01T19:43:41.896Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "54c2ce31-7136-43e6-8f06-0c43a165462a", + "createdTime": "2020-11-01T19:43:39.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "23cddd30-5141-4270-978c-eccf8aae1c8e", + "createdTime": "2020-11-01T19:43:38.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad3924c1-6657-4a51-bdbb-0b51bd8667fd", + "createdTime": "2020-11-01T19:43:31.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3530205f-aebc-49b0-a853-a50e0efdd02b", + "createdTime": "2020-11-01T19:43:28.546Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8b689bcb-724e-49fa-9091-482df50c65e2", + "createdTime": "2020-11-01T19:43:27.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6b71897-f26c-4d84-a7af-a94c379368fc", + "createdTime": "2020-11-01T19:43:21.793Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4d00226d-b7a9-4d65-8f09-7d17e104f499", + "createdTime": "2020-11-01T19:38:03.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ab7cbb13-95af-4cdf-b27b-3e60c05485b7", + "createdTime": "2020-11-01T19:37:56.56Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "360b2cd4-742e-4181-a3a6-72824725141d", + "createdTime": "2020-11-01T19:42:41.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ab961d47-ca2e-4776-96e7-4596a6eafd30", + "createdTime": "2020-11-01T19:42:40.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7c24b491-7609-4f2a-811f-e03f2706fa94", + "createdTime": "2020-11-01T19:42:37.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "42aefa61-55f1-47ba-96cf-d2fe7a89bade", + "createdTime": "2020-11-01T19:42:35.694Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e59e3228-7611-46e4-9b66-e7477383452b", + "createdTime": "2020-11-01T19:42:34.72Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "398db3af-cfce-4087-82e0-6d894718754c", + "createdTime": "2020-11-01T19:42:31.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2179aafa-3c8f-4ffc-9201-ad794bb079f1", + "createdTime": "2020-11-01T19:42:29.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "918001c6-0bfa-48f9-8c25-2ee895814cc2", + "createdTime": "2020-11-01T19:42:28.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c75a817c-a697-4737-babe-cb7f0fa3b35e", + "createdTime": "2020-11-01T19:37:54.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f8b26e83-f175-48c2-8709-3dfcfe1fa349", + "createdTime": "2020-11-01T19:42:24.574Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "90e2db96-a1ad-423b-9c38-4deb3c19f73b", + "createdTime": "2020-11-01T19:42:22.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "88dfb898-9c9b-4330-a273-c7dc3e83bca5", + "createdTime": "2020-11-01T19:42:21.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "45bea000-2d38-4227-97fb-63a909b91edd", + "createdTime": "2020-11-01T19:42:18.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "eb3d2659-9db5-4633-895a-b3f74dba837b", + "createdTime": "2020-11-01T19:37:51.421Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51e347e0-2d70-4b46-b7fb-a6aa995bf2c7", + "createdTime": "2020-11-01T19:37:49.924Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "150bd78a-9770-4a4e-92b4-7c7ebe5e4893", + "createdTime": "2020-11-01T19:37:47.961Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6d22f3a1-1ffd-4a42-99cd-3901f8638c1a", + "createdTime": "2020-11-01T19:37:45.478Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "af5f48b1-2a3a-4c8d-945a-269917568d8b", + "createdTime": "2020-11-01T19:37:43.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25fe1f70-c0a7-41ac-8e38-b5431806c17f", + "createdTime": "2020-11-01T19:37:38.112Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2d15546-97fc-4c4b-b996-b9bc4f912df5", + "createdTime": "2020-11-01T19:37:04.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b206f857-ca72-41ae-b421-f1e5a7a7cc3a", + "createdTime": "2020-11-01T19:36:58.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5825b8d2-d160-47ce-9f49-06466a544817", + "createdTime": "2020-11-01T19:36:54.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8887307d-22ae-43df-8e87-f10530c5629e", + "createdTime": "2020-11-01T19:36:53.232Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25b1a53c-a031-4643-9f85-121e80af1d33", + "createdTime": "2020-11-01T19:38:06.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2adf2a50-2efa-48e7-955d-857037c06823", + "createdTime": "2020-11-01T19:38:05.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c73f87cc-05de-4ece-85fb-f75a4a33728b", + "createdTime": "2020-11-01T19:38:04.668Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0ac8e75c-0dbb-4576-96cb-806b7ca374b2", + "createdTime": "2020-11-01T19:38:04.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6a2241f2-7660-469e-a8a8-4b8e26ba3831", + "createdTime": "2020-11-01T19:38:01.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5ea61e88-b708-42be-a4ab-3296ed40a4c4", + "createdTime": "2020-11-01T19:38:01.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bc201746-2272-4cf3-810d-0d006d55d3d4", + "createdTime": "2020-11-01T19:37:59.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d0869f7b-f3df-4685-bfd2-3339aea4b6cf", + "createdTime": "2020-11-01T19:37:58.818Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "930a262f-fa71-4756-9c9e-26cbfebe670d", + "createdTime": "2020-11-01T19:37:58.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8e37d89f-c875-4eae-a2c8-11e41002510f", + "createdTime": "2020-11-01T19:37:57.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c298c0e5-a4df-446f-aa32-e3496035bb44", + "createdTime": "2020-11-01T19:37:54.84Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f09db36d-8d67-41a5-a7c6-d9c8613866eb", + "createdTime": "2020-11-01T19:37:53.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "01c84a3c-f732-4ed7-a7f4-1d5543f80a4b", + "createdTime": "2020-11-01T19:37:52.409Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "db021f35-6978-4374-a87e-da7a53c0bd99", + "createdTime": "2020-11-01T19:37:52.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f123ca70-414a-44f4-9b03-1f6b87c23094", + "createdTime": "2020-11-01T19:37:50.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "bb2f659e-f697-4418-a943-73efd76d184e", + "createdTime": "2020-11-01T19:37:49.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0ef7b5c7-3391-4950-963c-62ff5696065e", + "createdTime": "2020-11-01T19:36:48.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18590313-1059-4935-9240-9eab189f5b05", + "createdTime": "2020-11-01T19:37:48.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cb3258c2-5a34-4ffc-a73b-c4f9607a7a61", + "createdTime": "2020-11-01T19:37:46.353Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ecbfd8a4-abf6-4647-98d0-57978125be74", + "createdTime": "2020-11-01T19:37:45.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c77d02b7-5d01-4a52-b089-d11de3b68717", + "createdTime": "2020-11-01T19:37:44.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5e4e2b9f-d40c-4620-a4e1-f23714bddab7", + "createdTime": "2020-11-01T19:37:41.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "37d5adb7-0b80-44b7-a32d-251792a912de", + "createdTime": "2020-11-01T19:37:41.632Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8a2c176a-ad0a-4b94-87af-c94aa3e031d3", + "createdTime": "2020-11-01T19:37:40.605Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0ce6b442-de5c-4bcb-bee3-75612a14864d", + "createdTime": "2020-11-01T19:37:35.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8972f225-a625-44d7-b7ef-2eacd5171741", + "createdTime": "2020-11-01T19:36:38.578Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e67e8792-d2dd-4095-90f6-ba94572da5e5", + "createdTime": "2020-11-01T19:36:34.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b29fa6d1-0d3c-42c6-9dc2-96c481d7165e", + "createdTime": "2020-11-01T19:37:05.919Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "874a4fb2-6805-4666-a578-62ba2c8e3bd3", + "createdTime": "2020-11-01T19:37:04.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b7a62e51-e65b-4fe9-abc1-c70e961de2b0", + "createdTime": "2020-11-01T19:37:02.573Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b4b82e39-81ab-40da-8b08-e45c5050871f", + "createdTime": "2020-11-01T19:37:00.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "93c124fb-6f33-4d00-b6d3-f12d3ff65c8a", + "createdTime": "2020-11-01T19:37:00.397Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fe757621-1124-4c36-98af-42981b81a78f", + "createdTime": "2020-11-01T19:36:32.39Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c68e1aa8-e2a4-4876-915e-30ca4cb7532a", + "createdTime": "2020-11-01T19:36:57.126Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ae6d94c5-d0ee-406e-aad2-82e4424914f0", + "createdTime": "2020-11-01T19:36:56.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "35aeb3cd-76d7-46ac-a7d4-c7f31069c6d1", + "createdTime": "2020-11-01T19:36:55.25Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "59f84df4-b7ac-41b8-8058-4586ff651851", + "createdTime": "2020-11-01T19:36:52.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "329b8465-a0d7-46c9-bcd9-edcc7caced49", + "createdTime": "2020-11-01T19:36:50.471Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6f6f20fc-7019-451b-a35c-5b98626d08c2", + "createdTime": "2020-11-01T19:36:50.042Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b2905d3-650e-4e88-9792-646c6531155d", + "createdTime": "2020-11-01T19:36:31.531Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cc0c47a-2479-4307-95c6-c102b1795129", + "createdTime": "2020-11-01T19:36:46.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8b5624fc-e1a6-4237-b350-f20de99d4e4a", + "createdTime": "2020-11-01T19:36:39.762Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "26401bfb-ef32-4ccd-9a4f-76396423e709", + "createdTime": "2020-11-01T19:36:39.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ec61da5-6608-4bf0-ab61-5e3684de6e87", + "createdTime": "2020-11-01T19:36:37.743Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6cafce6b-39a4-4712-8926-cdf9a14a60b4", + "createdTime": "2020-11-01T19:36:28.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64c8b0aa-a1b8-4bb5-8768-577811092601", + "createdTime": "2020-11-01T19:36:36.506Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "44f6643c-1729-4fb9-bee9-c6bcdc678a4a", + "createdTime": "2020-11-01T19:36:35.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6c0a620-0344-4e9d-a6f4-4427dd805d58", + "createdTime": "2020-11-01T19:36:34.019Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8c864d84-9183-4f89-a9a9-07ffccdc3a75", + "createdTime": "2020-11-01T19:36:33.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a5f23013-e2ba-4271-babf-c9b43ad976a4", + "createdTime": "2020-11-01T19:36:32.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef2250f4-bd2b-409a-a91a-49b477d85f12", + "createdTime": "2020-11-01T19:36:30.977Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "99d4f2c8-8b4f-453e-b291-7f97602ed6f1", + "createdTime": "2020-11-01T19:36:29.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "39368c97-3613-4dc5-acf3-81e9a06c49d1", + "createdTime": "2020-11-01T19:36:29.247Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2c4f561c-9d9b-4bac-9469-63480239f43a", + "createdTime": "2020-11-01T19:36:27.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7fe1d3c3-3ec2-4702-a488-299e8b3e3297", + "createdTime": "2020-11-01T09:18:35.809Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7577febf-3014-4bce-806a-6452fe2eef92", + "createdTime": "2020-11-01T09:18:34.468Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e7dd531-0e0c-43ea-af49-27f6d31bee43", + "createdTime": "2020-11-01T09:18:37.521Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "1df7608f-8188-4b84-9f51-e053aab7d92e", + "createdTime": "2020-11-01T09:18:28.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "132b691e-7f5c-470f-a76a-c2edae1bdd58", + "createdTime": "2020-11-01T09:18:36.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ca168699-9d6c-4fa9-a0da-4530ba144854", + "createdTime": "2020-11-01T09:18:33.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8c90d17-c650-4a70-bc18-c8c5add48f68", + "createdTime": "2020-11-01T09:18:31.091Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "da2b36fc-17e3-4a64-95b1-b500818ab1be", + "createdTime": "2020-11-01T09:18:30.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ddaf9f51-372d-44d7-b528-f4a260791ba5", + "createdTime": "2020-11-01T09:18:26.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e9456808-0e10-4762-a05e-795bce4753e8", + "createdTime": "2020-11-01T09:17:03.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5ebd2111-662f-4ed4-9df3-c6f0ace77e98", + "createdTime": "2020-11-01T09:17:05.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0f575d87-f4db-4a09-994d-9dcc088b3056", + "createdTime": "2020-11-01T09:16:56.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64247b65-4eff-4875-84d1-2d106845d015", + "createdTime": "2020-11-01T09:17:04.523Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e0323b95-4d18-4275-9678-964e7fbc39ae", + "createdTime": "2020-11-01T09:17:02.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "daf9aebd-2e0e-455e-871e-20224a15be61", + "createdTime": "2020-11-01T09:16:59.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a0a4714-fbcc-4aa5-ac6a-83bdcb43657b", + "createdTime": "2020-11-01T09:16:58.422Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a226d59-4262-44d0-bdd5-91b9d42722b3", + "createdTime": "2020-11-01T09:16:54.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "45b29ef8-0d8b-41bb-b74d-8283aabe5c75", + "createdTime": "2020-11-01T08:32:58.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1c6dd5e7-eb49-4514-9550-512b9e9fc103", + "createdTime": "2020-11-01T08:32:57.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9806f20f-90de-4f20-b39d-163c0fd9d5b9", + "createdTime": "2020-11-01T08:32:53.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a49d3f8c-7c05-401c-9540-440c1c5c7dd2", + "createdTime": "2020-11-01T08:33:00.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "33bc2977-87ef-4d7e-8e03-62adae4886eb", + "createdTime": "2020-11-01T08:32:59.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c8b5ce38-a025-4b8f-bacb-d9babbab29c7", + "createdTime": "2020-11-01T08:32:57.065Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a4c66049-7132-44ef-ba76-2ce1a7490a40", + "createdTime": "2020-11-01T08:32:55.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "028e8625-749c-4b1a-8b2b-848bc970d43d", + "createdTime": "2020-11-01T08:32:54.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "59023fd3-c007-4e12-9a4f-4886ca13eddf", + "createdTime": "2020-11-01T08:32:52.141Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "02faffdb-238e-47ce-a6c5-c8158057dda7", + "createdTime": "2020-11-01T08:31:16.445Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b375d388-a0f3-4ff5-934d-384e45103695", + "createdTime": "2020-11-01T08:31:10.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55300aa3-2b06-4bbc-8fba-d89463b9b807", + "createdTime": "2020-11-01T08:31:18.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d8d9c36b-95ae-4ea7-aa16-b62f079cde3e", + "createdTime": "2020-11-01T08:31:17.316Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9ec79a0e-a528-43b0-a04a-f2c22423d37b", + "createdTime": "2020-11-01T08:31:15.169Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d2d1056c-9d86-4255-bfbb-a0310b7174ba", + "createdTime": "2020-11-01T08:31:13.063Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "39b3be72-0d94-4bd8-b2eb-3eb0efca28e0", + "createdTime": "2020-11-01T08:31:12.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2acaac55-4f3e-41f7-9030-64fdb590960b", + "createdTime": "2020-11-01T08:31:09.302Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "80005316-15ff-40a6-8d31-20a3f0c7beb2", + "createdTime": "2020-11-01T08:24:36.654Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d75b0336-8662-4f98-942b-e852d515ebcb", + "createdTime": "2020-11-01T08:24:34.739Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "40a7d2a9-690c-4067-8dcf-0c0782a4eb21", + "createdTime": "2020-11-01T08:24:29.089Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e5a9bb10-6b01-4b2d-9cef-4db3952669cf", + "createdTime": "2020-11-01T08:24:39.907Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "26d59aed-bb1c-4c08-a86b-199804e4b332", + "createdTime": "2020-11-01T08:24:38.154Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "72e539ae-1e72-4c62-be22-46a0532428aa", + "createdTime": "2020-11-01T08:24:33.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d5c6fd9b-20f0-4f93-baff-441af27ab0f0", + "createdTime": "2020-11-01T08:24:31.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "96328cb3-70fd-4cc6-a00f-09de8c164aba", + "createdTime": "2020-11-01T08:24:30.71Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d8363ded-4697-4670-822f-a1d50a4d43db", + "createdTime": "2020-11-01T08:24:26.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0eb2f8f1-335b-4631-bcc5-c622a10d7758", + "createdTime": "2020-11-01T08:22:54.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d2d41ea3-e961-4184-9869-b6648e88031f", + "createdTime": "2020-11-01T08:22:48.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f49a79ff-6a3b-4d5c-acc6-680debb5f2e9", + "createdTime": "2020-11-01T08:22:56.845Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "24aaf212-cc5d-4c23-b15d-f5a1feafcaf8", + "createdTime": "2020-11-01T08:22:55.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bfb1a3ac-8979-4d5a-ad6f-da3fd4710ecb", + "createdTime": "2020-11-01T08:22:52.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "87e3f1e9-3fa6-444a-b4f6-0f55df7d3921", + "createdTime": "2020-11-01T08:22:50.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e5db36fd-70fb-4614-bcdc-6df4eabcef39", + "createdTime": "2020-11-01T08:22:50.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8d8ddeb7-1a44-4a24-b64a-06eef687fb30", + "createdTime": "2020-11-01T08:22:47.021Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "8a905322-5d7c-4285-91e3-b62f767a6415", + "createdTime": "2020-11-01T08:15:13.783Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b885aba8-3263-4e9e-abb5-367f5f16f4dc", + "createdTime": "2020-11-01T08:15:12.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fa8dbda2-d9c8-446f-b0bf-34a185030ffe", + "createdTime": "2020-11-01T08:15:09.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "92e5d60d-67e5-44e8-a88f-98872d67f763", + "createdTime": "2020-11-01T08:15:15.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "bd19a901-0020-44fd-8d64-48b9f94c2e2b", + "createdTime": "2020-11-01T08:15:14.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6d3c15d-68c8-4547-9f39-b29edea9f6b2", + "createdTime": "2020-11-01T08:15:12.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f60bde5-6af7-4dd4-a0a1-e0929c3e7f4e", + "createdTime": "2020-11-01T08:15:10.861Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cd90b21e-4814-400b-8985-adf620780867", + "createdTime": "2020-11-01T08:15:10.482Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd9701c1-5337-4926-986b-307b632d99d4", + "createdTime": "2020-11-01T08:15:08.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c27332c6-369a-446e-a3cb-4695964adfae", + "createdTime": "2020-11-01T08:14:23.133Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4eca16d6-9add-4099-8037-965c9b031acb", + "createdTime": "2020-11-01T08:14:19.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3267b579-ba17-41f0-9c09-393827e739ba", + "createdTime": "2020-11-01T08:14:24.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "90061c7b-78d0-4f8f-91ac-4e356ab38d43", + "createdTime": "2020-11-01T08:14:23.775Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d3548855-40a0-481b-acf7-944850aa122d", + "createdTime": "2020-11-01T08:14:22.314Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fb2bc139-ae1e-41d6-b1c0-6ba7ec18d282", + "createdTime": "2020-11-01T08:14:20.824Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf5513d6-93d4-4273-9bb6-b5274b366076", + "createdTime": "2020-11-01T08:14:20.453Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b3fff9f-8403-4254-baca-8e189f5df09c", + "createdTime": "2020-11-01T08:14:18.319Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ce4e516e-09b4-4a0f-a638-3434e8dfef2f", + "createdTime": "2020-10-31T23:42:38.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2cc798ef-f76c-47b2-97a8-dd228ee114db", + "createdTime": "2020-10-31T23:42:33.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c111afcb-20d9-4d34-8a72-be80ce091565", + "createdTime": "2020-10-31T23:42:44.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "30203ea8-d60a-4749-9dbc-7fe96a297cbb", + "createdTime": "2020-10-31T23:42:41.367Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad602dd8-109c-4ff8-ae00-3dc3100511cb", + "createdTime": "2020-10-31T23:42:15.93Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d74a6c8d-d07b-4228-805a-793d90f306dd", + "createdTime": "2020-10-31T23:42:31.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "6da0bc95-2a66-4c4d-a470-18ece81c7ef5", + "createdTime": "2020-10-31T23:42:24.882Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d42b8f3d-944a-494e-bb64-a1bd0324b139", + "createdTime": "2020-10-31T23:42:22.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bc01dc9d-4bf3-4ddf-8980-ad361788cea6", + "createdTime": "2020-10-31T23:42:12.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1c283038-bad6-490d-bf48-a8db5d7933be", + "createdTime": "2020-10-31T23:38:57.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f3716f5a-c470-4b7d-924f-2d904bb1bd6f", + "createdTime": "2020-10-31T23:39:02.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "39ba04b5-6ecd-4171-9efa-af0951e906f8", + "createdTime": "2020-10-31T23:38:44.889Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "30d39f2e-74fd-4814-a94c-08bb5fefb054", + "createdTime": "2020-10-31T23:38:59.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cff7351e-7a5c-478d-86fa-2c684aeff786", + "createdTime": "2020-10-31T23:38:54.035Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12449c0b-b510-4446-b33d-66635578f67c", + "createdTime": "2020-10-31T23:38:50.466Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "55175b70-d5c7-4ff2-adcb-6c688cdd216f", + "createdTime": "2020-10-31T23:38:47.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8a97a7f9-789a-46c7-9328-2a15dc5d1912", + "createdTime": "2020-10-31T23:38:41.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "85c9e5db-b74f-488f-9d78-a89fb5b551ee", + "createdTime": "2020-10-31T23:26:49.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bad89d68-e905-42d2-a96c-022d83c85e5a", + "createdTime": "2020-10-31T23:26:41.885Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4c73cffb-fba3-4a54-8d30-28b3563d176b", + "createdTime": "2020-10-31T23:26:36.408Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7ada7a4b-10a4-49a6-adff-f03c83fea284", + "createdTime": "2020-10-31T23:26:34.416Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "835b5ebc-11cc-4989-8d8e-8532739d3a0e", + "createdTime": "2020-10-31T23:26:33.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e6ececb-82f4-43a8-9b30-698ba3a77c1e", + "createdTime": "2020-10-31T23:26:28.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "597bdc07-e1f4-4f9a-8d60-6e9494274d20", + "createdTime": "2020-10-31T23:26:26.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8701a810-ebd3-4e48-b6ca-7a45ae777f80", + "createdTime": "2020-10-31T23:26:21.618Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a833b132-ee61-4904-baf9-1bae192cd301", + "createdTime": "2020-10-31T23:26:20.159Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e593003-fa01-4624-a7d4-724801c5574a", + "createdTime": "2020-10-31T23:25:48.394Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d287d08f-81ab-446a-af41-52640051d3d1", + "createdTime": "2020-10-31T23:26:52.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "26bda717-2a47-4980-bc21-5097271b965c", + "createdTime": "2020-10-31T23:26:50.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12f82f20-fc39-4ba9-a001-81a92f8ce982", + "createdTime": "2020-10-31T23:26:47.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "782374b6-58c1-4274-bfa7-ebd983195e55", + "createdTime": "2020-10-31T23:26:45.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "406dffd9-d499-4111-80c8-203999522519", + "createdTime": "2020-10-31T23:26:44.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aef7928c-950a-4119-aac0-296394fa1a63", + "createdTime": "2020-10-31T23:24:41.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "18a6bcbf-a692-4f07-8708-5908222830ee", + "createdTime": "2020-10-31T23:26:39.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "18cf867b-8277-40f8-9212-ebd20123393b", + "createdTime": "2020-10-31T23:26:38.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d913ae39-76bb-4437-86f8-afbd1264166f", + "createdTime": "2020-10-31T23:26:37.481Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b3027c19-e197-48af-a36a-ef51d52dc811", + "createdTime": "2020-10-31T23:26:36.685Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "28244708-16b7-445e-91ed-b4289af4a4fe", + "createdTime": "2020-10-31T23:26:34.806Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d984c8bc-f71d-45f9-ae0d-60c2f6ace221", + "createdTime": "2020-10-31T23:26:33.097Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f6441f34-0c2a-40f8-b56f-b7e2b866fe2e", + "createdTime": "2020-10-31T23:26:31.652Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c56960e0-1601-4a63-9610-f4c2006b084f", + "createdTime": "2020-10-31T23:26:31.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8806746c-c2e4-4986-a99a-86025d324e6a", + "createdTime": "2020-10-31T23:26:30.448Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b289de88-27ed-41eb-9208-b671b7bc2969", + "createdTime": "2020-10-31T23:26:29.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3cf2691d-1086-4fc4-b274-0b2ff09d2c3d", + "createdTime": "2020-10-31T23:26:29.083Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "864979d2-bade-4a44-8c23-ca4fd300e61e", + "createdTime": "2020-10-31T23:26:25.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9f04947b-9317-44ce-bab0-2f5e2409c486", + "createdTime": "2020-10-31T23:26:24.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "338f6ce1-93a2-4ba7-8107-01f153ca848a", + "createdTime": "2020-10-31T23:26:23.945Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cbf3376d-e551-48c5-9250-b2f110e8355e", + "createdTime": "2020-10-31T23:26:22.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b206111-6523-4c7e-a595-306ed0c48207", + "createdTime": "2020-10-31T23:24:14.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1b308cbd-4228-470c-82e8-429398a358ad", + "createdTime": "2020-10-31T23:26:19.115Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c7e1311b-ab49-4198-aa09-4f7cf9880857", + "createdTime": "2020-10-31T23:26:16.36Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a725104d-fb7f-4d36-9e56-6f5b6a6b7f37", + "createdTime": "2020-10-31T23:26:15.33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "898ed66d-b0a3-4e7d-a2ac-82cc9ca0a722", + "createdTime": "2020-10-31T23:26:15.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4db387f1-7689-49e6-a8ab-46e50d325bfc", + "createdTime": "2020-10-31T23:26:15.311Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "434f73c6-3e70-42f6-92bd-5662daa61c7c", + "createdTime": "2020-10-31T23:23:39.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85290016-83a2-4313-90d8-39c0f23b29af", + "createdTime": "2020-10-31T23:25:50.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "fa1f9b7c-7a65-4843-9001-cb5f3282a5ef", + "createdTime": "2020-10-31T23:25:49.24Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "523c4f18-48f0-41d8-8ce3-4cd688e2835f", + "createdTime": "2020-10-31T23:25:47.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4112e4b9-13a9-4966-bd33-dcc061337eeb", + "createdTime": "2020-10-31T23:25:46.024Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f8ff8f58-1137-42a9-ac94-9f6f187cdaff", + "createdTime": "2020-10-31T23:25:45.32Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0baabb88-b7bf-41ef-b8f6-c4335155a049", + "createdTime": "2020-10-31T23:25:44.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "32c3fc92-4f32-432c-9816-b27f67882211", + "createdTime": "2020-10-31T23:25:44.08Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b335915f-8f2a-4587-9e18-37d9f9252e15", + "createdTime": "2020-10-31T23:22:33.051Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e6c5f834-7ba8-4bb4-b336-5f67bae0f62c", + "createdTime": "2020-10-31T23:22:31.016Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34e39f72-7e50-4658-9958-083cd478b5c7", + "createdTime": "2020-10-31T23:22:26.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "22fd5841-47ba-41c3-89d2-63a6bbc9545d", + "createdTime": "2020-10-31T23:21:27.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef003756-d390-4ee7-bb95-21fa59b7aab8", + "createdTime": "2020-10-31T23:20:25.288Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b496156f-aa24-4c18-a69b-070787e43f12", + "createdTime": "2020-10-31T23:20:19.156Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da140481-dcbf-401d-a933-e23a0138311d", + "createdTime": "2020-10-31T23:23:39.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "9ff40ae2-fdf1-4bde-82b0-2627f8b88ace", + "createdTime": "2020-10-31T23:20:18.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51eb98c0-7ac8-4c28-a157-98ce6e8e259a", + "createdTime": "2020-10-31T23:23:17.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4ca5e64c-d393-47b0-855a-67a5f5fd68ed", + "createdTime": "2020-10-31T23:23:11.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "5a45a160-5912-4fba-a9a9-92713d6ea099", + "createdTime": "2020-10-31T23:20:17.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f9c8e53-3d63-43f2-9499-b7a2fbf7dd74", + "createdTime": "2020-10-31T23:20:13.957Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8457580d-3ef6-4f64-856a-62b57c7b7e00", + "createdTime": "2020-10-31T23:22:35.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "ecee7ae9-e41d-4de9-b00d-9ccde1b86b10", + "createdTime": "2020-10-31T23:22:34.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "34c9a28e-01a9-4855-9c0a-107213ac426f", + "createdTime": "2020-10-31T23:22:34.208Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d25e641f-f867-40b3-b61e-4a25cea70059", + "createdTime": "2020-10-31T23:22:31.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1bb25909-3ea0-437b-95ca-13bbe154ebde", + "createdTime": "2020-10-31T23:22:30.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ba18cf8-f570-482e-b813-52bd251c2f0d", + "createdTime": "2020-10-31T23:22:28.392Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ebe7efe8-dd92-48e7-bf00-871b0b7b7df5", + "createdTime": "2020-10-31T23:22:27.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0e4b42bd-58f9-485a-b97b-8a35066bb0a6", + "createdTime": "2020-10-31T23:22:24.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f44a7dc6-538c-486c-a333-a26b2ff2b570", + "createdTime": "2020-10-31T23:20:12.472Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4d7e2167-34ce-43d3-b549-72590dd7f7ed", + "createdTime": "2020-10-31T23:20:10.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "96e62e5a-684b-4c3b-adf0-481c74eff591", + "createdTime": "2020-10-31T23:21:29.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2e2b506e-746c-4264-a6e4-d571b19e53e8", + "createdTime": "2020-10-31T23:20:07.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e64ae1dd-ac51-446d-bf5f-3e850e7c5a06", + "createdTime": "2020-10-31T23:21:27.138Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "821f94b4-26e1-4762-985c-c7dcb364a7aa", + "createdTime": "2020-10-31T23:19:55.131Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "10b0d31d-7577-4182-a341-983b987255bd", + "createdTime": "2020-10-31T23:19:36.198Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f26c9458-2270-47cc-b6f3-7e9dbe3b5d90", + "createdTime": "2020-10-31T23:19:30.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a137bc06-5035-4b83-8b21-446a4a963f17", + "createdTime": "2020-10-31T23:20:23.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f72f9b9b-18be-4711-be06-1eb13da8b000", + "createdTime": "2020-10-31T23:20:23.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "eeb8f994-9718-43c7-9c59-7ae752a9d265", + "createdTime": "2020-10-31T23:20:21.942Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "357233e0-d918-4b7c-a256-5b684edf6cbf", + "createdTime": "2020-10-31T23:20:21.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "15186bbb-6dbb-4d51-b8ba-b9d29cf893a0", + "createdTime": "2020-10-31T23:20:20.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a156d43-b7fa-460b-8357-a9f5c424790b", + "createdTime": "2020-10-31T23:20:20.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5b5a9a27-6e06-47dd-8793-56b3b1e7d528", + "createdTime": "2020-10-31T23:20:17.124Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "2b6aa1b1-b0d2-45cb-8e38-8aec72b833cd", + "createdTime": "2020-10-31T23:20:16.121Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4243d536-68a1-404b-a8c5-778168de6400", + "createdTime": "2020-10-31T23:20:15.909Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "af93dc2d-8ef3-4eb5-9439-77b968a09174", + "createdTime": "2020-10-31T23:20:14.825Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4302ea39-4c31-414f-846c-1e7469739506", + "createdTime": "2020-10-31T23:20:13.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "358c3e75-9c60-440f-a459-639b76a63824", + "createdTime": "2020-10-31T23:20:12.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f6b9ac5-64e0-4c76-8bff-3b0195d3e914", + "createdTime": "2020-10-31T23:20:11.505Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4e8ce13d-bffb-43b5-abc4-ba8b973e583c", + "createdTime": "2020-10-31T23:20:09.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a978176c-7f0b-4257-b38e-4101a57824f8", + "createdTime": "2020-10-31T23:20:08.819Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "feec1b22-e6e6-4fdc-8fd6-e5c3a99524e2", + "createdTime": "2020-10-31T23:20:07.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "781b9fd2-e496-424e-80fb-2a8e5ea0ac6b", + "createdTime": "2020-10-31T23:19:28.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b78c455a-abc9-4930-8abf-817b2a5bd0b7", + "createdTime": "2020-10-31T23:20:05.639Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "07c48aad-1aad-41e6-baeb-7c62fb5d43e0", + "createdTime": "2020-10-31T23:19:57.278Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "57b81eab-1fd6-446c-8b80-e157b19dd543", + "createdTime": "2020-10-31T23:19:56.098Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dcf06561-2a71-41a1-909a-4305254ef2b4", + "createdTime": "2020-10-31T23:19:21.792Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0337e313-1677-40f2-950a-4de2d570e4b7", + "createdTime": "2020-10-31T23:19:41.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "05310189-4ea8-42dd-b5ab-ee4a406130e9", + "createdTime": "2020-10-31T23:19:38.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba347693-77a5-4c79-a9cd-406642a1525d", + "createdTime": "2020-10-31T23:19:37.788Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "df65772c-06f2-4937-8078-efce83eeca07", + "createdTime": "2020-10-31T23:19:34.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "0dd62ada-6f33-4113-b086-c5ee7060c69e", + "createdTime": "2020-10-31T23:19:33.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e2dec131-4c03-4868-b112-b407855d9d39", + "createdTime": "2020-10-31T23:19:31.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2ff26ae7-6295-4b51-8181-1da613230822", + "createdTime": "2020-10-31T23:19:27.119Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a05fef42-d877-42f6-9529-3888063101a4", + "createdTime": "2020-10-31T23:19:24.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a301c77e-3229-44a3-9228-3bbc423d4f94", + "createdTime": "2020-10-31T23:19:23.537Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b15d0de8-1e16-4232-80a8-171949a3e48f", + "createdTime": "2020-10-31T23:19:20.025Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6291cd46-9984-4e1d-bedb-1e442e525506", + "createdTime": "2020-10-30T21:36:52.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cb7d97c1-fb93-4133-92fb-f8c9c3fbef81", + "createdTime": "2020-10-30T21:36:47.053Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8c59dc5e-abd4-4971-985c-15a5018685d5", + "createdTime": "2020-10-30T21:36:42.37Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d1464e2-b1a2-4604-bedf-b5e4f0a64a75", + "createdTime": "2020-10-30T21:36:40.948Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d033a268-2802-4b0c-99b8-da83b5569d27", + "createdTime": "2020-10-30T21:36:34.1Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "07cdacc5-554b-44bf-af9e-c713791ab16a", + "createdTime": "2020-10-30T21:36:15.532Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e591c0c2-198f-41b5-b4bf-df48e7603f5d", + "createdTime": "2020-10-30T21:35:55.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3b79b5e2-ac99-4ca6-87d5-26844bd95af5", + "createdTime": "2020-10-30T21:35:49.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d28ca07a-04a3-4446-a065-807961badf95", + "createdTime": "2020-10-30T21:35:47.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76050ee6-a5b2-4e1a-8555-f27cace7e3c1", + "createdTime": "2020-10-30T21:35:40.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "60c613d5-b20d-4bb2-b12e-260b8a9458e7", + "createdTime": "2020-10-30T21:34:57.496Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d485d0c2-92f4-4836-b9dc-0122a2472aed", + "createdTime": "2020-10-30T21:34:50.201Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f3726aa-c8e1-4746-93fb-9204f802251e", + "createdTime": "2020-10-30T21:34:43.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cea6893f-3a73-4f3e-8810-ab9527c78ad7", + "createdTime": "2020-10-30T21:34:41.989Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b915a0f-2314-458e-bc94-fbbb5d442721", + "createdTime": "2020-10-30T21:34:35.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5f7e272a-7a3a-47fa-8c55-7e2e00ac1d20", + "createdTime": "2020-10-30T21:34:16.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "52725cf1-c875-4b84-a316-449c2645da4b", + "createdTime": "2020-10-30T21:34:09.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "20236830-e1bc-4f56-9587-22d81855c71b", + "createdTime": "2020-10-30T21:34:08.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ae662e4-c9ce-424d-b23f-16a7bd131934", + "createdTime": "2020-10-30T21:34:03.689Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6ef75366-a70b-4363-9147-bad674cf9304", + "createdTime": "2020-10-30T21:34:02.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "34dd663b-00a3-4800-93a0-65b78f708fcc", + "createdTime": "2020-10-30T21:34:01.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "649dddca-4ee2-4904-a3ec-6393d7eab1c8", + "createdTime": "2020-10-30T21:36:54.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "6bccbc44-62c5-44d1-98d0-24491d274f0a", + "createdTime": "2020-10-30T21:36:53.738Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c80a3939-2405-485e-a4ec-1b0b2f690c28", + "createdTime": "2020-10-30T21:33:56.857Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b988d625-4be3-4ae8-b516-84314031c45e", + "createdTime": "2020-10-30T21:36:50.936Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ee027954-a1a5-4f8c-9278-c13218b2c109", + "createdTime": "2020-10-30T21:36:49.225Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf2e6637-d0f1-4fda-9357-eaecfa4ad4fd", + "createdTime": "2020-10-30T21:36:48.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d120295-d6c9-4aa4-a4f9-3e66d7b46310", + "createdTime": "2020-10-30T21:36:45.563Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "568d90f0-f0d6-4dfe-b2d9-64d496ef4088", + "createdTime": "2020-10-30T21:36:44.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "40e1faef-e69c-4168-bfaf-765729faa52a", + "createdTime": "2020-10-30T21:36:43.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b1f44ca1-fdaf-4f99-ae5e-1b757c118158", + "createdTime": "2020-10-30T21:36:39.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba774b01-d612-442c-aff7-ba3685fd3fb4", + "createdTime": "2020-10-30T21:36:37.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "127f34a9-2c5e-4311-957a-ab5f02a73d6f", + "createdTime": "2020-10-30T21:36:36.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ed05660b-8120-48ca-be4f-eca3695ecdd1", + "createdTime": "2020-10-30T21:36:31.841Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bbb91510-854c-43ad-8023-17bcd334de2f", + "createdTime": "2020-10-30T21:33:54.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c8ee0f0f-02df-4a14-b380-8ef4648b3935", + "createdTime": "2020-10-30T21:36:18.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "3f8a2a5e-7330-46bd-b9bc-e2c5850d5e57", + "createdTime": "2020-10-30T21:36:16.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "281acfd3-023a-4ccb-8f31-58098ce1b5e7", + "createdTime": "2020-10-30T21:36:13.364Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8698ddfc-1367-4f08-936e-7978bfa5d60f", + "createdTime": "2020-10-30T21:33:52.852Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4f9eb226-635c-45ee-b832-10bc7ff3057d", + "createdTime": "2020-10-30T21:35:58.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3f8c565f-6910-4def-b0d6-07d68c1a1f5a", + "createdTime": "2020-10-30T21:35:58.238Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "45c304d2-eef9-4837-8f43-2c8194e6c240", + "createdTime": "2020-10-30T21:35:53.595Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "d1ddea35-57bc-40ed-a737-af5daede4314", + "createdTime": "2020-10-30T21:35:52.313Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "f4369863-f0e6-404f-9d16-a757b7b74f79", + "createdTime": "2020-10-30T21:35:50.817Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "88721842-33a5-43eb-8d73-2e78a748160e", + "createdTime": "2020-10-30T21:35:46.703Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5beabecf-f666-4b5e-b7de-9f97fef3f2b7", + "createdTime": "2020-10-30T21:35:43.763Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ef36732b-f1b1-4e03-9cda-14b497158228", + "createdTime": "2020-10-30T21:35:42.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "daf9f4dd-806c-4fec-8f15-2977a73c790e", + "createdTime": "2020-10-30T21:35:37.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dda4ff79-207d-42af-92b3-6b197fb1208a", + "createdTime": "2020-10-30T21:33:46.076Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98a76c9e-a95c-4a6d-97e4-da58cadd322b", + "createdTime": "2020-10-30T21:33:40.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2d4a786f-9c6a-497a-879e-113f663cff0d", + "createdTime": "2020-10-30T21:35:03.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2284069f-44f3-4704-878a-b80e7be4916d", + "createdTime": "2020-10-30T21:34:58.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e8e5d683-9b5e-42ff-a58c-21d6c2072bd5", + "createdTime": "2020-10-30T21:34:55.296Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "062c2586-24ec-4805-8dcd-8e51a9e96a07", + "createdTime": "2020-10-30T21:34:53.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "38d7709b-8447-477a-a884-6929ddd912af", + "createdTime": "2020-10-30T21:34:52.467Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "40ca4ceb-381b-4223-9de0-6144a2f0aab5", + "createdTime": "2020-10-30T21:33:33.018Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7d278fd-cedf-436d-a8be-3102b789356f", + "createdTime": "2020-10-30T21:34:47.979Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "20e3f6f8-8fe1-4ced-9e2f-dfc428c92be7", + "createdTime": "2020-10-30T21:34:46.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "4344326e-aef0-42e7-985b-49f7330822c0", + "createdTime": "2020-10-30T21:34:44.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f9d973d8-f0e9-4e56-a6d5-f1a046f46934", + "createdTime": "2020-10-30T21:34:40.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a850f2a9-ebcf-445b-bae4-c4b15ec5c5c7", + "createdTime": "2020-10-30T21:34:38.68Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4ebac24b-c0cf-4c5b-92f4-d6607c64d394", + "createdTime": "2020-10-30T21:34:37.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9535e209-d98e-4d47-9a42-9c44372f1af7", + "createdTime": "2020-10-30T21:34:33.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "ce8a55ca-8e46-4f90-9a67-98ca5e1029dd", + "createdTime": "2020-10-30T21:33:27.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9fc50265-a3a3-4545-b443-0f52e0493390", + "createdTime": "2020-10-30T21:34:18.759Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "31f991c5-73c4-4890-b70b-5d967c8eb342", + "createdTime": "2020-10-30T21:34:17.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d4ad55ba-414f-44ab-87dc-a287c7060b01", + "createdTime": "2020-10-30T21:34:15.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "513ab6d5-50ab-4cb6-8790-46f7ec713064", + "createdTime": "2020-10-30T21:34:12.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "50afde02-09bd-4070-a127-725f5757b8c5", + "createdTime": "2020-10-30T21:34:12.463Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "387e67c1-5a2a-4902-ac6e-5bf67cbdc585", + "createdTime": "2020-10-30T21:34:11.207Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "02bb64b8-cdb5-4c29-bd6b-0e443bcd34ee", + "createdTime": "2020-10-30T21:34:10.62Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bbcad366-0c35-4af2-8ffc-c6a83e0b5b9a", + "createdTime": "2020-10-30T21:34:07.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "99c272d0-897b-41ad-8d49-3eeed60b8862", + "createdTime": "2020-10-30T21:34:07.028Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "09801506-3c3d-4dd9-8cde-f80e5e653489", + "createdTime": "2020-10-30T21:34:06.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "0d9c7287-3402-4fab-a688-d8538f9a5815", + "createdTime": "2020-10-30T21:34:05.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0d3c768e-28a8-4c89-a986-04b649e26bc8", + "createdTime": "2020-10-30T21:33:25.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5562646c-36b9-4780-876c-77f62a3b802d", + "createdTime": "2020-10-30T21:34:04.751Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "db8a21c6-dd00-4118-8a2d-be3c1e76b0b5", + "createdTime": "2020-10-30T21:34:04.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b91c8431-2061-4743-baa4-9960579717f1", + "createdTime": "2020-10-30T21:34:00.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2414ddcd-a7d5-456e-9651-ee2e71c3408c", + "createdTime": "2020-10-30T21:33:59.508Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd408580-8d9d-4fb9-a5a5-51407f44c253", + "createdTime": "2020-10-30T21:33:59.222Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d4016880-7ee4-4894-97ad-e8a5f7da2fec", + "createdTime": "2020-10-30T21:33:58.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "62bbb8f8-cc64-45e3-810b-cbb104fd629a", + "createdTime": "2020-10-30T21:33:57.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "cb4a2b9c-9545-44fe-94fa-045f9dc17394", + "createdTime": "2020-10-30T21:33:55.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9b8cecc7-6958-47b6-b00a-aa932e720fd3", + "createdTime": "2020-10-30T21:33:55.04Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dd2c38dc-66ef-4568-9482-a9ece4145e29", + "createdTime": "2020-10-30T21:33:51.423Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd79b5c5-a0c1-4a6a-a0ec-5ae3698e7c24", + "createdTime": "2020-10-30T21:33:49.297Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7b6200bb-7874-4499-bacd-ecb45820a020", + "createdTime": "2020-10-30T21:33:48.368Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e66e2eb9-72df-42cf-b7fa-5aaa2b5474cd", + "createdTime": "2020-10-30T21:33:43.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d227b81c-7436-4acf-86ee-883b3df92acb", + "createdTime": "2020-10-30T21:33:42.881Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "133181f7-cc0b-4f61-a779-8990c01fb511", + "createdTime": "2020-10-30T21:33:41.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8d4c0292-fdca-4753-99d5-1caf63b02977", + "createdTime": "2020-10-30T21:33:38.613Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "12437517-9e2f-4651-946e-8a4643d46e6a", + "createdTime": "2020-10-30T21:33:10.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2f13012b-d9a0-4394-8cfb-d268e4dabc95", + "createdTime": "2020-10-30T21:33:36.363Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "62bc59f7-50ec-4dc8-a0ac-413dfc492206", + "createdTime": "2020-10-30T21:33:34.89Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "2115ddc2-e79a-4613-afe4-1a2a8b2d6d90", + "createdTime": "2020-10-30T21:33:31.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f8c593bd-ca91-4f52-b0f0-894f0bb8a44f", + "createdTime": "2020-10-30T21:33:29.801Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d24d3dfa-ab3a-4ecd-b2c2-97defa07bfc2", + "createdTime": "2020-10-30T21:33:28.309Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ff6dbecf-ca66-4072-8351-aa74df09f757", + "createdTime": "2020-10-30T21:33:24.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b5e30f4a-a749-4c3e-8caf-66d8bed07782", + "createdTime": "2020-10-30T21:33:13.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4ecdc19e-f759-4514-8ecb-b5e1e88505d9", + "createdTime": "2020-10-30T21:33:11.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0b793861-ad08-4d56-b42b-14d42b7285e1", + "createdTime": "2020-10-30T21:33:08.6Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "cd8c7af9-9dd2-4374-be6e-5e4c4b4916d3", + "createdTime": "2020-10-30T20:33:32.228Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3ab37a48-fbda-4c9a-9cf7-2a8ea9742a3d", + "createdTime": "2020-10-30T15:36:10.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "db013127-2e53-4903-8287-05ef0a4b366b", + "createdTime": "2020-10-30T08:02:11.457Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3a7d3b89-de90-4644-be35-91a25620db7b", + "createdTime": "2020-10-30T08:02:10.8Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "67aaaf90-85e9-4a66-a3f6-79b0de17e170", + "createdTime": "2020-10-30T08:02:10.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c9535b8f-2c8f-4394-8069-52fbac4d74fb", + "createdTime": "2020-10-30T08:02:09.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2a5924be-0d69-4258-9c85-5d6c63f115aa", + "createdTime": "2020-10-30T07:59:06.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c6f5904d-805a-4ee7-b954-481bd7ac5860", + "createdTime": "2020-10-30T07:59:05.625Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82deb892-b186-4353-aff8-f979347336fe", + "createdTime": "2020-10-30T07:59:05.114Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0859a87f-4a77-4578-a55d-7b6ddefb9931", + "createdTime": "2020-10-30T07:59:04.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d25d47e8-fb5d-451f-966d-a965ae92e06b", + "createdTime": "2020-10-30T07:52:47.932Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dec8a978-feca-4b97-9742-dd5b1207970a", + "createdTime": "2020-10-30T07:52:47.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1b0de5d6-802e-416d-b013-286ef47dc128", + "createdTime": "2020-10-30T07:52:46.804Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "734a0551-7cb6-4ecd-8fc6-376b72b5de48", + "createdTime": "2020-10-30T07:52:46.237Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "855b1191-7e29-42ea-9456-aa60d932fd3e", + "createdTime": "2020-10-30T07:49:37.836Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "847709ab-1d97-4a4d-9b62-c9c6aa0250f4", + "createdTime": "2020-10-30T07:49:36.934Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1a0468bc-2c9c-462b-9a1e-0cf53363e838", + "createdTime": "2020-10-30T07:49:35.76Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "26884537-470f-4d8f-890c-a9d602b9b38e", + "createdTime": "2020-10-30T07:49:34.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1735b831-a7b6-4991-8936-971ab7fe3869", + "createdTime": "2020-10-30T07:41:09.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "51ff914a-ef42-4eda-9744-087ebc0562c8", + "createdTime": "2020-10-30T07:41:09.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e77a831-b961-4bcc-bad7-9679ca83356b", + "createdTime": "2020-10-30T07:41:08.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "079c317f-612a-4179-a504-2d5b96b84d07", + "createdTime": "2020-10-30T07:41:07.949Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5268f4c-c958-4845-9ed6-04e62d561ebc", + "createdTime": "2020-10-30T07:33:41.64Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "12de2f6d-2bb6-4a2e-9ad6-fb612e372cbd", + "createdTime": "2020-10-30T07:33:41.047Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "77a52991-25a2-4b3b-a365-b159eef382be", + "createdTime": "2020-10-30T07:33:40.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "236cc5cd-1772-4cea-a48b-d62eab5b392e", + "createdTime": "2020-10-30T07:33:39.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2b51cd42-b90e-49fa-8aeb-92e0af22083c", + "createdTime": "2020-10-30T07:30:35.327Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bdfdaed8-95de-4330-abb8-90941fe27457", + "createdTime": "2020-10-30T07:30:34.348Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ef21d09d-a918-473d-9cda-7aa0a6675f97", + "createdTime": "2020-10-30T07:30:33.324Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e5ddc5e0-5a02-4bcf-adb6-fa46b53268be", + "createdTime": "2020-10-30T07:30:32.306Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "45cc5626-d824-4581-8f79-97683e218ffe", + "createdTime": "2020-10-30T07:23:33.968Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cbd3ce49-0fec-4716-9c98-e8d17443c934", + "createdTime": "2020-10-30T07:23:32.905Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0f6446b3-9b8f-4724-bb74-31a2da3f65b2", + "createdTime": "2020-10-30T07:23:31.935Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2bf856ef-c924-4b86-b69c-1c40098442ce", + "createdTime": "2020-10-30T07:23:29.429Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3649793c-2024-4f50-9279-7b5c912a38f1", + "createdTime": "2020-10-30T07:20:38.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "90482bff-68e6-488d-a1e6-33449eee272e", + "createdTime": "2020-10-30T07:20:37.373Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d16eb306-3509-4eeb-98fb-d6e526f54dfd", + "createdTime": "2020-10-30T07:20:36.497Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "36e329d8-d28a-4ac0-89ff-ca5b931d5a7a", + "createdTime": "2020-10-30T07:20:35.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d666719d-4aa6-45f7-85de-fcf6bf64f433", + "createdTime": "2020-10-30T00:42:21.901Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e1c0b39-a47c-4ce5-9351-44b4fbfe5c66", + "createdTime": "2020-10-30T00:42:17.66Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d918a4e8-8170-435f-a24a-1654ce1c282f", + "createdTime": "2020-10-30T00:42:03.879Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98f7c3a7-4540-4558-afe5-b01fd217b20f", + "createdTime": "2020-10-30T00:42:24.655Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "a7afb240-0fc9-40fe-a1d9-bc1f6d1dfe31", + "createdTime": "2020-10-30T00:42:22.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "bf05caf8-d347-4db3-a577-9471d0dd9ae6", + "createdTime": "2020-10-30T00:42:02.997Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "38fbfa23-89e6-442c-bc41-702b7bf286b0", + "createdTime": "2020-10-30T00:42:20.657Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8ff4670d-604a-4fca-bc29-5eb3243a8742", + "createdTime": "2020-10-30T00:42:19.322Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ebcebe26-dfba-441d-8fa7-476b9482b445", + "createdTime": "2020-10-30T00:42:18.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "17c2e978-b51e-4ca9-a323-58cbe7970a4a", + "createdTime": "2020-10-30T00:42:00.113Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "129f148b-ef52-4f13-a426-e8d3fe2f55bb", + "createdTime": "2020-10-30T00:42:05.61Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "5af74a14-bf57-4fbc-8c76-0472dbc41fbc", + "createdTime": "2020-10-30T00:42:05.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "69c12688-4d2b-4e72-bf3d-cfb5ccf04efd", + "createdTime": "2020-10-30T00:42:04.395Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7e25856a-c61c-4d7f-a4a8-28a293f235bb", + "createdTime": "2020-10-30T00:42:02.47Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a2ed151-a30e-4af9-ad87-3642a96e1a33", + "createdTime": "2020-10-30T00:42:01.466Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d72019b1-63d1-4960-af5c-fc1b7bbcd831", + "createdTime": "2020-10-30T00:42:01.03Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "428ffaed-2a09-42ce-9069-6d436575fa97", + "createdTime": "2020-10-30T00:41:59.224Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "92cab192-c963-423e-8d42-5d72114b1822", + "createdTime": "2020-10-29T22:50:30.246Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a7a5d338-06f5-467c-85b5-f81d2972cb26", + "createdTime": "2020-10-29T22:44:52.928Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "177e64b5-b260-4ed5-87b2-1ce0270f8f0d", + "createdTime": "2020-10-29T21:34:12.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6298515f-b254-4aa1-8ff4-44706eb2af89", + "createdTime": "2020-10-29T21:33:59.538Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "00bb2154-2987-44ff-bd89-d1e5923d0ca2", + "createdTime": "2020-10-29T21:33:55.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2075f392-996d-4b3c-b5b0-367130877990", + "createdTime": "2020-10-29T21:33:51.709Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fc451069-86cb-432f-b956-1901c9ed2764", + "createdTime": "2020-10-29T21:33:40.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e55a626d-760f-41cf-acf7-19e49a239e95", + "createdTime": "2020-10-29T21:33:31.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b20769f0-4d2a-493c-91dc-70c022713556", + "createdTime": "2020-10-29T21:34:15.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c7cf8dc8-bf3a-40b4-b223-931a1e3a8a72", + "createdTime": "2020-10-29T21:34:14.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a77d7faa-0fb6-49a4-9a39-f03c87f60498", + "createdTime": "2020-10-29T21:34:10.899Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e6cd1b96-944c-4829-9a15-3f9e31da59c8", + "createdTime": "2020-10-29T21:34:08.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "63dfeb8c-184b-4987-8409-a8d27de36e8d", + "createdTime": "2020-10-29T21:34:07.911Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cdab51db-a7f4-4671-bab7-3f546e461e7f", + "createdTime": "2020-10-29T21:34:05.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9dcdb20d-6224-4571-ba8c-d89dd4c61aee", + "createdTime": "2020-10-29T21:33:09.551Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8d6362b0-7043-4c0f-b968-48e8d86db99a", + "createdTime": "2020-10-29T21:34:03.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "78cff4f8-5d77-445d-9e2a-0d4d65e59bc4", + "createdTime": "2020-10-29T21:34:02.186Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "69ebdd16-8953-4197-bf6c-22714c27d059", + "createdTime": "2020-10-29T21:34:00.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5a807e02-776c-41ee-ab75-04c6667c9729", + "createdTime": "2020-10-29T21:33:58.308Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "c7252014-e952-446a-a34d-198a0d1d7c58", + "createdTime": "2020-10-29T21:33:57.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "eead096c-b5c6-40e8-927c-93eae0ac8bfc", + "createdTime": "2020-10-29T21:33:56.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "44547aa3-34b2-4c02-86db-f0ebd7789d05", + "createdTime": "2020-10-29T21:33:55.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "aba065bd-50ea-4f07-a0d3-44fed5ed7425", + "createdTime": "2020-10-29T21:33:53.937Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "0cdcecaf-310f-4df5-8069-15724a7e410f", + "createdTime": "2020-10-29T21:33:52.749Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a996ae81-abd8-4e6e-90d8-e4cedfd67381", + "createdTime": "2020-10-29T21:33:50.403Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4a05be27-c282-4e7e-be50-8243eb57da2e", + "createdTime": "2020-10-29T21:33:49.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ad2de1d6-3be2-44c0-ad40-958bad6afa58", + "createdTime": "2020-10-29T21:33:49.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "133c45d1-9e0f-4313-868b-0831d122c0b1", + "createdTime": "2020-10-29T21:33:47.264Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7c9e4443-5e32-4765-8860-35e9d6aeaf34", + "createdTime": "2020-10-29T21:33:44.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "1299e5cf-c1bd-4ba0-b907-9b23a0844b6f", + "createdTime": "2020-10-29T21:33:43.637Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "04eb2ab9-8d76-40de-b989-0eb62531df6f", + "createdTime": "2020-10-29T21:33:42.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7429f7f5-f09c-4913-8d59-0c27d5e01218", + "createdTime": "2020-10-29T21:33:00.079Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e7eef421-7146-4457-8728-d0e9fdec112e", + "createdTime": "2020-10-29T21:33:38.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "21dc1ecb-b552-4286-adea-a98d4229c49d", + "createdTime": "2020-10-29T21:33:35.779Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ba41c737-d1bc-4dd8-a308-27f6ecaf3f47", + "createdTime": "2020-10-29T21:33:34.396Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "36e62966-d630-4a39-ac03-c02c90e3fc48", + "createdTime": "2020-10-29T21:33:29.536Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "f87771d7-2822-4e4f-82f5-e5d7c777bdd1", + "createdTime": "2020-10-29T21:33:11.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "73c38123-05e6-4847-95b6-24d6cc079fb2", + "createdTime": "2020-10-29T21:32:54.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0e8b8fa5-a263-4e03-b0e1-3fc0d491e56d", + "createdTime": "2020-10-29T21:33:10.305Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "d638c92b-a954-4ae0-893c-37ece02421c8", + "createdTime": "2020-10-29T21:33:08.189Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "fee0936e-b5ef-47af-95e6-a75ddf99c786", + "createdTime": "2020-10-29T21:33:06.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dd65f4da-abd0-4307-b092-f4cc77f37b06", + "createdTime": "2020-10-29T21:33:05.688Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "012d5e37-2377-4080-a1f1-57758dcac325", + "createdTime": "2020-10-29T21:33:04.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "09819b6b-63f8-4133-ac72-fef6e627ef08", + "createdTime": "2020-10-29T21:33:02.862Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "bd6a70dd-9322-4839-bf4e-4f25e1218f65", + "createdTime": "2020-10-29T21:33:01.962Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "45746daa-9650-4b05-9fd2-d0fd3941b17e", + "createdTime": "2020-10-29T21:33:00.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "393290a8-8137-4855-8a8e-e932c4004d1a", + "createdTime": "2020-10-29T21:32:58.734Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "4f8773ae-abfb-4959-a764-2e3cb64f33f8", + "createdTime": "2020-10-29T21:32:57.239Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8301d67a-c0b9-4c12-9aaf-624bd9b0897b", + "createdTime": "2020-10-29T21:32:56.42Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "cae517e5-f259-480b-bf65-b6597ba8f407", + "createdTime": "2020-10-29T21:32:53.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "7d05bd15-c4b0-4b49-9e84-241c6d69c85b", + "createdTime": "2020-10-29T21:30:53.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98588f42-d3c7-4f92-882b-12b65766cb00", + "createdTime": "2020-10-29T21:30:56.16Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "7c4b91dd-b250-4bec-be26-fd2222b80687", + "createdTime": "2020-10-29T21:30:54.612Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5c19fdd7-5b9d-44cf-acc3-8980f8279ebf", + "createdTime": "2020-10-29T21:30:51.461Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e4191f95-b641-4471-b085-fa3d8d990759", + "createdTime": "2020-10-29T21:30:44.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1d642b9f-e87d-4482-831b-4cbaa936bd01", + "createdTime": "2020-10-29T21:30:43.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "dac1a94c-a92f-44ef-ae31-ca5442cf98cd", + "createdTime": "2020-10-29T21:30:40.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5df80171-4d2e-4137-b019-e9cf04fa84c0", + "createdTime": "2020-10-29T21:30:38.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "458c03f9-1eb1-4b89-a53e-8537d9aac306", + "createdTime": "2020-10-29T21:30:37.446Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "72f5ca20-9183-4bec-b557-3c3f06d6bfab", + "createdTime": "2020-10-29T21:29:59.864Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c31bf916-fac7-495e-8f3e-01261f5b3ec1", + "createdTime": "2020-10-29T21:30:16.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ed746ef3-e57c-488f-b9dc-28f944a67e5e", + "createdTime": "2020-10-29T21:29:57.754Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "9c1dee2f-0729-41c2-bbbd-2c38b204aff5", + "createdTime": "2020-10-29T21:29:55.298Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "404ea16d-c696-4653-a41e-6b1f985cc3df", + "createdTime": "2020-10-29T21:29:48.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e3aaf009-b801-43f1-9450-0f9bca40f041", + "createdTime": "2020-10-29T21:29:16.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1f291895-de68-4217-b118-ba98092dd7b0", + "createdTime": "2020-10-29T21:28:45.786Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "71fb92be-de62-48fa-b13a-11b34db5f2f7", + "createdTime": "2020-10-29T21:25:52.633Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "58809597-1911-4760-8d0f-c3183385f381", + "createdTime": "2020-10-29T21:26:41.405Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "e150f123-bddd-4e01-979e-2537d2b40996", + "createdTime": "2020-10-29T21:25:47.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2c653a78-8b3a-4cde-89a4-66a0b2fc3e8f", + "createdTime": "2020-10-29T21:25:43.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f574fcc7-0906-4185-9f14-f0f90b193d66", + "createdTime": "2020-10-29T21:25:39.342Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b5bbfcb3-132a-4d4e-9305-59c9e6532e94", + "createdTime": "2020-10-29T21:25:53.099Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5c7d8329-02a8-41f5-bc5f-04a4af5d3695", + "createdTime": "2020-10-29T21:25:51.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "e9bccbfe-89b5-4197-9f10-91bc1df5d41e", + "createdTime": "2020-10-29T21:25:50.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a6b157f8-6247-4c05-95db-ee3684d5bf6a", + "createdTime": "2020-10-29T21:25:50.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "33b14726-77f4-4900-944a-1e66cd23f7f0", + "createdTime": "2020-10-29T21:25:33.377Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "452964ed-48c0-430d-851c-4720be29d8a0", + "createdTime": "2020-10-29T21:25:49.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "b6561ef3-325c-4b14-a90b-a983562d87a4", + "createdTime": "2020-10-29T21:25:48.717Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "e73fdd1f-fd8f-4994-97eb-3166a56233dc", + "createdTime": "2020-10-29T21:25:48.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "56151049-9f07-44a6-ad64-3261a3be801c", + "createdTime": "2020-10-29T21:25:47.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "71d2d22d-a2d0-466a-8e40-8b4bdcb08307", + "createdTime": "2020-10-29T21:25:46.214Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a0ffd45a-e601-476c-8e2e-4073818e9d62", + "createdTime": "2020-10-29T21:25:45.106Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c4e614f6-715f-4b90-a2ad-c6b8b5c14ae0", + "createdTime": "2020-10-29T21:25:44.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "89f86c87-03fb-438c-82e8-c0cb1c68e8a6", + "createdTime": "2020-10-29T21:25:42.731Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "6a2baac0-cd44-4709-944a-a783e8d19928", + "createdTime": "2020-10-29T21:25:40.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b46f529d-ca23-44cb-bdcb-744fa1bf82be", + "createdTime": "2020-10-29T21:25:39.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "7e2fd3c8-5de6-4fd0-9db8-5676d022eaa0", + "createdTime": "2020-10-29T21:25:30.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "28871400-fe3a-4d9e-8fe5-62aee31fa5de", + "createdTime": "2020-10-29T21:25:38.462Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "16e5c4db-9f4b-4517-b570-98170af15377", + "createdTime": "2020-10-29T21:25:37.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c3c9f304-860c-415d-a49f-eaca32f82abb", + "createdTime": "2020-10-29T21:25:36.96Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "453b12cd-7687-4eb6-8e12-32155819dd1f", + "createdTime": "2020-10-29T21:25:35.906Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "26959dc6-5504-4173-9754-dac9197ed9e4", + "createdTime": "2020-10-29T21:25:35.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6023067-3437-4f7f-91d2-8cffe3a1e87e", + "createdTime": "2020-10-29T21:25:34.552Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "2f8a267f-9720-4ba7-a742-0d04c41a9fc2", + "createdTime": "2020-10-29T21:25:33.892Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "ec527a30-062e-43cb-a15a-aa8b67e4f7ef", + "createdTime": "2020-10-29T21:25:32.483Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "70a0ba17-71ab-4e5a-bdcb-06419abc0657", + "createdTime": "2020-10-29T21:25:31.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "83096262-00f6-4aa3-a9a3-b2006df856cb", + "createdTime": "2020-10-29T21:25:30.967Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "721acdd3-aca2-4294-b5fb-bd8e326559f1", + "createdTime": "2020-10-29T21:25:29.176Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "dcc01383-9a3f-41c6-9d69-4e8d3261ad02", + "createdTime": "2020-10-29T08:24:42.145Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "34960827-044d-44fe-bbc8-823d75cbe087", + "createdTime": "2020-10-29T08:24:41.602Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a9c9f2d-d38e-4cc0-b810-4210812083eb", + "createdTime": "2020-10-29T08:24:41.07Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e0c3dbc-b5fd-42d5-a055-fd3c041a0787", + "createdTime": "2020-10-29T08:24:40.554Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cf8076ca-1557-4b9e-a483-24d8697d6b61", + "createdTime": "2020-10-29T08:21:37.79Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2fcfa24c-6b4d-444b-8a23-e959de510d4b", + "createdTime": "2020-10-29T08:21:36.78Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7c8780f9-7301-4f8f-8268-f708b4f9bd69", + "createdTime": "2020-10-29T08:21:35.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "af4d1c16-4d26-4253-b094-97fe9a3730f7", + "createdTime": "2020-10-29T08:21:34.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cfa9d8db-4ec2-41f2-87bc-5a67d5793a27", + "createdTime": "2020-10-29T08:01:18.848Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad412cfb-6976-494d-96f2-d2fd1a0fd149", + "createdTime": "2020-10-29T08:01:17.401Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7e9975f8-0bd6-45aa-8680-3cb71663ecd1", + "createdTime": "2020-10-29T08:01:16.593Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "67f2152a-a46a-4c3f-8b35-0fe367dbddde", + "createdTime": "2020-10-29T08:01:15.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0ebfaaad-3021-41fa-8c3d-35f6231c499a", + "createdTime": "2020-10-29T07:58:20.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "03c189ba-7ae5-4c79-83ab-fd21ba745c94", + "createdTime": "2020-10-29T07:58:19.99Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1960bbde-2e1f-4a02-8586-e7ee55980a9b", + "createdTime": "2020-10-29T07:58:19.402Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "633ef364-f8b6-49fb-9ad4-cf02a58aca87", + "createdTime": "2020-10-29T07:58:18.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b05b72df-3105-4ffe-8886-9a266809a804", + "createdTime": "2020-10-29T07:50:07.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ed0b198c-f040-424b-95ea-40f0212e26a5", + "createdTime": "2020-10-29T07:50:06.587Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fbc2c86c-404c-4710-a503-b1c75cce0e44", + "createdTime": "2020-10-29T07:50:06.062Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a5de1ce5-f481-4140-afe9-20b5cbdc35f9", + "createdTime": "2020-10-29T07:50:05.428Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4edc7781-f499-4ac0-92b4-39b77fef1255", + "createdTime": "2020-10-29T07:33:51.873Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e3546ce9-74ac-45ff-8e88-a3da02f6767f", + "createdTime": "2020-10-29T07:33:51.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ad95a043-2d45-413f-8d20-b153703ca4ee", + "createdTime": "2020-10-29T07:33:50.812Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1808471-31bb-4179-9e0a-216012edabb7", + "createdTime": "2020-10-29T07:33:50.28Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54311063-5335-4925-b05c-b30c5c162f66", + "createdTime": "2020-10-29T07:30:52.432Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "22fd5a91-45c8-42bb-af45-f0a69cc026e6", + "createdTime": "2020-10-29T07:30:51.621Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "941f39c1-13c3-4cd6-9bfe-02036a55e030", + "createdTime": "2020-10-29T07:30:50.727Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0bf87b38-42eb-4e63-8265-f703d6120a19", + "createdTime": "2020-10-29T07:30:49.591Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1018f11-e0d1-4fc0-a69b-2fc95b6a6b07", + "createdTime": "2020-10-29T07:22:59.856Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "30324df0-bb36-4e57-b80d-cff6f3b7ab9f", + "createdTime": "2020-10-29T07:22:59.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "544b3a9c-dd78-4cd7-a71e-43fa7c35d710", + "createdTime": "2020-10-29T07:22:58.832Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9015c28-99d4-4d11-9abc-fc49b58dd3f5", + "createdTime": "2020-10-29T07:22:58.312Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4864aa17-2033-4daa-8dc6-eec2af16d4ba", + "createdTime": "2020-10-29T07:20:24.699Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "347d5c5b-12e9-457f-a484-37098a51d120", + "createdTime": "2020-10-29T07:20:23.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c6f226ab-dc72-4ca8-9a0f-146ab2bf5b37", + "createdTime": "2020-10-29T07:20:23.045Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "70650fd5-1611-44b2-a244-c111f8c30d6f", + "createdTime": "2020-10-29T07:20:22.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43fa2fbb-d3cb-4b88-8f25-607b9dfca91c", + "createdTime": "2020-10-28T18:59:16.893Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8adb1f57-b6d9-4cc0-8157-3e76d3339feb", + "createdTime": "2020-10-28T18:38:22.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e56d773-2657-434c-966d-4c57bb0f22df", + "createdTime": "2020-10-28T18:11:45.571Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "48dad64d-3238-4c77-8bcf-752b09fe26d9", + "createdTime": "2020-10-28T08:00:44.267Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "05ce256a-3feb-4007-b84d-cacd2d68d98d", + "createdTime": "2020-10-28T08:00:43.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b54cf8b2-81a3-48ac-a010-b451eda39497", + "createdTime": "2020-10-28T08:00:43.215Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "afea20e3-2668-4068-82d3-004a94044bf2", + "createdTime": "2020-10-28T08:00:42.649Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e3a9d363-06bc-4853-a7c1-4e1650738276", + "createdTime": "2020-10-28T07:57:43.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ad9a9890-2b28-4fcb-b147-bdea84caa4c1", + "createdTime": "2020-10-28T07:57:43.029Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d7a53b6c-8c5c-47e1-acf3-fb190057db93", + "createdTime": "2020-10-28T07:57:42.167Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e01311ba-7d7b-4b96-aa34-cd2a0452ac91", + "createdTime": "2020-10-28T07:57:41.374Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8e825b29-002d-482a-8d11-6664c44ad347", + "createdTime": "2020-10-28T07:51:46.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "217355d9-512c-4432-92fd-7df7de4be111", + "createdTime": "2020-10-28T07:51:45.634Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c7d48c5b-106b-4cf7-9e59-2c01e9ab1c23", + "createdTime": "2020-10-28T07:51:45.139Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4d57b81e-d044-46e1-a3ef-e592bcadb3a0", + "createdTime": "2020-10-28T07:51:44.58Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6bf7a884-3ecc-4029-b08c-a9e8c953139c", + "createdTime": "2020-10-28T07:48:48.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f51c5ad0-c5b1-4afe-a75f-0a5a1a84912d", + "createdTime": "2020-10-28T07:48:47.304Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7103814c-18ee-4736-84fe-865bade73a42", + "createdTime": "2020-10-28T07:48:46.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eeef3e0a-fa72-438e-9d76-e1838f814e08", + "createdTime": "2020-10-28T07:48:45.544Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "98d7d338-274e-4bbd-b350-f6009b11d316", + "createdTime": "2020-10-28T07:40:44.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91f7830b-1836-427f-888d-0a0fe653b4bd", + "createdTime": "2020-10-28T07:40:43.677Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ce085539-80fc-4926-905f-378444acd41e", + "createdTime": "2020-10-28T07:40:42.702Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "934619ea-4bba-4ba4-b9ce-74e0038ef0c6", + "createdTime": "2020-10-28T07:40:41.539Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9f34533f-ae24-4711-9d21-75650286d8ab", + "createdTime": "2020-10-28T07:32:05.545Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a46a9d91-4807-4c09-a3e5-c79f5ac315a4", + "createdTime": "2020-10-28T07:32:05.001Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0a3d26c0-8b11-4c50-a121-123e70f50843", + "createdTime": "2020-10-28T07:32:04.514Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e34470d4-75c5-468d-a752-8843b413609f", + "createdTime": "2020-10-28T07:32:03.973Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b14da65-b648-41de-a186-3f5228e25acd", + "createdTime": "2020-10-28T07:29:23.773Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0214c8a7-9c6c-4763-b517-97ad045b868c", + "createdTime": "2020-10-28T07:29:21.038Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "da3fd48b-46b5-4587-aae1-cd2d24994e0c", + "createdTime": "2020-10-28T07:29:19.811Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "71e829f2-0830-48af-a4c3-0a6e9322d538", + "createdTime": "2020-10-28T07:29:18.729Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "adb30cdd-1cbc-4798-b54b-56edaadd806e", + "createdTime": "2020-10-28T07:22:59.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "eeb2604f-0416-45b5-af65-8f42132b385e", + "createdTime": "2020-10-28T07:22:59.09Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fcf07c0b-3510-459e-92cf-c0a06eb9e3ea", + "createdTime": "2020-10-28T07:22:58.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "509992f9-050a-4746-aca8-91cb2a5ec2b9", + "createdTime": "2020-10-28T07:22:57.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "aaff9914-919e-4938-a8a8-cb056fcae4b9", + "createdTime": "2020-10-28T07:20:19.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "20f0cf84-f7fc-401e-8728-9f8580460156", + "createdTime": "2020-10-28T07:20:19.026Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f5e93bef-96bd-4281-8065-c4eac04578fd", + "createdTime": "2020-10-28T07:20:18.455Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c90e820f-5b9d-4c39-b095-991b2432954f", + "createdTime": "2020-10-28T07:20:17.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "65248b7b-b218-45a1-95c7-4572ef4d8995", + "createdTime": "2020-10-27T08:10:12.386Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "19c831ce-2d3a-41d4-b5ec-81a1a960f2a5", + "createdTime": "2020-10-27T08:10:11.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fbf9116a-e903-4c92-b5c0-3fc53259532d", + "createdTime": "2020-10-27T08:10:11.261Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c76b5110-bfe7-49a0-945c-203f494f37e2", + "createdTime": "2020-10-27T08:10:10.635Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ef5b1524-09e6-41b7-9668-4d730c9bcf69", + "createdTime": "2020-10-27T08:07:24.085Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8a10486d-ec37-49e3-baa7-45c82f59d116", + "createdTime": "2020-10-27T08:07:22.951Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "59551a1c-2990-4bdf-b715-433bd19dce90", + "createdTime": "2020-10-27T08:07:16.735Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a928d75d-32f2-4950-bc06-ab8bbead99fe", + "createdTime": "2020-10-27T08:07:15.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "46e97e9c-2044-4ade-8ae8-3a584f733f09", + "createdTime": "2020-10-27T07:55:34.982Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b43e13d9-0146-48eb-93b2-e1c3a70b970a", + "createdTime": "2020-10-27T07:55:34.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "27285e3d-921d-4e77-81b6-cfba6bfb8846", + "createdTime": "2020-10-27T07:55:33.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "02a0bfcf-98f6-40a7-868a-70ee4d0e9d17", + "createdTime": "2020-10-27T07:55:32.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "25c0601f-20f8-4493-a839-722b64453e0f", + "createdTime": "2020-10-27T07:52:23.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "2a28b5e7-f658-426c-94d6-f5ed0b1e595c", + "createdTime": "2020-10-27T07:52:21.917Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "32c7e2e4-9586-4a75-b82e-949e89934d28", + "createdTime": "2020-10-27T07:52:20.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3df9e5ed-0980-4ca7-8543-d170b9f15a1b", + "createdTime": "2020-10-27T07:52:19.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f9c7d7c8-315d-461c-83ba-526daf0261bf", + "createdTime": "2020-10-27T07:43:38.434Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "cf1e0889-7ac4-41cd-8906-69178a5e39bb", + "createdTime": "2020-10-27T07:43:37.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "63f1c86e-461b-4932-9133-741f5ec6972a", + "createdTime": "2020-10-27T07:43:36.672Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8f2ecf3a-7933-4b3e-80c1-8de052c5cf70", + "createdTime": "2020-10-27T07:43:35.411Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7591752b-c59f-44ae-ab63-99f80c4aa5a5", + "createdTime": "2020-10-27T07:32:44.49Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5c7df539-1bb9-4032-9dd6-7fdeb76b5243", + "createdTime": "2020-10-27T07:32:43.952Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "703b3863-b714-4a0e-9fe3-17089c432eaa", + "createdTime": "2020-10-27T07:32:43.426Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "401246ca-2796-4a5c-9a23-1c9dc8f04315", + "createdTime": "2020-10-27T07:32:42.887Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4e1a9de-5b4a-4b49-a3b0-7ddec539410b", + "createdTime": "2020-10-27T07:29:34.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "edb92bcb-d0f0-452d-b58e-9466aeac08bf", + "createdTime": "2020-10-27T07:29:34.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf5ee10d-e53c-4d68-bd51-ad5061ed7081", + "createdTime": "2020-10-27T07:29:33.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5413056a-336d-4fa8-9a33-5d1653e2eece", + "createdTime": "2020-10-27T07:29:32.357Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "61ff3a28-e590-42b6-a11d-c8331d1fa0ef", + "createdTime": "2020-10-27T07:23:50.941Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4688df1b-0d9c-4494-ac87-dd1486febf1f", + "createdTime": "2020-10-27T07:23:50.381Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dff8ed32-b785-428d-b6b8-8f601ae283b2", + "createdTime": "2020-10-27T07:23:49.868Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "05b9ffee-efcb-4797-a932-ac2c328ce9f1", + "createdTime": "2020-10-27T07:23:49.338Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5e538048-e601-449f-aee5-47cfc140603c", + "createdTime": "2020-10-27T07:20:50.525Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3278f4c1-439e-4400-9ece-9c6a492d1f22", + "createdTime": "2020-10-27T07:20:49.7Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c2e5452c-848c-4885-abac-e0e49c62f868", + "createdTime": "2020-10-27T07:20:49.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "51b55a13-d367-4b26-9500-abeb5ad646dd", + "createdTime": "2020-10-27T07:20:48.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03f80c04-19fb-4827-9650-ee1447995a46", + "createdTime": "2020-10-26T23:01:44.081Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0fec067b-737a-4c4e-944f-e543435ae592", + "createdTime": "2020-10-26T23:01:43.576Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a3612da9-ab3a-40b0-ad9f-612f40b5bccb", + "createdTime": "2020-10-26T23:01:43.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0e2085df-fc7c-4df1-8c3f-5b3c9861e0c4", + "createdTime": "2020-10-26T23:01:42.55Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "06308617-188a-496f-b063-c3a321c96824", + "createdTime": "2020-10-26T22:58:47.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e12b60c6-1066-4511-b9cc-e229e88a144b", + "createdTime": "2020-10-26T22:58:46.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b33aaa80-f2dd-40c8-923a-3f8395bb2b24", + "createdTime": "2020-10-26T22:58:46.039Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d9e2a9f7-4e4b-422a-934f-7a5a15f88faf", + "createdTime": "2020-10-26T22:58:45.007Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9ffb8b38-83de-4054-a1aa-b3d182cc3621", + "createdTime": "2020-10-26T22:52:40.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a0b02c0a-d03f-4ab6-b42f-13141dfa8113", + "createdTime": "2020-10-26T22:52:39.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bf6ff05f-55c7-429c-be41-ca9a6d755eda", + "createdTime": "2020-10-26T22:52:39.061Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "51085507-c6db-4755-83ac-9caeb2798b06", + "createdTime": "2020-10-26T22:52:38.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1a8600d3-6f92-4b8e-8ffc-c0fdaec7082c", + "createdTime": "2020-10-26T22:49:34.216Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "96f723bd-50ef-4730-83eb-764253a80a51", + "createdTime": "2020-10-26T22:49:33.149Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e728c32-bba4-4e6d-a2ca-710cfa3c147f", + "createdTime": "2020-10-26T22:49:32.002Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7af3b724-4778-498a-8e8a-488c258458e5", + "createdTime": "2020-10-26T22:49:30.954Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "963ff953-fa4f-40bf-89e0-48bb83f61a77", + "createdTime": "2020-10-26T22:40:58.469Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "026e8a13-783c-4ccc-8091-23ffad37e63c", + "createdTime": "2020-10-26T22:40:57.9Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4d230ad4-8a95-4b79-90bc-02fd055c775e", + "createdTime": "2020-10-26T22:40:57.341Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "981960c8-d605-4921-97d1-29760c4e9bb1", + "createdTime": "2020-10-26T22:40:56.716Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0de37dd9-7108-4d74-be86-764bbe6b1523", + "createdTime": "2020-10-26T22:30:20.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "63f84cb9-a037-4edb-aa71-d9171f4d193b", + "createdTime": "2020-10-26T22:30:19.492Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ab22d7d8-45e2-4506-bbae-60b55a816075", + "createdTime": "2020-10-26T22:30:18.192Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2cc42c83-0317-491e-98e9-dae53ca0e277", + "createdTime": "2020-10-26T22:30:17.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ca925e2f-260e-44e0-bba6-87a5128bf1a7", + "createdTime": "2020-10-26T22:27:34.543Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "849c1d3b-844c-4568-9d11-df4e5a8c6733", + "createdTime": "2020-10-26T22:27:33.682Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4d803ee6-0976-445d-9f18-9b0ca8a5f258", + "createdTime": "2020-10-26T22:27:32.926Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "7b189e53-f2b0-4e27-9424-d65f05c8bb8a", + "createdTime": "2020-10-26T22:27:32.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7dc92646-658e-4e19-bc45-a0f9ef406ce6", + "createdTime": "2020-10-26T22:20:40.667Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ce68f5c0-b33d-489a-a7d8-75e3762df40d", + "createdTime": "2020-10-26T22:20:39.904Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c38d51e9-3ddf-4c29-9ddd-b4361f3b27f1", + "createdTime": "2020-10-26T22:20:39.339Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0cf8a13e-5865-4604-b352-2bf3b2715abb", + "createdTime": "2020-10-26T22:20:38.745Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f65bb223-a98f-4203-bc4f-b46517d726c9", + "createdTime": "2020-10-26T22:17:33Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e57ec006-50aa-4206-ae6e-966dab18d068", + "createdTime": "2020-10-26T22:17:32.412Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eee2b213-e88f-4f2c-b7ed-042458894883", + "createdTime": "2020-10-26T22:17:31.858Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "56fd8315-560b-4d8e-84a4-8bf45c501d82", + "createdTime": "2020-10-26T22:17:31.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "959f52a7-e8e4-4e33-9d26-db511b03b0dc", + "createdTime": "2020-10-26T21:51:15.452Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e5ae0c34-d9ee-4952-b7b5-4743ca3aff11", + "createdTime": "2020-10-26T21:51:14.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "23363242-ea28-4878-a4ea-04ad602a0d7f", + "createdTime": "2020-10-26T21:51:13.781Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "711907af-342a-445d-9047-d76ab4ad7e3f", + "createdTime": "2020-10-26T21:51:13.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "7f353658-afdf-46d9-8334-c249694ebb7a", + "createdTime": "2020-10-26T21:48:43.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "257554dd-9453-43bf-b1bb-0e98567514fe", + "createdTime": "2020-10-26T21:48:42.474Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e3d2bd81-fa86-49a0-92ff-cdf267d16297", + "createdTime": "2020-10-26T21:48:41.669Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "094e6fc8-8caa-4055-9dfc-e4004999f8a2", + "createdTime": "2020-10-26T21:48:40.947Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "54dc9456-ac17-4ea3-adb0-18f1279f19f1", + "createdTime": "2020-10-26T21:42:27.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8923565c-8309-474c-81a2-2ddca003dc6e", + "createdTime": "2020-10-26T21:42:24.711Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f40671cf-9ae0-4605-9902-eb7ddfc4b307", + "createdTime": "2020-10-26T21:42:22.128Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "06451e61-72c3-4163-aa99-c76f0f8327b4", + "createdTime": "2020-10-26T21:42:18.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d4d8cbf7-c223-4a9c-b844-1ac5d8aa51c1", + "createdTime": "2020-10-26T21:39:37.194Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6da6745d-4327-4d8e-90d5-a8c11762e118", + "createdTime": "2020-10-26T21:39:36.234Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a88a0e13-2ea6-4c23-98d8-c83d948d0d8e", + "createdTime": "2020-10-26T21:39:35.321Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e191db1c-24e9-410c-95e6-d2f8f535daf5", + "createdTime": "2020-10-26T21:39:34.575Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "2e8d737f-3abb-40ad-8f86-13853f09a926", + "createdTime": "2020-10-26T21:25:12.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7c8c9293-cd20-4670-abac-f92f86e75216", + "createdTime": "2020-10-26T21:25:11.969Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "0073ec3d-dd72-48ca-8521-4cf72737f686", + "createdTime": "2020-10-26T21:25:11.407Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2ad53013-9603-4cd6-83b6-00124f57d571", + "createdTime": "2020-10-26T21:25:10.768Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c5817ccc-0b7d-4885-9af7-c5b0b6cb732c", + "createdTime": "2020-10-26T21:06:39.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0e511e33-5707-4b84-9360-67996db4c50c", + "createdTime": "2020-10-26T21:06:38.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "78361cd5-eeb8-446e-b076-397ae6fdc2d9", + "createdTime": "2020-10-26T21:06:38.235Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8de1dcd5-54f7-43d6-b48a-d2aa875a6807", + "createdTime": "2020-10-26T21:06:37.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "03aaea11-c91a-453d-82c4-6b42f80c3183", + "createdTime": "2020-10-26T21:03:48.746Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "afb332f2-edcb-440a-8607-f7624e7980fe", + "createdTime": "2020-10-26T21:03:48.209Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5ba909d-8746-42e5-90d9-47f33ece9e48", + "createdTime": "2020-10-26T21:03:47.681Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b40d6f16-5f8e-4ca6-b62c-06b67606443c", + "createdTime": "2020-10-26T21:03:47.12Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df24fffc-ddb5-45a5-8610-3c7ea6edf7de", + "createdTime": "2020-10-26T20:57:20.255Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "41d09963-2b2b-4133-8369-885f2ba0dbb3", + "createdTime": "2020-10-26T20:57:19.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "af336b6d-cbab-4ad0-9669-247118ea80b9", + "createdTime": "2020-10-26T20:57:17.439Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "10dc1b62-ba75-4eb1-b3ca-acb93e72e9fe", + "createdTime": "2020-10-26T20:57:16.489Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1fd5d0a8-66a5-4ce7-bb1f-b4a627849858", + "createdTime": "2020-10-26T20:54:44.865Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8342fe3f-6ba5-4b1e-905b-b9b3cfe94837", + "createdTime": "2020-10-26T20:54:44.195Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "1e7de937-d994-4736-a8ff-2acfa28e52e5", + "createdTime": "2020-10-26T20:54:43.443Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3c8791ac-7f5d-4d79-ad92-edb3f876974e", + "createdTime": "2020-10-26T20:54:42.616Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "9a1bc7b8-dca9-424a-b1e3-d7f8b1e7a6aa", + "createdTime": "2020-10-26T20:44:34.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "acf7e869-c031-4608-8f9f-647a5d1d985b", + "createdTime": "2020-10-26T20:44:33.814Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6f533d50-aa92-490f-9afc-693f8f11f2ee", + "createdTime": "2020-10-26T20:44:33.35Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e4538a2-b40f-4e68-9774-2a96ff288ed3", + "createdTime": "2020-10-26T20:44:32.789Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8b08a5e8-33f2-4612-99fd-dff5c7ab1577", + "createdTime": "2020-10-26T20:41:58.978Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "e939c516-fafb-4256-b6b1-e01e9a2a57d0", + "createdTime": "2020-10-26T20:41:58.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "6fc5f6d7-3fee-454d-9101-0894d9106eb3", + "createdTime": "2020-10-26T20:41:58.248Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c4eb47f-17f5-4d81-8959-33d1d70676e0", + "createdTime": "2020-10-26T20:41:57.837Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6513cc67-a62c-4c0a-be8b-05411f112855", + "createdTime": "2020-10-26T20:36:41.737Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4fc7d258-7ebb-485d-ab6a-ed83351d4f31", + "createdTime": "2020-10-26T20:36:41.227Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ac376b37-a8b9-48e9-aa6f-b7eb2c23b0c7", + "createdTime": "2020-10-26T20:36:40.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6cb879a8-0f3d-4fe3-b4e4-f79bf4c01274", + "createdTime": "2020-10-26T20:36:40.212Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e77d8578-1574-4254-bc1c-700deed36558", + "createdTime": "2020-10-26T20:33:42.97Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1f2d5503-2a9d-40fd-8975-790d0e3cdc9c", + "createdTime": "2020-10-26T20:33:41.683Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "816bb309-13df-433e-b224-2f74cce88c78", + "createdTime": "2020-10-26T20:33:40.44Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "b7afa6b5-0d21-4ce0-a331-87adcfb09a99", + "createdTime": "2020-10-26T20:33:39.258Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fffd44bd-a709-455c-9001-6d433b63ef90", + "createdTime": "2020-10-26T20:25:49.902Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7933b4e1-a7a3-4b75-aef5-bf7ba39e3386", + "createdTime": "2020-10-26T20:25:49.352Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ab97cb70-ed08-4500-9a16-37f7c85e0944", + "createdTime": "2020-10-26T20:25:48.721Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d0dc0953-f4ed-4fcc-958c-94d53b450b89", + "createdTime": "2020-10-26T20:25:47.933Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "201d7529-9bf1-4a3c-bcb3-4944c11bb53e", + "createdTime": "2020-10-26T20:17:02.629Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "782e2082-a8fd-4d5c-939b-06b217cc2c9c", + "createdTime": "2020-10-26T20:17:02.048Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "714512d2-05ba-4290-88ec-6e345e83196a", + "createdTime": "2020-10-26T20:17:01.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "66a9ceb8-b197-4147-ac0a-500a56434df9", + "createdTime": "2020-10-26T20:17:00.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "244315a2-3d3f-4ea5-8a6e-e387dc8c1d05", + "createdTime": "2020-10-26T20:14:06.827Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "552726da-90c8-47b9-bb7b-532719c32af7", + "createdTime": "2020-10-26T20:14:06.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4551d1f4-c70a-4077-a301-1cbc3772e648", + "createdTime": "2020-10-26T20:14:05.663Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "a4b268ab-9e8f-40e6-b648-01d276c073e8", + "createdTime": "2020-10-26T20:14:05.014Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "72ffbd3a-fb8b-434f-83cc-2c1e0651b784", + "createdTime": "2020-10-26T20:06:58.31Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ba9255a1-cb4b-41a4-aebb-f3b4cbfdc907", + "createdTime": "2020-10-26T20:06:57.797Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f9d88610-b202-43a6-8751-82b817a3b16b", + "createdTime": "2020-10-26T20:06:57.29Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "71d4f85e-2c93-4622-b9e1-f02c64ac42c4", + "createdTime": "2020-10-26T20:06:56.748Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "78ce6f3f-cd07-4b3b-8995-9e2b9271a65e", + "createdTime": "2020-10-26T20:04:21.712Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "53cd6b7c-cb38-4d18-a6a8-75931bd76e86", + "createdTime": "2020-10-26T20:04:20.066Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eb5674e9-2813-40ed-828a-d7dc5b95cf09", + "createdTime": "2020-10-26T20:04:19.2Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5a86728c-8978-4fb3-868f-5a4dea742371", + "createdTime": "2020-10-26T20:04:17.622Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4a9ebb6a-ee4d-46be-aa92-91f85996d497", + "createdTime": "2020-10-26T17:54:11.866Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7ea84eba-aa64-4a58-a76c-89261718678b", + "createdTime": "2020-10-26T17:54:08.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ff69d621-7dea-43bb-b00b-efda4103f155", + "createdTime": "2020-10-26T17:54:07.81Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cb4c6de5-2b57-49f6-bef6-0feb907ed46c", + "createdTime": "2020-10-26T17:54:07.271Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "146a3a5e-8fe9-40dd-a144-268cbea998b9", + "createdTime": "2020-10-26T17:47:27.015Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "95cff865-a172-46b1-9afd-7d426b42fa44", + "createdTime": "2020-10-26T17:47:26.242Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f1d56f49-2ba5-446b-8057-2029091af490", + "createdTime": "2020-10-26T17:47:25.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8f6dec29-707e-4604-971b-6c48a3c68c4c", + "createdTime": "2020-10-26T17:47:24.665Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "73b0b5db-3cd1-4d9d-99ee-e8320e9f79d5", + "createdTime": "2020-10-26T17:44:04.276Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9e3e1fb0-6246-46ca-a180-0bb09b670fd7", + "createdTime": "2020-10-26T17:44:03.281Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "592c94ad-c2db-4c86-9fa4-cf8c62f2cace", + "createdTime": "2020-10-26T17:44:02.43Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bfa3cd15-8ac2-465b-a5bd-706ebb6392f2", + "createdTime": "2020-10-26T17:44:01.679Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "df0e503e-690a-4acc-b664-7021d715cf04", + "createdTime": "2020-10-26T17:37:19.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "8393e577-7388-462e-be85-c60f56042a91", + "createdTime": "2020-10-26T17:37:13.011Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "26a91e1a-ae54-4f87-a62d-fcb68c549773", + "createdTime": "2020-10-26T17:37:11.94Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "28ca82ee-9891-4cae-b086-6e21f2cc6d50", + "createdTime": "2020-10-26T17:37:10.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c7593d76-352c-46d2-9a8a-06c3e1a980ca", + "createdTime": "2020-10-26T17:34:36.233Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f480dd24-cb62-4094-be32-b04069d554d4", + "createdTime": "2020-10-26T17:34:35.491Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ed0a746e-4fe9-4ae4-870c-b60c6d6f6db7", + "createdTime": "2020-10-26T17:34:34.805Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d3e916fb-b326-46ba-9f3c-b688d9d17c2a", + "createdTime": "2020-10-26T17:34:33.972Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc7dba02-35f3-4ec8-a107-e50b24b09adb", + "createdTime": "2020-10-26T17:31:09.645Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "410135e8-c38f-499e-a59b-5027a48264fb", + "createdTime": "2020-10-26T17:31:08.869Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "47e4f682-a663-4b3c-9825-caaa266eb2b4", + "createdTime": "2020-10-26T17:31:08.174Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "070cf15c-d75f-4467-9569-0010c700c857", + "createdTime": "2020-10-26T17:31:07.345Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8df08316-232f-436d-99e8-b0104bca6841", + "createdTime": "2020-10-26T17:22:16.923Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3bd2fdc1-cf2d-45dc-a189-045ed76b5bcc", + "createdTime": "2020-10-26T17:22:15.648Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8c72da23-012b-4e81-a445-7fa69df91f31", + "createdTime": "2020-10-26T17:22:09.504Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "89b61f17-8e68-488d-a7b3-3fdbcae620e8", + "createdTime": "2020-10-26T17:22:08.516Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "fe3d3a05-d7d6-487c-a021-dd10568be86c", + "createdTime": "2020-10-26T17:20:15.257Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "91e74500-a04c-4f52-bfe2-78896091fd5a", + "createdTime": "2020-10-26T17:20:14.594Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b81c92bf-a342-4c83-8dff-fbca94956614", + "createdTime": "2020-10-26T17:20:14.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "59a8744c-a524-432c-a86e-005be7d797db", + "createdTime": "2020-10-26T17:20:13.447Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "dacfcf73-bd02-4c3a-a022-8fff59b40064", + "createdTime": "2020-10-26T17:01:50.787Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "a7589a1d-00cf-43ce-83f1-16ee5b68b9a3", + "createdTime": "2020-10-26T17:01:50.252Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "10ad4c73-33c2-4f1c-b504-6ed2567b1fd4", + "createdTime": "2020-10-26T17:01:49.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "bbc8e72f-58ea-401e-9e7b-47db680777a6", + "createdTime": "2020-10-26T17:01:49.203Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0a6de16e-91f1-4fa4-9211-877e66475ccf", + "createdTime": "2020-10-26T16:59:01.487Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "25987f08-35ee-42bc-8941-a19e75efaf9a", + "createdTime": "2020-10-26T16:59:00.876Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "cc736267-403c-4bb1-8382-d43ec33681fb", + "createdTime": "2020-10-26T16:59:00.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "523394dd-2da3-482e-bf64-aa963aeb1dec", + "createdTime": "2020-10-26T16:58:59.732Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1ead95d5-50d5-42a7-b009-a4fca02d556e", + "createdTime": "2020-10-26T16:43:37.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5144e124-748d-454f-a2a1-1a7bf55a3e51", + "createdTime": "2020-10-26T16:43:36.813Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "30b0bec7-e788-4f68-b130-ffd7b75cc8f9", + "createdTime": "2020-10-26T16:43:36.193Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "30a91e80-5220-4a58-84c1-41aa43105252", + "createdTime": "2020-10-26T16:43:35.451Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3d584c29-a932-4b43-8bd8-3156af8c54aa", + "createdTime": "2020-10-26T16:41:02.034Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ffdafdb7-0d78-4074-a874-14235cf585bf", + "createdTime": "2020-10-26T16:41:01.607Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51369b18-fbc9-4bbc-aa6d-286d519ffa4f", + "createdTime": "2020-10-26T16:41:01.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "eb7b3660-994d-40d8-b9a2-c79ae0cbec5b", + "createdTime": "2020-10-26T16:41:00.697Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c18bdeb4-8818-4edb-b52e-f4cbebbc8d6f", + "createdTime": "2020-10-26T16:01:11.241Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "bcd6b8a4-e619-46f0-8e91-45f39981f9af", + "createdTime": "2020-10-26T16:01:10.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "89a01e54-4693-4076-a034-0b26b156353b", + "createdTime": "2020-10-26T16:01:10.178Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "ed88f878-ebb2-4d21-978e-25d2dc017e12", + "createdTime": "2020-10-26T16:01:09.678Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "69fb3d2f-972b-4d43-853a-1b2816197fcf", + "createdTime": "2020-10-26T15:58:20.757Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b5ed5e8a-6e71-4e66-b700-cb754b38bb12", + "createdTime": "2020-10-26T15:58:20.265Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "48a01893-c2c2-410e-8bee-71d5d13b60e0", + "createdTime": "2020-10-26T15:58:19.838Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a1fc9c3-354d-4bbb-81c3-e40f483e6a1d", + "createdTime": "2020-10-26T15:58:18.548Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "825aab0f-6526-4384-87ac-6b1fabedb14b", + "createdTime": "2020-10-26T08:06:32.484Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "00572b8c-ef9b-42a7-bf25-d7f74da68e52", + "createdTime": "2020-10-26T08:06:31.943Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "dd790ed7-90a0-48fd-82ac-ee5cd603e689", + "createdTime": "2020-10-26T08:06:31.427Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "c3bd4919-fa68-4c45-9cc6-0f2dd35d0a9d", + "createdTime": "2020-10-26T08:06:30.878Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "0c731a2b-d6c6-4f86-ac79-8aafa651e199", + "createdTime": "2020-10-26T08:04:56.301Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "806a6be7-495b-4ead-be4c-3bdb951e3174", + "createdTime": "2020-10-26T08:04:55.766Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "9f7a08cc-0676-48f5-995d-6ff8f9e00ab5", + "createdTime": "2020-10-26T08:04:55.268Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6cb391af-8ece-433f-a1c7-dcfb269c017a", + "createdTime": "2020-10-26T08:04:54.755Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "88903c44-61d2-42b1-bb7d-ec4c06f80f08", + "createdTime": "2020-10-26T07:49:11.646Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "1393dc5a-5258-4475-97d2-540131d76e05", + "createdTime": "2020-10-26T07:49:11.004Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5f2619d1-3fcb-4f99-b0bd-8c85936182b8", + "createdTime": "2020-10-26T07:49:10.444Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "4051a645-6a5b-4345-8249-0dbfedc04f79", + "createdTime": "2020-10-26T07:49:09.736Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "afdeba94-846c-4259-957e-0fc9bff8fd58", + "createdTime": "2020-10-26T07:47:44.527Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "559a3404-fe97-4b2e-a5af-a03ca4749fdd", + "createdTime": "2020-10-26T07:47:44.005Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8ae60ed8-0502-42cc-8bf6-5c03902e0c26", + "createdTime": "2020-10-26T07:47:43.535Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1c9d79f4-589e-46fb-aceb-f56488699835", + "createdTime": "2020-10-26T07:47:42.777Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d9ebd65c-cb07-4133-a685-9f2c944e01fa", + "createdTime": "2020-10-26T07:35:45.067Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "95c88a35-f03c-4034-b0c0-b6dc217b5a0f", + "createdTime": "2020-10-26T07:35:44.54Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d3812cd2-fa5f-46b9-87a9-16e941044d68", + "createdTime": "2020-10-26T07:35:44.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "488f85bc-9dc0-4c02-95e9-4f76e6bbd79e", + "createdTime": "2020-10-26T07:35:43.45Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f5557b7c-1644-4962-a1e9-d2dc4bff0db5", + "createdTime": "2020-10-26T07:27:04.211Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c0286856-f5cb-4797-bc1e-d910aefc9950", + "createdTime": "2020-10-26T07:27:03.631Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e4c7e898-1fa8-4db1-9534-ff0a95af142c", + "createdTime": "2020-10-26T07:27:03.058Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b33784c-55e1-44f3-9b4c-a90c69cefb71", + "createdTime": "2020-10-26T07:27:02.485Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "542ecc72-2a78-4072-a43d-d4b410e0da65", + "createdTime": "2020-10-26T07:25:35.995Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f50a80a4-a2d7-4a25-9636-e9ce5c49bec2", + "createdTime": "2020-10-26T07:25:35.459Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "323fa5a2-73cb-42a1-8253-63f84e25c5fb", + "createdTime": "2020-10-26T07:25:34.939Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b06006d-27b9-4f49-bd4b-a17d1312db55", + "createdTime": "2020-10-26T07:25:34.406Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b835e521-8e2e-4220-8a74-db7e0b9d9bff", + "createdTime": "2020-10-26T07:21:09.379Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5cf5cd53-593f-495c-a893-ebb89c3b41fe", + "createdTime": "2020-10-26T07:21:07.512Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "902f8cf3-63de-4b5f-9338-97c093f6d0ac", + "createdTime": "2020-10-26T07:21:06.998Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "555f37f8-243b-4006-aa17-cecb1ea581fe", + "createdTime": "2020-10-26T07:21:06.384Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f6adad14-50a7-4745-b61e-70d3a9188e2f", + "createdTime": "2020-10-26T07:19:29.223Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "dfe0f012-0abc-4984-80ca-c3def488284d", + "createdTime": "2020-10-26T07:19:28.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f3101d8e-6caf-473b-bb21-0e96f2bffd46", + "createdTime": "2020-10-26T07:19:28.073Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "1b256490-b2c1-47e8-a953-18456afd2785", + "createdTime": "2020-10-26T07:19:27.541Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e2271db-75c6-433d-a066-0396b2f12132", + "createdTime": "2020-10-26T02:49:21.441Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "a5137211-9909-4f84-aa28-032063e766da", + "createdTime": "2020-10-26T02:49:14.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "8c317e3d-f4d8-47e7-b259-f3e642efb21b", + "createdTime": "2020-10-26T01:58:15.549Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "46be83d6-7043-454e-849c-b407d711ca6a", + "createdTime": "2020-10-26T01:58:13.533Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "346c5198-fa76-4df0-aafb-d15e330908c5", + "createdTime": "2020-10-26T01:57:41.196Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "c6e1550f-c713-4e01-bd95-76814bfd4034", + "createdTime": "2020-10-26T01:57:39.903Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "3640dae9-418b-4f41-bd15-681395db7946", + "createdTime": "2020-10-24T23:55:29.475Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "56f7e5b3-0cca-4c4e-9530-b95061c681dc", + "createdTime": "2020-10-24T23:55:13.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "cc95730a-36d3-4fb0-a1be-1938ee725188", + "createdTime": "2020-10-24T23:54:50.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "c6c424ac-4808-4fd2-a3ef-4b29ce3b7341", + "createdTime": "2020-10-24T23:54:50.285Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "413a25dd-5a82-49c3-849d-8b3e166de449", + "createdTime": "2020-10-24T23:53:48.417Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f755afbf-eba6-431a-ab6f-c11584b04556", + "createdTime": "2020-10-24T23:53:50.638Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "af115d99-82a9-44fb-b75c-5c52be45aca4", + "createdTime": "2020-10-24T23:53:48.424Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "b7dd547e-1297-4967-b8c5-05d513941c2b", + "createdTime": "2020-10-24T23:53:48.376Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "1f82a6a0-00a1-4621-9116-8bf6764b3157", + "createdTime": "2020-10-24T23:52:01.728Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f051d9e3-0559-4747-9166-66ca4cfca77a", + "createdTime": "2020-10-24T23:50:30.389Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "19bba83e-77e4-46ea-acaf-921c70600463", + "createdTime": "2020-10-24T23:38:03.26Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "8624ead2-78eb-4ade-8cad-ace3af3cbeb6", + "createdTime": "2020-10-24T23:38:03.21Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b2c378e6-7f96-414c-8b19-0502bec51e1f", + "createdTime": "2020-10-24T23:38:03.325Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "374f5239-73a8-456a-8d27-cb984a63b859", + "createdTime": "2020-10-24T23:38:02.197Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "changePointValue": "AutoDetect" + } + }, + { + "feedbackId": "4c1ea618-06f5-46ab-be55-c64340684e0e", + "createdTime": "2020-10-24T23:37:16.784Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AutoDetect", + "periodValue": 3 + } + }, + { + "feedbackId": "d908b431-e579-4fd0-9a84-ffe8f8c82a84", + "createdTime": "2020-10-24T23:37:16.744Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "40a36397-4db4-48db-bbc8-36b2e2de4a65", + "createdTime": "2020-10-24T23:37:16.74Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "5dab5a9a-22a7-4edc-ab45-51285284a949", + "createdTime": "2020-10-24T23:37:07.202Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + "feedbackType": "Comment", + "startTime": "2020-01-01T00:00:00Z", + "endTime": "2020-10-22T00:00:00Z", + "value": { + "commentValue": "Not an anomaly." + } + }, + { + "feedbackId": "f2d93928-3509-4273-9c00-66ab323a1684", + "createdTime": "2020-10-23T23:50:36.262Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "ceb6d3cc-1241-4269-9067-a179df7ba906", + "createdTime": "2020-10-23T08:22:47.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "3af46a09-a214-41f2-ba46-ccbf765201f5", + "createdTime": "2020-10-23T08:22:46.38Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b317ba58-7e13-4c90-b0f2-0837af9bf7c6", + "createdTime": "2020-10-23T08:22:45.577Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0375b8ce-fd1e-4ac0-8282-7f8f8fcc9220", + "createdTime": "2020-10-23T08:22:44.686Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "20e2b21e-42cc-4c2c-b71c-b1d1adfd3b89", + "createdTime": "2020-10-23T08:20:59.3Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "b97cf185-ac2a-4dfa-86a8-9cc55083607e", + "createdTime": "2020-10-23T08:20:58.362Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "51ff4088-c15c-46ca-ae2c-69b6405c67b8", + "createdTime": "2020-10-23T08:20:57.534Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "fe421cec-cd3b-48da-8aa4-a6eaf62bf502", + "createdTime": "2020-10-23T08:20:56.466Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6581b4af-f529-41fb-931f-b7aa856c3a65", + "createdTime": "2020-10-23T08:05:34.828Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "52c62ae6-9679-46f5-923b-47a15c127b75", + "createdTime": "2020-10-23T08:05:33.714Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2655e945-0e4f-4a51-b8b6-998561ca796a", + "createdTime": "2020-10-23T08:05:32.765Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e840cc8f-f80a-4d2e-9f08-5a6b85272e22", + "createdTime": "2020-10-23T08:05:31.65Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d35f50a9-9f10-42e8-a8c0-54ce0e5dd32a", + "createdTime": "2020-10-23T08:03:52.382Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "ddc1aefb-018a-424e-8b1d-3071d23bd32e", + "createdTime": "2020-10-23T08:03:51.559Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "fe8d87d6-d926-49d6-8432-794aa3754463", + "createdTime": "2020-10-23T08:03:50.589Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f6332f14-c439-4130-b73b-aab685c297c6", + "createdTime": "2020-10-23T08:03:49.799Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "55cebda5-af80-42c1-96e2-971cc6fbadf5", + "createdTime": "2020-10-23T07:44:09.897Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "fbd0cbfa-d7d2-472e-8f44-6ac0c758667a", + "createdTime": "2020-10-23T07:44:09.017Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7d9ee012-f698-41ae-914f-0a76c2f18413", + "createdTime": "2020-10-23T07:44:08.236Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2e605f15-863b-46a7-b1ce-cd52b09b34c9", + "createdTime": "2020-10-23T07:44:07.291Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a9bc6feb-c577-4a3f-9a97-0b663c4ab6a6", + "createdTime": "2020-10-23T07:31:52.147Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c136482d-01d3-4e0d-88a8-6bdb8b6a8dfd", + "createdTime": "2020-10-23T07:31:51.356Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ee6e767e-6304-41f0-a095-823c78f25866", + "createdTime": "2020-10-23T07:31:50.698Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "cc4d41cf-7990-4d4b-9dec-ebbf9b87541c", + "createdTime": "2020-10-23T07:31:49.847Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "abab6dc7-8237-4198-8725-f74d1aa56536", + "createdTime": "2020-10-23T07:29:56.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f498116f-672b-402e-8e92-55e84c6e1469", + "createdTime": "2020-10-23T07:29:55.206Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "82f4d6a7-af47-4473-8bbb-db63d697527e", + "createdTime": "2020-10-23T07:29:54.108Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "0a637ae1-10ce-4ab0-98af-46000b7885d7", + "createdTime": "2020-10-23T07:29:52.999Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "da96c5df-ab18-42ab-8739-8018cc933a92", + "createdTime": "2020-10-23T07:22:11.293Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7a1675ab-6fd4-422b-8deb-dae3c1e1b1e1", + "createdTime": "2020-10-23T07:22:10.307Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "c94fb9d0-c91e-4e5f-b027-b1872926b891", + "createdTime": "2020-10-23T07:22:09.486Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "91de1491-a301-4450-a829-8d197cfcaaac", + "createdTime": "2020-10-23T07:22:08.479Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c2b683d2-08f4-4703-b493-efe2267ca116", + "createdTime": "2020-10-23T07:20:16.785Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "688cb033-0121-4fbb-9556-67e91240d5e8", + "createdTime": "2020-10-23T07:20:16.177Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ee024197-f65d-405e-832f-b874acb79f6f", + "createdTime": "2020-10-23T07:20:15.623Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "6a64b07e-6e50-4ab5-a7c0-73575124e1bc", + "createdTime": "2020-10-23T07:20:14.955Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e71f50b8-2a46-430b-9b3c-e95de1a2da67", + "createdTime": "2020-10-23T01:21:30.497Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "526bfd1d-891d-4968-bff4-cc36560898d6", + "createdTime": "2020-10-23T01:21:29.333Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "8361b1db-d9ea-42fc-a063-6dde8f93ea57", + "createdTime": "2020-10-23T01:21:28.299Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "d1e3a6db-eeed-4a35-aac4-7309ecb8393c", + "createdTime": "2020-10-23T01:21:25.874Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "eaf935d4-ee57-4213-b16a-0dafb71e3f65", + "createdTime": "2020-10-23T01:10:17.991Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "9554520f-49e8-45bb-8677-578d6e8075bb", + "createdTime": "2020-10-23T01:10:17.249Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "b2cab943-4365-4a36-9d63-e9d4c3fcd1bc", + "createdTime": "2020-10-23T01:10:16.473Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "707ecfa4-b924-4c92-b3ee-2ad8792bd08f", + "createdTime": "2020-10-23T01:10:15.662Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "76257b87-0255-4b3a-89b9-c7578d82ae8c", + "createdTime": "2020-10-23T01:07:02.767Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "0e365e5b-a4c5-4dc8-81c4-be2e01c663ea", + "createdTime": "2020-10-23T01:07:01.877Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "2a068361-4499-4c09-aea3-a5c99e8f6f02", + "createdTime": "2020-10-23T01:07:01.11Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "efa984b3-fe33-46c7-8fd6-e48ff6afd056", + "createdTime": "2020-10-23T01:07:00.331Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "51850112-6446-45d0-96b9-da68ecbb5e3e", + "createdTime": "2020-10-23T00:59:57.069Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d13fbf1c-4e80-4e42-9a9e-4c42ab13b716", + "createdTime": "2020-10-23T00:59:56.292Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "ebb1117c-b5e7-4e37-99e0-4330c78afb9f", + "createdTime": "2020-10-23T00:59:55.568Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "10f79252-20a5-4c1d-be06-ff9740b94823", + "createdTime": "2020-10-23T00:59:54.771Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f1ce0c8f-3337-48dd-bc0e-27dbad5ba0a8", + "createdTime": "2020-10-23T00:56:43.547Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "17fe8fd8-0993-4c25-90ef-5b6b62e3803b", + "createdTime": "2020-10-23T00:56:42.581Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "430688cf-9ee6-4d00-a1a4-9cbd2863c548", + "createdTime": "2020-10-23T00:56:41.692Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2864b245-200b-4fcf-b4ea-73103b7530f4", + "createdTime": "2020-10-23T00:56:40.715Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6f51f253-f1b1-4297-8530-c6a277d120cb", + "createdTime": "2020-10-22T23:36:36.323Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "64a275b4-6286-4ec6-bdbd-fbe921ac8f77", + "createdTime": "2020-10-22T17:40:57.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "b90ec4b6-3314-4317-932b-3c1638906f6a", + "createdTime": "2020-10-22T17:20:11.992Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "5d8f6982-a914-4ea6-898e-0798f8dc72a0", + "createdTime": "2020-10-22T17:20:11.14Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "eac8e9d4-a1bf-49e7-b7a2-0551984e3e0b", + "createdTime": "2020-10-22T17:20:10.436Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "8e862670-c00e-4a1e-bec9-ae4c6cdf735c", + "createdTime": "2020-10-22T17:20:09.719Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6a8954d0-a8df-4f91-8917-8649c7a1c145", + "createdTime": "2020-10-22T17:16:37.611Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "c929d7f6-7f60-4b72-8d8c-f891acdee17d", + "createdTime": "2020-10-22T17:16:36.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "e26497f2-3256-4903-80e1-8de3aa045652", + "createdTime": "2020-10-22T17:16:35.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "e6034b29-6336-41cb-96ab-52b839f98302", + "createdTime": "2020-10-22T17:16:35.181Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "5b8103b8-9184-45fe-b419-3cb853829023", + "createdTime": "2020-10-22T17:09:36.129Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "46861ec2-3d1f-4c69-a6f1-17d563ba3d25", + "createdTime": "2020-10-22T17:09:35.132Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "bea211ab-2a1d-4183-9cc6-4351fc980a46", + "createdTime": "2020-10-22T17:09:34.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "3b4edbb6-d9ea-4617-a301-323cedcae2b9", + "createdTime": "2020-10-22T17:09:33.48Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "bfaa581e-4ee7-4803-8370-7783cf2c47f5", + "createdTime": "2020-10-22T17:06:04.707Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "447cbc7f-58af-4f31-8eea-82d06b64fc75", + "createdTime": "2020-10-22T17:06:03.86Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "378fcb70-6e39-4a0b-b898-34b696e1f44f", + "createdTime": "2020-10-22T17:06:03.148Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2247e70b-79c8-4ff0-bfd8-cd7baba51498", + "createdTime": "2020-10-22T17:06:02.286Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "f89be604-7eb5-4d40-95d3-0980552bbb92", + "createdTime": "2020-10-22T16:56:54.107Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "02f71272-312d-4b74-b413-62872bf79dda", + "createdTime": "2020-10-22T16:56:53.269Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "5d6433b7-2ebf-4fa8-ba87-ac6a1bde6567", + "createdTime": "2020-10-22T16:56:52.433Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "f57a3f82-db18-4904-8b85-14db84bbdd90", + "createdTime": "2020-10-22T16:56:51.567Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "85256bf8-3c73-415e-96e3-e2bf6e720095", + "createdTime": "2020-10-22T16:48:02.231Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "7fc2a24d-2ecb-4a35-9f2d-695a261b8309", + "createdTime": "2020-10-22T16:48:01.243Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "440280f1-dc97-4104-ac74-c0033fdd30bb", + "createdTime": "2020-10-22T16:48:00.41Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "570af2d0-50bf-40d1-a89f-26b2a7bef16c", + "createdTime": "2020-10-22T16:47:59.303Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "6314fd82-23a1-4169-a596-3d24c3ae855b", + "createdTime": "2020-10-22T16:44:23.884Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "4d5bc138-d4a5-4977-9a25-c77217947a91", + "createdTime": "2020-10-22T16:44:23.117Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "4b63bdee-2c74-471f-8995-5ac63b2d3a44", + "createdTime": "2020-10-22T16:44:22.344Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "05e90a09-1c44-4e33-a9ff-1f2d5938d4a6", + "createdTime": "2020-10-22T16:44:21.515Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "4e290576-154e-4544-a446-3c1273f90a55", + "createdTime": "2020-10-22T16:36:07.823Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "6b83a27b-bc08-4537-8d0a-d11b87a89489", + "createdTime": "2020-10-22T16:36:07.071Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "7d153bce-4726-4e4c-a74c-2b260aa2645b", + "createdTime": "2020-10-22T16:36:06.361Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "38547b82-2492-4574-8b63-c563bfa40560", + "createdTime": "2020-10-22T16:36:05.495Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "e1e4c293-8ddd-4002-ae72-0528605fd407", + "createdTime": "2020-10-22T16:32:28.656Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "f33f9b33-69d9-42ae-98d9-3b9d4f38543b", + "createdTime": "2020-10-22T16:32:27.701Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "38295389-9e2f-42a2-8cc9-4eb8facd47d7", + "createdTime": "2020-10-22T16:32:26.795Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "264c0e98-b99e-4d8c-b4a4-e7a39dde9c78", + "createdTime": "2020-10-22T16:32:25.617Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "3de01d28-0788-443a-9c7a-717b5237abfe", + "createdTime": "2020-10-22T10:30:24.123Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "a1253d4b-3f14-4d76-b555-4086fbcf3b66", + "createdTime": "2020-10-22T09:34:29.693Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "86116721-d74f-44b4-b660-c660150bc6cd", + "createdTime": "2020-10-22T09:33:51.044Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Belo Horizonte" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-02-01T00:00:00Z", + "endTime": "2020-02-03T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "43b71917-d9ea-48b2-bbd5-31450b42e9c8", + "createdTime": "2020-10-21T21:42:37.609Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "d5e5e5f7-5a5e-4488-9a03-a722c11e8743", + "createdTime": "2020-10-21T21:42:37.136Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "66d68377-b9ea-41e8-9d1c-19f369fa2342", + "createdTime": "2020-10-21T21:42:36.713Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "5294fd3e-5826-45be-b9c9-0bb556d3e99b", + "createdTime": "2020-10-21T21:42:36.218Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "336ab90c-8a4c-4b03-b4b9-e0a3accf7885", + "createdTime": "2020-10-21T21:37:13.624Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "50a63795-d631-43ae-9a05-d744df4b986d", + "createdTime": "2020-10-21T21:37:13.204Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "a21e2ccf-b5ad-4bd6-805c-1659dcdf0e1b", + "createdTime": "2020-10-21T21:37:12.826Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "2d8e40ab-24ce-45c3-bcd0-64850a1dd895", + "createdTime": "2020-10-21T21:37:12.22Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "d28de1e8-24e8-463a-824f-cf7b1c61f1ce", + "createdTime": "2020-10-21T21:00:47.704Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "23efe57b-4c7d-4261-9a46-b79cf2f627a1", + "createdTime": "2020-10-21T21:00:47.287Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "d5d34037-a423-48df-b651-6d87dd54e7c3", + "createdTime": "2020-10-21T21:00:46.839Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "55480715-243c-4ef6-8571-4666bcfa7aff", + "createdTime": "2020-10-21T21:00:46.199Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-10-21T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "1607ffa8-044d-40e1-aa81-2337b1d35ad1", + "createdTime": "2020-10-21T20:59:25.918Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Period", + "value": { + "periodType": "AssignValue", + "periodValue": 2 + } + }, + { + "feedbackId": "40c7d42b-6d49-43fe-a4da-04a30be4050f", + "createdTime": "2020-10-21T20:59:25.414Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Comment", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "commentValue": "comment" + } + }, + { + "feedbackId": "f95f172a-7923-46c9-b387-1934715b365e", + "createdTime": "2020-10-21T20:59:24.984Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "ChangePoint", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "changePointValue": "NotChangePoint" + } + }, + { + "feedbackId": "54b14cb6-8c15-413c-b33e-45091b658ff6", + "createdTime": "2020-10-21T20:59:18.46Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Los Angeles" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-08-05T00:00:00Z", + "endTime": "2020-08-07T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": null, + "anomalyDetectionConfigurationSnapshot": null + }, + { + "feedbackId": "c9bbd66a-e695-425a-91fe-f24fca53f28c", + "createdTime": "2020-10-21T20:53:05.91Z", + "userPrincipal": "foo@contoso.com", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimensionFilter": { + "dimension": { + "city": "Mumbai", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + "feedbackType": "Anomaly", + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-01T00:00:00Z", + "value": { + "anomalyValue": "NotAnomaly" + }, + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "anomalyDetectionConfigurationSnapshot": { + "anomalyDetectionConfigurationId": "e17f32d4-3ddf-4dc7-84ee-b4130c7e1777", + "name": "detection-config", + "description": "", + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "wholeMetricConfiguration": { + "smartDetectionCondition": { + "sensitivity": 100.0, + "anomalyDetectorDirection": "Both", + "suppressCondition": { + "minNumber": 1, + "minRatio": 100.0 + } + } + }, + "dimensionGroupOverrideConfigurations": [], + "seriesOverrideConfigurations": [] + } + } + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/feedback/metric/query?$top=20\u0026$skip=20" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "46944254" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(False).json similarity index 63% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(False).json index 20ceb6af1138..b2de6362b7e9 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(False).json @@ -8,10 +8,10 @@ "Content-Length": "111", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-28f6d628bc54724e8b491e762d99a0c5-63c93ab1f8137d44-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9ecb83b560c0e74dba92013a2da54cde-c315018bd34d4944-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "5ee3dfc7bd3c6d0b476b1d8607683138", + "x-ms-client-request-id": "6ee714c28e157e946a8f0d2ece061343", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,48 +22,48 @@ ] }, "hookType": "Email", - "hookName": "hookJcAXxqFf" + "hookName": "hooki7HPq1VT" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "3574656e-a1c6-48f9-ad4f-2f6e8b0710d6", + "apim-request-id": "a7ab43b1-0ea5-4af9-b261-251af45eb9fd", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:51 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/c44e5e1b-01e6-4262-ae9b-410e1e7e1b5a", + "Date": "Tue, 19 Jan 2021 17:58:52 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/55b43741-6fbe-466d-8bbc-367dbed8e877", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "692", - "x-request-id": "3574656e-a1c6-48f9-ad4f-2f6e8b0710d6" + "x-envoy-upstream-service-time": "451", + "x-request-id": "a7ab43b1-0ea5-4af9-b261-251af45eb9fd" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/c44e5e1b-01e6-4262-ae9b-410e1e7e1b5a", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/55b43741-6fbe-466d-8bbc-367dbed8e877", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4832f1f9583b4a4c969b315c6b0ff83d-0b7fa610845ddd4b-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-de7dff4c5380f443aa5c166da137b875-44914f1c25b32147-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "12f1927531e4a4e86683750a8e5feb6e", + "x-ms-client-request-id": "c58fd6cdf9579d1583dff47563ea6443", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df6fec99-93a5-4868-9fad-bb4928ad8a0c", + "apim-request-id": "6d2c5f6a-aaf1-4c3b-8d53-b911cac1f60e", "Content-Length": "223", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:52 GMT", + "Date": "Tue, 19 Jan 2021 17:58:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161", - "x-request-id": "df6fec99-93a5-4868-9fad-bb4928ad8a0c" + "x-envoy-upstream-service-time": "155", + "x-request-id": "6d2c5f6a-aaf1-4c3b-8d53-b911cac1f60e" }, "ResponseBody": { - "hookId": "c44e5e1b-01e6-4262-ae9b-410e1e7e1b5a", - "hookName": "hookJcAXxqFf", + "hookId": "55b43741-6fbe-466d-8bbc-367dbed8e877", + "hookName": "hooki7HPq1VT", "hookType": "Email", "externalLink": "", "description": "", @@ -79,27 +79,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/c44e5e1b-01e6-4262-ae9b-410e1e7e1b5a", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/55b43741-6fbe-466d-8bbc-367dbed8e877", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c79667895f87a4f94a81cd0c36fb7e8-da86937e7101964f-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2b909d072f325f4c8cdc01b396b96831-249ebbd40b925540-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c7d6a90f712f3c74215d68fd5480cebd", + "x-ms-client-request-id": "1bb5b6865317ec5648ba41e62d081537", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "8c247a2c-d154-4ef6-a106-db37f1228f5d", + "apim-request-id": "d32bca23-89e6-4b97-82e3-308c7e8641ca", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:52 GMT", + "Date": "Tue, 19 Jan 2021 17:58:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "180", - "x-request-id": "8c247a2c-d154-4ef6-a106-db37f1228f5d" + "x-envoy-upstream-service-time": "208", + "x-request-id": "d32bca23-89e6-4b97-82e3-308c7e8641ca" }, "ResponseBody": [] } @@ -109,6 +109,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "301880918" + "RandomSeed": "326882837" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(False)Async.json similarity index 63% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(False)Async.json index 5077502761ed..06c967828fc1 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "111", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d9db3476fdec0649b7b5199178f93b70-8819ae8a2813d64c-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b475e2e6df665b4c8460cc5543db3e69-cde91ba7c3459749-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "0f87ff8391974dd277f588f930a57ea3", + "x-ms-client-request-id": "2b092b1ded82cfc72e0e670d8ec91b12", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,48 +22,48 @@ ] }, "hookType": "Email", - "hookName": "hookJtN0xGKz" + "hookName": "hookcY2nIDTu" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "557276f7-384e-4606-9b60-fd0a81447851", + "apim-request-id": "432003c1-4932-4af8-b9b7-97acf2993920", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:21 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/bc172450-8bf6-464f-b9a4-eb86f1e10e7f", + "Date": "Tue, 19 Jan 2021 17:59:01 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/74322285-6c09-4188-aae0-131b92680bbd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "437", - "x-request-id": "557276f7-384e-4606-9b60-fd0a81447851" + "x-envoy-upstream-service-time": "458", + "x-request-id": "432003c1-4932-4af8-b9b7-97acf2993920" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/bc172450-8bf6-464f-b9a4-eb86f1e10e7f", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/74322285-6c09-4188-aae0-131b92680bbd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d73d7deb562c9349b4c9446567f7b264-8a46b71a7fe63a48-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-be9be24b88abbf448fb87b1a78a727ef-25204f12b3daf849-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "8424839f428b0d3e87df2384e41a05d5", + "x-ms-client-request-id": "22d72000d618d73e588b0fa661eb07b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "41e45204-2f9c-4526-9b47-334bd7df46ec", + "apim-request-id": "15c1c147-9b14-4958-af8e-4c265ed3eb29", "Content-Length": "223", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:21 GMT", + "Date": "Tue, 19 Jan 2021 17:59:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "145", - "x-request-id": "41e45204-2f9c-4526-9b47-334bd7df46ec" + "x-envoy-upstream-service-time": "173", + "x-request-id": "15c1c147-9b14-4958-af8e-4c265ed3eb29" }, "ResponseBody": { - "hookId": "bc172450-8bf6-464f-b9a4-eb86f1e10e7f", - "hookName": "hookJtN0xGKz", + "hookId": "74322285-6c09-4188-aae0-131b92680bbd", + "hookName": "hookcY2nIDTu", "hookType": "Email", "externalLink": "", "description": "", @@ -79,27 +79,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/bc172450-8bf6-464f-b9a4-eb86f1e10e7f", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/74322285-6c09-4188-aae0-131b92680bbd", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dcc2a479f025344ba26c182ed04021a3-03070c63258d554e-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ef1f47b4a2fe14499a2831c64990b753-c7446e11aae9844c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "109676bc437e3db9090a1637aa371ee1", + "x-ms-client-request-id": "9843a98a1953b165e25fe021deda1d2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "faa5be4d-d48f-4727-88e4-1b9d473722b2", + "apim-request-id": "09f4c773-7114-406a-83f2-e90f838b778b", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:21 GMT", + "Date": "Tue, 19 Jan 2021 17:59:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "234", - "x-request-id": "faa5be4d-d48f-4727-88e4-1b9d473722b2" + "x-envoy-upstream-service-time": "191", + "x-request-id": "09f4c773-7114-406a-83f2-e90f838b778b" }, "ResponseBody": [] } @@ -109,6 +109,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1237082285" + "RandomSeed": "301426601" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(True).json new file mode 100644 index 000000000000..6d16ae6ebc8d --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(True).json @@ -0,0 +1,109 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "111", + "Content-Type": "application/json", + "traceparent": "00-f4d35256b20bd643b37826710c0bc39c-df435bf705482141-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "407627c58510cb5c5251e527b74ea891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + }, + "hookType": "Email", + "hookName": "hookcOKzRhKj" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "fee12905-e9c3-4ec4-984e-c962013cfbf8", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:51 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/2f5ee5ac-f511-4d97-8ce1-19ebeef6461c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "463", + "x-request-id": "fee12905-e9c3-4ec4-984e-c962013cfbf8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/2f5ee5ac-f511-4d97-8ce1-19ebeef6461c", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-49cdce1a12f4e640b4c455158fca1aea-3bbf8036b295cc4f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e8478d1a334f0fe90d95f094229f8839", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "43219df2-77c5-4ca8-ad1f-01dbc2c666d5", + "Content-Length": "244", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "76", + "x-request-id": "43219df2-77c5-4ca8-ad1f-01dbc2c666d5" + }, + "ResponseBody": { + "hookId": "2f5ee5ac-f511-4d97-8ce1-19ebeef6461c", + "hookName": "hookcOKzRhKj", + "hookType": "Email", + "externalLink": "", + "description": "", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/2f5ee5ac-f511-4d97-8ce1-19ebeef6461c", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e9b4e3de707b8b439579223c10c5f357-2e669e5281784b4a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7d665441d57981dbaec1311d3d76b8c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "4124b4fb-84f6-437d-9e1d-b37fe7df0192", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108", + "x-request-id": "4124b4fb-84f6-437d-9e1d-b37fe7df0192" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "109012307" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..3899410bdc49 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/CreateAndGetEmailNotificationHookWithMinimumSetup(True)Async.json @@ -0,0 +1,109 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "111", + "Content-Type": "application/json", + "traceparent": "00-3e926a1e3ce1754eb64f698ccd0c6e50-25363e8c96ff6344-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "650ea4f7ea8fa04a4748e3dce690c1c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + }, + "hookType": "Email", + "hookName": "hookEC4kq5sF" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "623d0af6-762f-492e-b8dd-2795d7e29f25", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:00 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/253b3d1e-edb5-449e-9487-7ae5da17f856", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "442", + "x-request-id": "623d0af6-762f-492e-b8dd-2795d7e29f25" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/253b3d1e-edb5-449e-9487-7ae5da17f856", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9890bea8f3e11a438dda732e68bcdc22-ab451a3bdb17144b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3c64a701bbed41a735ec2d4d0eb81584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "162c36f7-cda6-4603-ac8a-87a368028424", + "Content-Length": "244", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:59:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "91", + "x-request-id": "162c36f7-cda6-4603-ac8a-87a368028424" + }, + "ResponseBody": { + "hookId": "253b3d1e-edb5-449e-9487-7ae5da17f856", + "hookName": "hookEC4kq5sF", + "hookType": "Email", + "externalLink": "", + "description": "", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/253b3d1e-edb5-449e-9487-7ae5da17f856", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-bfdc9a6444192b46868fcaa6b399f25b-010652aee1f0e84c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9460ae45da873ac2393864c6cf9b925a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "6a9e925e-6821-4b70-8498-5eb0555daefe", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108", + "x-request-id": "6a9e925e-6821-4b70-8498-5eb0555daefe" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1498033386" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(False).json similarity index 62% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(False).json index c94416a721bc..eb15a226dc42 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(False).json @@ -8,10 +8,10 @@ "Content-Length": "98", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0449d7a86fb39f42b14c7a9925138cf0-89b396b0a1d0a742-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5fa6b604aef7b84488e0991a87f7454c-1250efc9c65cdd43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c89e8cc8a0492ba091afb118eeb32f2f", + "x-ms-client-request-id": "64d04e1b2390fa8ee7aae637a94a7110", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,69 +19,69 @@ "endpoint": "http://contoso.com" }, "hookType": "Webhook", - "hookName": "hook6J2FYBcC" + "hookName": "hookWRCFiNC3" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b6d34325-aa29-4583-b3ed-3d14c577fd45", + "apim-request-id": "f7089c59-d069-4fe9-9f86-ebfe7adda680", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:56 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/b8cd773f-2a16-4573-bde1-f50c8de62130", + "Date": "Tue, 19 Jan 2021 17:58:55 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/2466fbd7-b3fb-4064-be16-75db83a44633", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "785", - "x-request-id": "b6d34325-aa29-4583-b3ed-3d14c577fd45" + "x-envoy-upstream-service-time": "909", + "x-request-id": "f7089c59-d069-4fe9-9f86-ebfe7adda680" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/b8cd773f-2a16-4573-bde1-f50c8de62130", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/2466fbd7-b3fb-4064-be16-75db83a44633", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c019ebc3837731409c9558aee2b99114-711c3ca03f27e84d-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d6e415d28f18044b8acf0cee47c1b744-e38c5dea32b2b542-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "4aea799ef1ccb11203f51a34c9f788dc", + "x-ms-client-request-id": "64f753485747674b57ef0bed2dccc2dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "dbe3ee2a-5fab-487e-9339-a874e0361fcb", + "apim-request-id": "fb2259aa-9ff7-418f-bb9a-29c391074487", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:56 GMT", + "Date": "Tue, 19 Jan 2021 17:58:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156", - "x-request-id": "dbe3ee2a-5fab-487e-9339-a874e0361fcb" + "x-envoy-upstream-service-time": "188", + "x-request-id": "fb2259aa-9ff7-418f-bb9a-29c391074487" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/b8cd773f-2a16-4573-bde1-f50c8de62130", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/2466fbd7-b3fb-4064-be16-75db83a44633", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86e69756ae08b14fbd309660df163f15-2497be2ccaf1d049-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-db913993fbc25f4c8bc44a212b43f9fd-cecf215dde45374f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "3c595c4445de3d9bfde14da01e8e702f", + "x-ms-client-request-id": "da17eb6813653f825fcaab0929bf71a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "fb87b06c-35d4-416b-bd58-e324bc0fd53a", + "apim-request-id": "6c363125-2e1c-43a5-a63a-1c7fba071de0", "Content-Length": "65", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:56 GMT", + "Date": "Tue, 19 Jan 2021 17:58:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66", - "x-request-id": "fb87b06c-35d4-416b-bd58-e324bc0fd53a" + "x-envoy-upstream-service-time": "67", + "x-request-id": "6c363125-2e1c-43a5-a63a-1c7fba071de0" }, "ResponseBody": { "code": "ERROR_INVALID_PARAMETER", @@ -94,6 +94,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "955324395" + "RandomSeed": "1151349271" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHookAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(False)Async.json similarity index 62% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHookAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(False)Async.json index b26197c3c975..7d50355d39f1 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHookAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "98", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b15da3b1d62b649bdb64af569789692-42e6f38a8235e042-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5bc5e33d7241e344af3eadeb5b3c0591-d5f4b1f3e6cac84c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "9ed576e6bcd29c03efda59feac73f26b", + "x-ms-client-request-id": "bbf3db86ed78cf2d5898d717db5b6680", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,69 +19,69 @@ "endpoint": "http://contoso.com" }, "hookType": "Webhook", - "hookName": "hookGYEzA2gY" + "hookName": "hookiAxngrOL" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2ad9504d-558e-4f58-b0d2-5db0efdd8fec", + "apim-request-id": "b0b776bc-6d8a-450f-a947-686c158f5cb7", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:26 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ecd3d475-9105-4f36-a59e-52869dc41678", + "Date": "Tue, 19 Jan 2021 17:59:04 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/23b35bb3-79fb-442f-882f-2bf933e96cd7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1031", - "x-request-id": "2ad9504d-558e-4f58-b0d2-5db0efdd8fec" + "x-envoy-upstream-service-time": "1109", + "x-request-id": "b0b776bc-6d8a-450f-a947-686c158f5cb7" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ecd3d475-9105-4f36-a59e-52869dc41678", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/23b35bb3-79fb-442f-882f-2bf933e96cd7", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4352309da29632429afd4f70459475b4-66f8cfdbad81f64b-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-76f5c5c46e49c249b5cead64f3163a98-ee0da63f4e850c43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "d281d54a8a1d01a95fe490a220c2bba1", + "x-ms-client-request-id": "3d84c4d454821319a94cd3921b85ace7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "a4f7b57e-c6eb-41fb-81fe-bcc298ed049b", + "apim-request-id": "c94d0fe1-892d-4824-acc9-3138f259d886", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:26 GMT", + "Date": "Tue, 19 Jan 2021 17:59:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155", - "x-request-id": "a4f7b57e-c6eb-41fb-81fe-bcc298ed049b" + "x-envoy-upstream-service-time": "202", + "x-request-id": "c94d0fe1-892d-4824-acc9-3138f259d886" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ecd3d475-9105-4f36-a59e-52869dc41678", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/23b35bb3-79fb-442f-882f-2bf933e96cd7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f08059c7120c6d4fb78c237ec87fb64e-2ab03cfc6197d340-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1947e388251b5642b8c834615dce7265-52da790ad5ea4f4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "02e24ceac2212f1e7cd6d68d7669188a", + "x-ms-client-request-id": "b19cc64fcffa4bb3c949e45cb42666fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "fd16eb55-b8e2-4b7f-b886-7a368ee2eb85", + "apim-request-id": "d588436e-a85f-4d3d-8617-c8d0f33d706c", "Content-Length": "65", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:26 GMT", + "Date": "Tue, 19 Jan 2021 17:59:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60", - "x-request-id": "fd16eb55-b8e2-4b7f-b886-7a368ee2eb85" + "x-envoy-upstream-service-time": "82", + "x-request-id": "d588436e-a85f-4d3d-8617-c8d0f33d706c" }, "ResponseBody": { "code": "ERROR_INVALID_PARAMETER", @@ -94,6 +94,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1202131959" + "RandomSeed": "474852715" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(True).json new file mode 100644 index 000000000000..c0cc82f7faae --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(True).json @@ -0,0 +1,94 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "98", + "Content-Type": "application/json", + "traceparent": "00-074e64461da5d942af6f1e2ee10caab1-bc53d2eaf6cd9249-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6a62303ef0604f30f14bece3772ede84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "endpoint": "http://contoso.com" + }, + "hookType": "Webhook", + "hookName": "hookzKGBJdT1" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "0b4a85de-1707-42da-9c59-99fd2f98b2c0", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:54 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ad81480b-d124-4fe6-b784-2dda8aed45b2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1351", + "x-request-id": "0b4a85de-1707-42da-9c59-99fd2f98b2c0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ad81480b-d124-4fe6-b784-2dda8aed45b2", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a584b07430b24148ae2920d39bd42500-fbd245f17fb5b548-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7ffc5847d534bd69da1f61f4b2f073fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "354d4938-6381-4456-a5e7-83cfbaaf0de2", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "137", + "x-request-id": "354d4938-6381-4456-a5e7-83cfbaaf0de2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/ad81480b-d124-4fe6-b784-2dda8aed45b2", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c729dd95c3767b4ba65d2cddcef5878c-b28f508e64b39341-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0cb558388178a16b65860370eda8f500", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "ea74f487-a676-419b-b5c4-25410d68c2c2", + "Content-Length": "65", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "14", + "x-request-id": "ea74f487-a676-419b-b5c4-25410d68c2c2" + }, + "ResponseBody": { + "code": "ERROR_INVALID_PARAMETER", + "message": "hookId is invalid." + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1778881748" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(True)Async.json new file mode 100644 index 000000000000..5f417e63d197 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/DeleteNotificationHook(True)Async.json @@ -0,0 +1,94 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "98", + "Content-Type": "application/json", + "traceparent": "00-39a13e9c998aba4ab7c3450ec69537e2-dbc1986739ceac43-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "35642def37f78ca7bec17ead2c50a9d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "endpoint": "http://contoso.com" + }, + "hookType": "Webhook", + "hookName": "hooksY0I60Zn" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "d2248f93-00cb-494e-ba76-f64f412ea1fd", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:03 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/dffb2c83-24ea-4311-8d6a-59f3ba9bb470", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1039", + "x-request-id": "d2248f93-00cb-494e-ba76-f64f412ea1fd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/dffb2c83-24ea-4311-8d6a-59f3ba9bb470", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c60f9bc99a07284a82136d0287c3bd09-2a9a1c63090aa445-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c68dbafb8d33239cce4f7cd1e58a5abc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "b8992cd0-06b8-4116-a478-86495f9b7c55", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119", + "x-request-id": "b8992cd0-06b8-4116-a478-86495f9b7c55" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/dffb2c83-24ea-4311-8d6a-59f3ba9bb470", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-51119c6c1982364b81ee27b067c28f55-ab4fb515178d1447-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bef9bff2efe17595b801d035caf1928d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "apim-request-id": "48488ad7-a213-44d4-a0db-fe7bd3d46ce3", + "Content-Length": "65", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:59:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18", + "x-request-id": "48488ad7-a213-44d4-a0db-fe7bd3d46ce3" + }, + "ResponseBody": { + "code": "ERROR_INVALID_PARAMETER", + "message": "hookId is invalid." + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "863409976" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/GetHooksWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/GetHooksWithMinimumSetup.json deleted file mode 100644 index b76c4a2cc1dd..000000000000 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/GetHooksWithMinimumSetup.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "98", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8d2d8a79d47fef4d9884ac2f9815818a-8ed1212ed32d3f4d-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "9116e5242ccef5620b8b6238b23e2253", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "hookParameter": { - "endpoint": "http://contoso.com" - }, - "hookType": "Webhook", - "hookName": "hookpt0g0E83" - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "ddc883c6-7455-4de8-9925-127c0b913e5c", - "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:57 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/4f21257d-0f26-4d8c-b1a2-d9c538601c23", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "615", - "x-request-id": "ddc883c6-7455-4de8-9925-127c0b913e5c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "0d1cad6686b4ec1c62ae2dcb598e0b6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ffc2ffda-873d-48ea-898f-591e250528a7", - "Content-Length": "325", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:34:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92", - "x-request-id": "ffc2ffda-873d-48ea-898f-591e250528a7" - }, - "ResponseBody": { - "value": [ - { - "hookId": "4f21257d-0f26-4d8c-b1a2-d9c538601c23", - "hookName": "hookpt0g0E83", - "hookType": "Webhook", - "externalLink": "", - "description": "", - "admins": [ - "foo@contoso.com" - ], - "hookParameter": { - "endpoint": "http://contoso.com", - "username": "", - "password": "", - "headers": {}, - "certificateKey": "", - "certificatePassword": "" - } - } - ], - "@nextLink": null - } - }, - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/4f21257d-0f26-4d8c-b1a2-d9c538601c23", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fee69cb06d2b1e48a80faf3b667bd073-a4bcbfeabf02f242-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "506d2ec4878e113f79f895f92a946e23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "481be53b-50e9-4874-a1b4-9d9a5d51b468", - "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:34:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "166", - "x-request-id": "481be53b-50e9-4874-a1b4-9d9a5d51b468" - }, - "ResponseBody": [] - } - ], - "Variables": { - "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", - "METRICSADVISOR_ENDPOINT_SUFFIX": null, - "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", - "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1561920299" - } -} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/GetHooksWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/GetHooksWithMinimumSetupAsync.json deleted file mode 100644 index 8d5020e3442f..000000000000 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/GetHooksWithMinimumSetupAsync.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Content-Length": "98", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fcdd8f21b68ab843b68480cf62121364-a7157e4ef0439c46-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "5ae4bbd2d0ad82a730a70df55c6d1f14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "hookParameter": { - "endpoint": "http://contoso.com" - }, - "hookType": "Webhook", - "hookName": "hook02CEkNr0" - }, - "StatusCode": 201, - "ResponseHeaders": { - "apim-request-id": "7ced5e28-6645-4e57-bd72-1094804f8ac4", - "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:28 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/73827abd-df06-4bf1-8500-c6f22fcd8a87", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1090", - "x-request-id": "7ced5e28-6645-4e57-bd72-1094804f8ac4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "1c7ee99e121e7ae46e82728958902952", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f05d4e11-93fe-4e5d-b55d-599c05a8b8e2", - "Content-Length": "325", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101", - "x-request-id": "f05d4e11-93fe-4e5d-b55d-599c05a8b8e2" - }, - "ResponseBody": { - "value": [ - { - "hookId": "73827abd-df06-4bf1-8500-c6f22fcd8a87", - "hookName": "hook02CEkNr0", - "hookType": "Webhook", - "externalLink": "", - "description": "", - "admins": [ - "foo@contoso.com" - ], - "hookParameter": { - "endpoint": "http://contoso.com", - "username": "", - "password": "", - "headers": {}, - "certificateKey": "", - "certificatePassword": "" - } - } - ], - "@nextLink": null - } - }, - { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/73827abd-df06-4bf1-8500-c6f22fcd8a87", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-34620000630b58458bab79e9e88534a2-eb7dca287acb7c40-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-api-key": "Sanitized", - "x-ms-client-request-id": "dfa2faa992cf37acffc327e211f53df3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "83bb0183-81bc-4941-a64b-53f0548c1c21", - "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "190", - "x-request-id": "83bb0183-81bc-4941-a64b-53f0548c1c21" - }, - "ResponseBody": [] - } - ], - "Variables": { - "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", - "METRICSADVISOR_ENDPOINT_SUFFIX": null, - "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", - "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1314696747" - } -} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(False).json similarity index 63% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(False).json index 2113cfb42a9c..13797b1b4e98 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(False).json @@ -8,10 +8,10 @@ "Content-Length": "111", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2abd75efc8ea2045b6c8396b7d3d5e5d-208a7f436d421749-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-841b5adebd578e4d9e505a250a0d46cc-37de2244ebf8904c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "7f2dcd0033f42731608c0469e092cb92", + "x-ms-client-request-id": "a292f2076d2e0e12fa978ca259aa0159", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,48 +22,48 @@ ] }, "hookType": "Email", - "hookName": "hookXqjhP6Jf" + "hookName": "hookC674MsBm" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "8f7609c7-d97d-4cd5-bc44-a54778ff02f3", + "apim-request-id": "6256ed07-2b0b-4aa9-8850-91694a2af411", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:07 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0675537f-b619-4c1a-8971-b075d8e46dab", + "Date": "Tue, 19 Jan 2021 17:58:58 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/d1069da5-4df9-47b7-ba4c-b033c1b61ab2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "490", - "x-request-id": "8f7609c7-d97d-4cd5-bc44-a54778ff02f3" + "x-envoy-upstream-service-time": "420", + "x-request-id": "6256ed07-2b0b-4aa9-8850-91694a2af411" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0675537f-b619-4c1a-8971-b075d8e46dab", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/d1069da5-4df9-47b7-ba4c-b033c1b61ab2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7850d97eb05ccc4b87b9fcb485637e63-0c8136eb4385cd47-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a0a7c640f8ab0847a365f7ae0cf01766-2fff3414f962994b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "8d3fbed24ea0941d5565de5e49d47b2e", + "x-ms-client-request-id": "32bce9cb1b7f4f844d657c32ffe8b4a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4f73f75-e781-4c1e-963e-f95e13870581", + "apim-request-id": "479ee495-77b6-453f-bedf-0738b7fc5f9d", "Content-Length": "223", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:07 GMT", + "Date": "Tue, 19 Jan 2021 17:58:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143", - "x-request-id": "c4f73f75-e781-4c1e-963e-f95e13870581" + "x-envoy-upstream-service-time": "153", + "x-request-id": "479ee495-77b6-453f-bedf-0738b7fc5f9d" }, "ResponseBody": { - "hookId": "0675537f-b619-4c1a-8971-b075d8e46dab", - "hookName": "hookXqjhP6Jf", + "hookId": "d1069da5-4df9-47b7-ba4c-b033c1b61ab2", + "hookName": "hookC674MsBm", "hookType": "Email", "externalLink": "", "description": "", @@ -79,17 +79,17 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0675537f-b619-4c1a-8971-b075d8e46dab", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/d1069da5-4df9-47b7-ba4c-b033c1b61ab2", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "164", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-21f7f7f29aa7474d9008aae763d0488c-323df186de25f048-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c416ed305505e649a4c14f930a2ffdad-a717ba61585bf04f-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "7a4ae25b9c078cb491cb82730b58f3c3", + "x-ms-client-request-id": "9dad8b2f9ea0141f6102ad68bf1a76ad", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -101,49 +101,49 @@ ] }, "hookType": "Email", - "hookName": "hookXqjhP6Jf", + "hookName": "hookC674MsBm", "description": "", "externalLink": "" }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "443a7f8d-484f-42eb-99ec-1899f857ee19", + "apim-request-id": "b907e470-ec0e-4c70-92d3-ba648102013e", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:08 GMT", + "Date": "Tue, 19 Jan 2021 17:58:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "436", - "x-request-id": "443a7f8d-484f-42eb-99ec-1899f857ee19" + "x-envoy-upstream-service-time": "475", + "x-request-id": "b907e470-ec0e-4c70-92d3-ba648102013e" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0675537f-b619-4c1a-8971-b075d8e46dab", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/d1069da5-4df9-47b7-ba4c-b033c1b61ab2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4c98108880c8664ca363f78456a4dbd4-f7070c17e5e8e044-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1c223e9017f48d4c82f90fe508e890fa-f146d0b5547b4c4a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "bdd8640dfc71b2b6b099298f54d2dd8b", + "x-ms-client-request-id": "5e619fc13007eb866e4254c8f1e00e11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "936dedd0-74db-4049-9c5a-04a20b365927", + "apim-request-id": "1828672e-faa3-45c7-b074-1671489cfe75", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:08 GMT", + "Date": "Tue, 19 Jan 2021 17:58:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155", - "x-request-id": "936dedd0-74db-4049-9c5a-04a20b365927" + "x-envoy-upstream-service-time": "153", + "x-request-id": "1828672e-faa3-45c7-b074-1671489cfe75" }, "ResponseBody": { - "hookId": "0675537f-b619-4c1a-8971-b075d8e46dab", - "hookName": "hookXqjhP6Jf", + "hookId": "d1069da5-4df9-47b7-ba4c-b033c1b61ab2", + "hookName": "hookC674MsBm", "hookType": "Email", "externalLink": "", "description": "", @@ -160,27 +160,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/0675537f-b619-4c1a-8971-b075d8e46dab", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/d1069da5-4df9-47b7-ba4c-b033c1b61ab2", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e135ce8dd753194696b5c15a7805d62b-634ed07794b8e24a-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2fbab1794984d2448cde305ac0fdc59b-9e66dc0bb316d84b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "fe0dd5115048368a0ab3fcd4cba988fd", + "x-ms-client-request-id": "ce73e5e363fc2cb8caa7d07d6e1c8f33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "c91e4600-ed52-489b-8373-3844e9e9fdaf", + "apim-request-id": "c18e66b5-9695-4a4f-b27d-3f6a68977aea", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:08 GMT", + "Date": "Tue, 19 Jan 2021 17:58:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "188", - "x-request-id": "c91e4600-ed52-489b-8373-3844e9e9fdaf" + "x-envoy-upstream-service-time": "178", + "x-request-id": "c18e66b5-9695-4a4f-b27d-3f6a68977aea" }, "ResponseBody": [] } @@ -190,6 +190,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "302335682" + "RandomSeed": "202875566" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstanceAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(False)Async.json similarity index 63% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstanceAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(False)Async.json index a668a89f7051..b4e24c719402 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstanceAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(False)Async.json @@ -8,10 +8,10 @@ "Content-Length": "111", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-717e9ea435e0624d904558f7d490c433-865cec3aaa78d64f-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-17aa1811054a724e922c26f76e2662fd-eea13f43cec0124a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "f09890ea4c4deb4dd5428de978a28abf", + "x-ms-client-request-id": "c0bd03356926376ce3a9e715abff87c9", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -22,48 +22,48 @@ ] }, "hookType": "Email", - "hookName": "hooktl2oJYbL" + "hookName": "hookVHsNsODG" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "f1543b6a-867f-4b89-9f5e-069ef3940be6", + "apim-request-id": "30cd3d97-fa3c-4f8a-bf93-68e85b033c58", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:34 GMT", - "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/f1663c11-84e0-45c5-b84e-2e610215dc1c", + "Date": "Tue, 19 Jan 2021 17:59:08 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/02f55334-6fff-403b-bff2-e5018d5aff4a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "469", - "x-request-id": "f1543b6a-867f-4b89-9f5e-069ef3940be6" + "x-envoy-upstream-service-time": "483", + "x-request-id": "30cd3d97-fa3c-4f8a-bf93-68e85b033c58" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/f1663c11-84e0-45c5-b84e-2e610215dc1c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/02f55334-6fff-403b-bff2-e5018d5aff4a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec78425bbf9e914781b843e5a6047fac-f914ac4c73507049-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1eb0388008540447acad0647b922fc75-25c053039ed6014c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "c0bd226dc8b7abffb2ca4c98fea4725d", + "x-ms-client-request-id": "c62e59d08cb008599cd3e9b613ff4fc5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9132b863-1a79-448c-ad13-4d258c235fb4", + "apim-request-id": "9e06d55b-efdd-4504-b452-b8fbf39d651f", "Content-Length": "223", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:34 GMT", + "Date": "Tue, 19 Jan 2021 17:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "149", - "x-request-id": "9132b863-1a79-448c-ad13-4d258c235fb4" + "x-envoy-upstream-service-time": "150", + "x-request-id": "9e06d55b-efdd-4504-b452-b8fbf39d651f" }, "ResponseBody": { - "hookId": "f1663c11-84e0-45c5-b84e-2e610215dc1c", - "hookName": "hooktl2oJYbL", + "hookId": "02f55334-6fff-403b-bff2-e5018d5aff4a", + "hookName": "hookVHsNsODG", "hookType": "Email", "externalLink": "", "description": "", @@ -79,17 +79,17 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/f1663c11-84e0-45c5-b84e-2e610215dc1c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/02f55334-6fff-403b-bff2-e5018d5aff4a", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Content-Length": "164", "Content-Type": "application/merge-patch\u002Bjson", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e74a8798bd18fe4c99df1b48a0bdbb8e-1542466784250f41-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1c71425f13e7c34d8fb5bddaddd04531-4ef79ae651d73743-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "e812bf10aff14d3bb594d2c80f7a7dcb", + "x-ms-client-request-id": "9cb46fdd3675aff098307a07dc4a5902", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -101,49 +101,49 @@ ] }, "hookType": "Email", - "hookName": "hooktl2oJYbL", + "hookName": "hookVHsNsODG", "description": "", "externalLink": "" }, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "95469b6d-f63f-48d2-ac70-6bfec10edb65", + "apim-request-id": "dc32b85e-1736-4b12-aeeb-3b088073d3d1", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:34 GMT", + "Date": "Tue, 19 Jan 2021 17:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "434", - "x-request-id": "95469b6d-f63f-48d2-ac70-6bfec10edb65" + "x-envoy-upstream-service-time": "403", + "x-request-id": "dc32b85e-1736-4b12-aeeb-3b088073d3d1" }, "ResponseBody": [] }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/f1663c11-84e0-45c5-b84e-2e610215dc1c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/02f55334-6fff-403b-bff2-e5018d5aff4a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fa54f2db6e2ea447826d8cbcb6d07dc9-c0e1a0ea9cb0284f-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3259457b79a38a44b77a1c76b8937d53-139a8baff2375548-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "ad5603588a2f221090ed3d83ffb4ec30", + "x-ms-client-request-id": "93b80610dadda9bdaab4235380b623e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7d8ecaf-eb85-4dca-a0f0-62d811865b88", + "apim-request-id": "297c7c66-f8dd-4e77-9a5e-70c4b0b87e55", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:34 GMT", + "Date": "Tue, 19 Jan 2021 17:59:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "144", - "x-request-id": "e7d8ecaf-eb85-4dca-a0f0-62d811865b88" + "x-envoy-upstream-service-time": "175", + "x-request-id": "297c7c66-f8dd-4e77-9a5e-70c4b0b87e55" }, "ResponseBody": { - "hookId": "f1663c11-84e0-45c5-b84e-2e610215dc1c", - "hookName": "hooktl2oJYbL", + "hookId": "02f55334-6fff-403b-bff2-e5018d5aff4a", + "hookName": "hookVHsNsODG", "hookType": "Email", "externalLink": "", "description": "", @@ -160,27 +160,27 @@ } }, { - "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/f1663c11-84e0-45c5-b84e-2e610215dc1c", + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/02f55334-6fff-403b-bff2-e5018d5aff4a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8c6e34550a4530468e75f5fd201f47de-405d21a450d8c041-00", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-add587392ec7b944bc0cd25e2726edd5-c02911d62c156d42-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "b9d830d0a290becee66f0a23f5369b38", + "x-ms-client-request-id": "3b37225aea4b9954687f2d8011512b51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "562f18be-0134-41a8-904b-2803f112d94f", + "apim-request-id": "8d9b1a1b-c6b5-4479-a227-29a421df665b", "Content-Length": "0", - "Date": "Tue, 15 Dec 2020 01:35:35 GMT", + "Date": "Tue, 19 Jan 2021 17:59:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160", - "x-request-id": "562f18be-0134-41a8-904b-2803f112d94f" + "x-envoy-upstream-service-time": "158", + "x-request-id": "8d9b1a1b-c6b5-4479-a227-29a421df665b" }, "ResponseBody": [] } @@ -190,6 +190,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1422573759" + "RandomSeed": "409303613" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(True).json new file mode 100644 index 000000000000..9e78ccaf7155 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(True).json @@ -0,0 +1,188 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "111", + "Content-Type": "application/json", + "traceparent": "00-4a28e62d2889e946970ed18ebdbe678e-f0a4fd8a2d1a9d45-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "62c34e7ef571d4504f4d00cc323f3955", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + }, + "hookType": "Email", + "hookName": "hookmKAYdTxX" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "e16d3d51-b3b0-4af0-98de-cea79460ea98", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:56 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/92624463-715e-4328-9fce-5a8e5e8b7adf", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "404", + "x-request-id": "e16d3d51-b3b0-4af0-98de-cea79460ea98" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/92624463-715e-4328-9fce-5a8e5e8b7adf", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e92a31f784d073408626f6bba9343b2e-892984924d8ee448-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8f78cdcffe7cf0da7d7e476753a102fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4086623c-f2dd-428f-81e0-ea6a42d2d2ec", + "Content-Length": "244", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "92", + "x-request-id": "4086623c-f2dd-428f-81e0-ea6a42d2d2ec" + }, + "ResponseBody": { + "hookId": "92624463-715e-4328-9fce-5a8e5e8b7adf", + "hookName": "hookmKAYdTxX", + "hookType": "Email", + "externalLink": "", + "description": "", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/92624463-715e-4328-9fce-5a8e5e8b7adf", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "164", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-af8709950d9ae349ac9d0571aaff636c-85b2cd92eecf2146-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b879dcf176f133863c429918a53f107a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com", + "fake3@email.com" + ] + }, + "hookType": "Email", + "hookName": "hookmKAYdTxX", + "description": "", + "externalLink": "" + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "0ddb3a63-ef6c-44e6-a42d-8cd818ac3d8a", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "371", + "x-request-id": "0ddb3a63-ef6c-44e6-a42d-8cd818ac3d8a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/92624463-715e-4328-9fce-5a8e5e8b7adf", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-745bb564e2efff4a840fb589ec6caaef-bf3a9b0855aa004a-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "03aa63aa73bb7f6a74d2e5f2ade980ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a9f1cf6-df2e-4777-9471-edcaae5ba979", + "Content-Length": "262", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:58:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "84", + "x-request-id": "4a9f1cf6-df2e-4777-9471-edcaae5ba979" + }, + "ResponseBody": { + "hookId": "92624463-715e-4328-9fce-5a8e5e8b7adf", + "hookName": "hookmKAYdTxX", + "hookType": "Email", + "externalLink": "", + "description": "", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com", + "fake3@email.com" + ] + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/92624463-715e-4328-9fce-5a8e5e8b7adf", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1a54c10340bc414daa8b5115753dbbc4-ed97f10a89c6344b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "55db014a81c658644645533964c24b3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "902ec39d-a6e8-4214-98a6-5cb89a3180a7", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:58:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96", + "x-request-id": "902ec39d-a6e8-4214-98a6-5cb89a3180a7" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1219301530" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(True)Async.json new file mode 100644 index 000000000000..7e58deeb8d3a --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/NotificationHookLiveTests/UpdateEmailNotificationHookWithMinimumSetupAndGetInstance(True)Async.json @@ -0,0 +1,188 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "111", + "Content-Type": "application/json", + "traceparent": "00-64cc109196ccc648a39d154a01ff1a1b-6461b11bbf8c0141-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5f4947188a4c7c5caa8c925bb0ab44f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + }, + "hookType": "Email", + "hookName": "hooksvvcRVbp" + }, + "StatusCode": 201, + "ResponseHeaders": { + "apim-request-id": "f773df11-9ab7-4148-aee5-42aa84176cda", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:05 GMT", + "Location": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/1f395ec9-0758-4293-8cda-fc49a0347efe", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "245", + "x-request-id": "f773df11-9ab7-4148-aee5-42aa84176cda" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/1f395ec9-0758-4293-8cda-fc49a0347efe", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4cae71fb607d8241bd86851a3e49547e-0d77a32833859344-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f298c26b80b396e32e0f8bee0e46e68f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "513c31b7-afbf-4556-bb8f-b6de2ed6f7fb", + "Content-Length": "244", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:59:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "91", + "x-request-id": "513c31b7-afbf-4556-bb8f-b6de2ed6f7fb" + }, + "ResponseBody": { + "hookId": "1f395ec9-0758-4293-8cda-fc49a0347efe", + "hookName": "hooksvvcRVbp", + "hookType": "Email", + "externalLink": "", + "description": "", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com" + ] + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/1f395ec9-0758-4293-8cda-fc49a0347efe", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "164", + "Content-Type": "application/merge-patch\u002Bjson", + "traceparent": "00-0e3674a1edaf2843b8cb33c1bb94a91e-3fad290267ddc248-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2c793c85cc2677135d82020e383c1cb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com", + "fake3@email.com" + ] + }, + "hookType": "Email", + "hookName": "hooksvvcRVbp", + "description": "", + "externalLink": "" + }, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "bc2921d1-1aa2-43f2-a1ad-087e42e093a4", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "411", + "x-request-id": "bc2921d1-1aa2-43f2-a1ad-087e42e093a4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/1f395ec9-0758-4293-8cda-fc49a0347efe", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ddcd4e2dc5a52f4dbd177f2434a64a63-a997b71c49d37a4c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "20ce9555c236980a64b3303dfe6d6e64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "608d0420-dbfe-4c23-bb61-5a2e7090d9f1", + "Content-Length": "262", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:59:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79", + "x-request-id": "608d0420-dbfe-4c23-bb61-5a2e7090d9f1" + }, + "ResponseBody": { + "hookId": "1f395ec9-0758-4293-8cda-fc49a0347efe", + "hookName": "hooksvvcRVbp", + "hookType": "Email", + "externalLink": "", + "description": "", + "admins": [ + "94dc466b-52e4-4678-892d-70a0c45c5f42" + ], + "hookParameter": { + "toList": [ + "fake1@email.com", + "fake2@email.com", + "fake3@email.com" + ] + } + } + }, + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/hooks/1f395ec9-0758-4293-8cda-fc49a0347efe", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-62bc9006f57cd143abc7b235627bd9c8-fc905e4c4f455b4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "73d602a517329fcbae2194307dd45df2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "2650425f-ff19-4a78-b602-a5ba663db30b", + "Content-Length": "0", + "Date": "Tue, 19 Jan 2021 17:59:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "98", + "x-request-id": "2650425f-ff19-4a78-b602-a5ba663db30b" + }, + "ResponseBody": [] + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1493513723" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(False).json similarity index 79% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(False).json index 06e491855ddb..d3c2ab9413ba 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(False).json @@ -8,9 +8,10 @@ "Content-Length": "24", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-426601d8e2d8784391246bebe645f1e3-86faf2a4d7854f4d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "6e5c6129e79b5d6237f1747d6123a875", + "x-ms-client-request-id": "ca39378b4c1cd740910c07685081278a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -18,14 +19,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22113fb4-2ec4-485f-9cbb-8b039fbe3382", + "apim-request-id": "cdc60907-4241-4109-a50e-35aba0fc7831", "Content-Length": "402", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:47 GMT", + "Date": "Tue, 19 Jan 2021 17:43:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "90", - "x-request-id": "22113fb4-2ec4-485f-9cbb-8b039fbe3382" + "x-envoy-upstream-service-time": "102", + "x-request-id": "cdc60907-4241-4109-a50e-35aba0fc7831" }, "ResponseBody": { "value": [ @@ -59,6 +60,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "554117673" + "RandomSeed": "1023732116" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(False)Async.json similarity index 79% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(False)Async.json index 6c18954788f0..a4ab3122c26d 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "24", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-eb3e52c1eec0ac4da29c4b0f4591805f-4b7d17a404177c4b-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "eff630d3eb364c7080b5de7db2659157", + "x-ms-client-request-id": "17aea1b239f613e99c824936758828bc", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -18,14 +19,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "474cc7a2-fedb-4df4-b4c2-76d85c375980", + "apim-request-id": "52c51be5-c87c-44f9-ad28-69195a67fabb", "Content-Length": "402", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:49 GMT", + "Date": "Tue, 19 Jan 2021 17:43:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "107", - "x-request-id": "474cc7a2-fedb-4df4-b4c2-76d85c375980" + "x-envoy-upstream-service-time": "106", + "x-request-id": "52c51be5-c87c-44f9-ad28-69195a67fabb" }, "ResponseBody": { "value": [ @@ -59,6 +60,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1385506927" + "RandomSeed": "1564778918" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(True).json new file mode 100644 index 000000000000..b19bb729001c --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(True).json @@ -0,0 +1,62 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/dimension/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-dcccb8956b857944b4818caea35ab88d-d2df9e1607f3884d-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2a222a05fa3c20c21fad13d00e44f82d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dimensionName": "city" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d3a645a-b670-42dd-a0a7-00bb969e94cc", + "Content-Length": "402", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72", + "x-request-id": "6d3a645a-b670-42dd-a0a7-00bb969e94cc" + }, + "ResponseBody": { + "value": [ + "Abidjan", + "Ahmadabad", + "Alexandria", + "Ankara", + "Atlanta", + "Baghdad", + "Bangkok", + "Barcelona", + "Beijing", + "Belo Horizonte", + "Bengaluru", + "Bogota", + "Boston", + "Brasilia", + "Buenos Aires", + "Cairo", + "Chengdu", + "Chennai", + "Chicago", + "Chittagong" + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/dimension/query?$top=20\u0026$skip=20" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1606820177" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..357431fc2122 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetDimensionValuesWithMinimumSetup(True)Async.json @@ -0,0 +1,62 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/dimension/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-c37b4b17b2ee9d4c950d87cbd9223e05-73635a96435c8148-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "afa38ee7922351188bdae8c44b9395f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "dimensionName": "city" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "87531bb4-c99c-4cbd-8f81-3f93d5738f84", + "Content-Length": "402", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50", + "x-request-id": "87531bb4-c99c-4cbd-8f81-3f93d5738f84" + }, + "ResponseBody": { + "value": [ + "Abidjan", + "Ahmadabad", + "Alexandria", + "Ankara", + "Atlanta", + "Baghdad", + "Bangkok", + "Barcelona", + "Beijing", + "Belo Horizonte", + "Bengaluru", + "Bogota", + "Boston", + "Brasilia", + "Buenos Aires", + "Cairo", + "Chengdu", + "Chennai", + "Chicago", + "Chittagong" + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/dimension/query?$top=20\u0026$skip=20" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1459473176" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(False).json similarity index 91% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(False).json index ecc68df55f88..30bb693ab0b6 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(False).json @@ -8,9 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-270f5081cc0deb41aba9d2ab3cdaaa44-c7f2b18d10025341-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "1c3315590d7865a0ce7785a606f28aa2", + "x-ms-client-request-id": "f28a55cecdc828ce29d57869b7da2fff", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,14 +20,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebe60740-5338-4dbf-83c9-6e2b78133b41", + "apim-request-id": "50a88937-491e-44a1-b025-98868bed7c3d", "Content-Length": "4828", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:47 GMT", + "Date": "Tue, 19 Jan 2021 17:43:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207", - "x-request-id": "ebe60740-5338-4dbf-83c9-6e2b78133b41" + "x-envoy-upstream-service-time": "221", + "x-request-id": "50a88937-491e-44a1-b025-98868bed7c3d" }, "ResponseBody": { "value": [ @@ -163,12 +164,12 @@ { "timestamp": "2020-10-01T00:00:00Z", "status": "Succeeded", - "message": "{\u0022UpdateTime\u0022:\u00222020-12-14T09:24:24.150Z\u0022,\u0022CreateTime\u0022:\u00222020-12-14T09:24:24.150Z\u0022}" + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022}" }, { "timestamp": "2020-10-02T00:00:00Z", "status": "Succeeded", - "message": "{\u0022UpdateTime\u0022:\u00222020-12-14T09:24:44.151Z\u0022,\u0022CreateTime\u0022:\u00222020-12-14T09:24:44.151Z\u0022}" + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022}" }, { "timestamp": "2020-10-03T00:00:00Z", @@ -190,6 +191,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1668926559" + "RandomSeed": "747403417" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatusesAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(False)Async.json similarity index 91% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatusesAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(False)Async.json index 7e234d4ebfc3..b1baa4fb07b4 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatusesAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "69", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d73cb274bc2c1e4686547d990980bf0b-66dc6941403f2448-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "041e7cfe2e4a351d013973d69e8307f0", + "x-ms-client-request-id": "612ff1b49a008e16eddcdbc22f6558c9", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -19,14 +20,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f34f820-9238-4b21-b7cc-81f16262751f", + "apim-request-id": "6847e336-cf6c-425f-8e59-26f18e48787f", "Content-Length": "4828", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:49 GMT", + "Date": "Tue, 19 Jan 2021 17:43:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "360", - "x-request-id": "7f34f820-9238-4b21-b7cc-81f16262751f" + "x-envoy-upstream-service-time": "193", + "x-request-id": "6847e336-cf6c-425f-8e59-26f18e48787f" }, "ResponseBody": { "value": [ @@ -163,12 +164,12 @@ { "timestamp": "2020-10-01T00:00:00Z", "status": "Succeeded", - "message": "{\u0022UpdateTime\u0022:\u00222020-12-14T09:24:24.150Z\u0022,\u0022CreateTime\u0022:\u00222020-12-14T09:24:24.150Z\u0022}" + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022}" }, { "timestamp": "2020-10-02T00:00:00Z", "status": "Succeeded", - "message": "{\u0022UpdateTime\u0022:\u00222020-12-14T09:24:44.151Z\u0022,\u0022CreateTime\u0022:\u00222020-12-14T09:24:44.151Z\u0022}" + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022}" }, { "timestamp": "2020-10-03T00:00:00Z", @@ -190,6 +191,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1542516131" + "RandomSeed": "1527425435" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(True).json new file mode 100644 index 000000000000..dee703af2619 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(True).json @@ -0,0 +1,193 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/status/enrichment/anomalyDetection/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-85c2d03084d68d43b568fa510783ece3-9e8080978aa80546-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "aa62bcc739891e9e559b0f2f6cb3e1df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df867c84-d9df-40c6-8421-4ffda8c80679", + "Content-Length": "4828", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161", + "x-request-id": "df867c84-d9df-40c6-8421-4ffda8c80679" + }, + "ResponseBody": { + "value": [ + { + "timestamp": "2020-10-23T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:15:42.384Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:15:42.384Z\u0022}" + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-24T00:05:44.059Z\u0022,\u0022CreateTime\u0022:\u00222020-11-24T00:05:44.059Z\u0022}" + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-18T00:16:19.569Z\u0022,\u0022CreateTime\u0022:\u00222020-11-18T00:16:19.569Z\u0022}" + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:10:21.548Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:10:21.548Z\u0022}" + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022}" + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:16:02.385Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:16:02.385Z\u0022}" + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-27T00:05:26.028Z\u0022,\u0022CreateTime\u0022:\u00222020-11-27T00:05:26.028Z\u0022}" + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022}" + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-25T00:05:53.040Z\u0022,\u0022CreateTime\u0022:\u00222020-11-25T00:05:53.040Z\u0022}" + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-09T00:16:43.450Z\u0022,\u0022CreateTime\u0022:\u00222020-11-09T00:16:43.450Z\u0022}" + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-13T00:15:44.366Z\u0022,\u0022CreateTime\u0022:\u00222020-11-13T00:15:44.366Z\u0022}" + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-15T00:05:29.926Z\u0022,\u0022CreateTime\u0022:\u00222020-11-15T00:05:29.926Z\u0022}" + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-14T00:05:37.915Z\u0022,\u0022CreateTime\u0022:\u00222020-11-14T00:05:37.915Z\u0022}" + }, + { + "timestamp": "2020-10-05T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022,\u0022CreateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022}" + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-16T00:06:52.093Z\u0022,\u0022CreateTime\u0022:\u00222020-11-16T00:06:52.093Z\u0022}" + }, + { + "timestamp": "2020-10-09T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-07T00:06:56.474Z\u0022,\u0022CreateTime\u0022:\u00222020-11-07T00:06:56.474Z\u0022}" + }, + { + "timestamp": "2020-10-04T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-10-30T08:07:48.425Z\u0022,\u0022CreateTime\u0022:\u00222020-10-30T08:07:48.425Z\u0022}" + }, + { + "timestamp": "2020-10-06T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-04T00:10:41.636Z\u0022,\u0022CreateTime\u0022:\u00222020-11-04T00:10:41.636Z\u0022}" + }, + { + "timestamp": "2020-10-08T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022,\u0022CreateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022}" + }, + { + "timestamp": "2020-10-10T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-08T00:06:41.982Z\u0022,\u0022CreateTime\u0022:\u00222020-11-08T00:06:41.982Z\u0022}" + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-12T00:16:08.020Z\u0022,\u0022CreateTime\u0022:\u00222020-11-12T00:16:08.020Z\u0022}" + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-14T00:15:34.311Z\u0022,\u0022CreateTime\u0022:\u00222020-11-14T00:15:34.311Z\u0022}" + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022,\u0022CreateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022}" + }, + { + "timestamp": "2020-10-07T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-04T00:10:41.637Z\u0022,\u0022CreateTime\u0022:\u00222020-11-04T00:10:41.637Z\u0022}" + }, + { + "timestamp": "2020-10-11T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-09T00:06:41.596Z\u0022,\u0022CreateTime\u0022:\u00222020-11-09T00:06:41.596Z\u0022}" + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-11T00:05:28.702Z\u0022,\u0022CreateTime\u0022:\u00222020-11-11T00:05:28.701Z\u0022}" + }, + { + "timestamp": "2020-10-01T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022}" + }, + { + "timestamp": "2020-10-02T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022}" + }, + { + "timestamp": "2020-10-03T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-10-31T00:05:18.360Z\u0022,\u0022CreateTime\u0022:\u00222020-10-31T00:05:18.360Z\u0022}" + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022,\u0022CreateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022}" + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1906656719" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(True)Async.json new file mode 100644 index 000000000000..d6b92e486489 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricEnrichmentStatuses(True)Async.json @@ -0,0 +1,193 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/status/enrichment/anomalyDetection/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "69", + "Content-Type": "application/json", + "traceparent": "00-377e4978ba573d4f9c78afcdff2a08fe-cf0ad57693b56643-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "90748ff40a2b7ad87619cccd516c4fa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ca0e8a4-da9d-4b01-9cb9-acf107dfbd7e", + "Content-Length": "4828", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "120", + "x-request-id": "1ca0e8a4-da9d-4b01-9cb9-acf107dfbd7e" + }, + "ResponseBody": { + "value": [ + { + "timestamp": "2020-10-23T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:15:42.384Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:15:42.384Z\u0022}" + }, + { + "timestamp": "2020-10-26T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-24T00:05:44.059Z\u0022,\u0022CreateTime\u0022:\u00222020-11-24T00:05:44.059Z\u0022}" + }, + { + "timestamp": "2020-10-28T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-18T00:16:19.569Z\u0022,\u0022CreateTime\u0022:\u00222020-11-18T00:16:19.569Z\u0022}" + }, + { + "timestamp": "2020-10-22T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:10:21.548Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:10:21.548Z\u0022}" + }, + { + "timestamp": "2020-10-25T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022}" + }, + { + "timestamp": "2020-10-24T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:16:02.385Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:16:02.385Z\u0022}" + }, + { + "timestamp": "2020-10-29T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-27T00:05:26.028Z\u0022,\u0022CreateTime\u0022:\u00222020-11-27T00:05:26.028Z\u0022}" + }, + { + "timestamp": "2020-10-27T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022,\u0022CreateTime\u0022:\u00222020-11-20T00:10:41.549Z\u0022}" + }, + { + "timestamp": "2020-10-30T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-25T00:05:53.040Z\u0022,\u0022CreateTime\u0022:\u00222020-11-25T00:05:53.040Z\u0022}" + }, + { + "timestamp": "2020-10-12T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-09T00:16:43.450Z\u0022,\u0022CreateTime\u0022:\u00222020-11-09T00:16:43.450Z\u0022}" + }, + { + "timestamp": "2020-10-15T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-13T00:15:44.366Z\u0022,\u0022CreateTime\u0022:\u00222020-11-13T00:15:44.366Z\u0022}" + }, + { + "timestamp": "2020-10-17T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-15T00:05:29.926Z\u0022,\u0022CreateTime\u0022:\u00222020-11-15T00:05:29.926Z\u0022}" + }, + { + "timestamp": "2020-10-16T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-14T00:05:37.915Z\u0022,\u0022CreateTime\u0022:\u00222020-11-14T00:05:37.915Z\u0022}" + }, + { + "timestamp": "2020-10-05T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022,\u0022CreateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022}" + }, + { + "timestamp": "2020-10-19T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-16T00:06:52.093Z\u0022,\u0022CreateTime\u0022:\u00222020-11-16T00:06:52.093Z\u0022}" + }, + { + "timestamp": "2020-10-09T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-07T00:06:56.474Z\u0022,\u0022CreateTime\u0022:\u00222020-11-07T00:06:56.474Z\u0022}" + }, + { + "timestamp": "2020-10-04T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-10-30T08:07:48.425Z\u0022,\u0022CreateTime\u0022:\u00222020-10-30T08:07:48.425Z\u0022}" + }, + { + "timestamp": "2020-10-06T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-04T00:10:41.636Z\u0022,\u0022CreateTime\u0022:\u00222020-11-04T00:10:41.636Z\u0022}" + }, + { + "timestamp": "2020-10-08T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022,\u0022CreateTime\u0022:\u00222020-11-03T00:10:21.310Z\u0022}" + }, + { + "timestamp": "2020-10-10T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-08T00:06:41.982Z\u0022,\u0022CreateTime\u0022:\u00222020-11-08T00:06:41.982Z\u0022}" + }, + { + "timestamp": "2020-10-14T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-12T00:16:08.020Z\u0022,\u0022CreateTime\u0022:\u00222020-11-12T00:16:08.020Z\u0022}" + }, + { + "timestamp": "2020-10-18T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-14T00:15:34.311Z\u0022,\u0022CreateTime\u0022:\u00222020-11-14T00:15:34.311Z\u0022}" + }, + { + "timestamp": "2020-10-20T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022,\u0022CreateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022}" + }, + { + "timestamp": "2020-10-07T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-04T00:10:41.637Z\u0022,\u0022CreateTime\u0022:\u00222020-11-04T00:10:41.637Z\u0022}" + }, + { + "timestamp": "2020-10-11T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-09T00:06:41.596Z\u0022,\u0022CreateTime\u0022:\u00222020-11-09T00:06:41.596Z\u0022}" + }, + { + "timestamp": "2020-10-13T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-11T00:05:28.702Z\u0022,\u0022CreateTime\u0022:\u00222020-11-11T00:05:28.701Z\u0022}" + }, + { + "timestamp": "2020-10-01T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:03.914Z\u0022}" + }, + { + "timestamp": "2020-10-02T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022,\u0022CreateTime\u0022:\u00222021-01-19T09:14:23.915Z\u0022}" + }, + { + "timestamp": "2020-10-03T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-10-31T00:05:18.360Z\u0022,\u0022CreateTime\u0022:\u00222020-10-31T00:05:18.360Z\u0022}" + }, + { + "timestamp": "2020-10-21T00:00:00Z", + "status": "Succeeded", + "message": "{\u0022UpdateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022,\u0022CreateTime\u0022:\u00222020-11-18T00:11:15.607Z\u0022}" + } + ], + "@nextLink": null + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1258019556" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(False).json similarity index 89% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(False).json index c4afa0c00df9..e7d53ba026eb 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(False).json @@ -8,9 +8,10 @@ "Content-Length": "159", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-85d2fb98d41753439a1117d99c2b6a1b-794d76f74c73584c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "ea3582360e3517b0b551fca89063b0aa", + "x-ms-client-request-id": "6f1df1ad7afdc47dcecbddd5b1c03695", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -29,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32df9c08-082e-4873-a083-a0cd32d2ec3b", + "apim-request-id": "9b0ce591-1bf0-42d2-a7a5-04bf32846180", "Content-Length": "1258", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:48 GMT", + "Date": "Tue, 19 Jan 2021 17:43:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "335", - "x-request-id": "32df9c08-082e-4873-a083-a0cd32d2ec3b" + "x-envoy-upstream-service-time": "391", + "x-request-id": "9b0ce591-1bf0-42d2-a7a5-04bf32846180" }, "ResponseBody": { "value": [ @@ -133,6 +134,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "284879907" + "RandomSeed": "1541271075" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDataAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(False)Async.json similarity index 89% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDataAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(False)Async.json index b4aea44953c2..5f0511f1a476 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDataAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "159", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-be4c70a23355794face0ea3655e7a4d2-d98720f70e5bd947-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "e4a13f22e2046dadd8a8e93fb988c175", + "x-ms-client-request-id": "1421926a622abd44639d3c61e90a1ad3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -29,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "454c5d81-b6a0-49ac-9f73-a95eda664cb6", + "apim-request-id": "46e1668c-19d9-4cb3-83ee-24eba09b4ee0", "Content-Length": "1258", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:50 GMT", + "Date": "Tue, 19 Jan 2021 17:43:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "423", - "x-request-id": "454c5d81-b6a0-49ac-9f73-a95eda664cb6" + "x-envoy-upstream-service-time": "390", + "x-request-id": "46e1668c-19d9-4cb3-83ee-24eba09b4ee0" }, "ResponseBody": { "value": [ @@ -133,6 +134,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "809509799" + "RandomSeed": "2126930406" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(True).json new file mode 100644 index 000000000000..e070c5483f59 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(True).json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/data/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "159", + "Content-Type": "application/json", + "traceparent": "00-422362a6b2bf984281f5fa9d6117ec4c-2b39a485153c9a4e-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c092c1abcb86dade10a3ef6b324a5508", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "series": [ + { + "city": "Delhi", + "category": "Handmade" + }, + { + "city": "Koltaka", + "category": "__SUM__" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2696d0d8-fdd1-4000-80cd-b2401bbc26eb", + "Content-Length": "1258", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "228", + "x-request-id": "2696d0d8-fdd1-4000-80cd-b2401bbc26eb" + }, + "ResponseBody": { + "value": [ + { + "id": { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "timestampList": [ + "2020-10-01T00:00:00Z", + "2020-10-02T00:00:00Z", + "2020-10-03T00:00:00Z", + "2020-10-04T00:00:00Z", + "2020-10-05T00:00:00Z", + "2020-10-06T00:00:00Z", + "2020-10-07T00:00:00Z", + "2020-10-08T00:00:00Z", + "2020-10-09T00:00:00Z", + "2020-10-10T00:00:00Z", + "2020-10-11T00:00:00Z", + "2020-10-12T00:00:00Z", + "2020-10-13T00:00:00Z", + "2020-10-14T00:00:00Z", + "2020-10-15T00:00:00Z", + "2020-10-16T00:00:00Z", + "2020-10-17T00:00:00Z", + "2020-10-18T00:00:00Z", + "2020-10-19T00:00:00Z", + "2020-10-20T00:00:00Z", + "2020-10-21T00:00:00Z", + "2020-10-22T00:00:00Z", + "2020-10-23T00:00:00Z", + "2020-10-24T00:00:00Z", + "2020-10-25T00:00:00Z", + "2020-10-26T00:00:00Z", + "2020-10-27T00:00:00Z", + "2020-10-28T00:00:00Z", + "2020-10-29T00:00:00Z", + "2020-10-30T00:00:00Z" + ], + "valueList": [ + 646400.8, + 591698.8, + 393672.8, + 461016.4, + 671330.0, + 663083.8, + 652174.0, + 652647.2, + 602663.2, + 405481.2, + 460825.6, + 648188.4, + 639784.2, + 629455.0, + 622654.2, + 575832.6, + 376714.8, + 423373.6, + 595968.4, + 591052.6, + 585573.4, + 591703.2, + 535243.2, + 385288.2, + 391302.2, + 527925.6, + 543222.8, + 545699.2, + 513455.6, + 503106.4 + ] + }, + { + "id": { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Koltaka", + "category": "__SUM__" + } + }, + "timestampList": [], + "valueList": [] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1510840412" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(True)Async.json new file mode 100644 index 000000000000..e4f7da243434 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesData(True)Async.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/data/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "159", + "Content-Type": "application/json", + "traceparent": "00-aa17a5e342a4b548b971315263c92df3-82074abfb81f7446-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a65057f0d9da44e71e533e682e30c49d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "startTime": "2020-10-01T00:00:00Z", + "endTime": "2020-10-31T00:00:00Z", + "series": [ + { + "city": "Delhi", + "category": "Handmade" + }, + { + "city": "Koltaka", + "category": "__SUM__" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ce9732d-c3b7-4f53-913b-3ff8fa6f60aa", + "Content-Length": "1258", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "222", + "x-request-id": "6ce9732d-c3b7-4f53-913b-3ff8fa6f60aa" + }, + "ResponseBody": { + "value": [ + { + "id": { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Delhi", + "category": "Handmade" + } + }, + "timestampList": [ + "2020-10-01T00:00:00Z", + "2020-10-02T00:00:00Z", + "2020-10-03T00:00:00Z", + "2020-10-04T00:00:00Z", + "2020-10-05T00:00:00Z", + "2020-10-06T00:00:00Z", + "2020-10-07T00:00:00Z", + "2020-10-08T00:00:00Z", + "2020-10-09T00:00:00Z", + "2020-10-10T00:00:00Z", + "2020-10-11T00:00:00Z", + "2020-10-12T00:00:00Z", + "2020-10-13T00:00:00Z", + "2020-10-14T00:00:00Z", + "2020-10-15T00:00:00Z", + "2020-10-16T00:00:00Z", + "2020-10-17T00:00:00Z", + "2020-10-18T00:00:00Z", + "2020-10-19T00:00:00Z", + "2020-10-20T00:00:00Z", + "2020-10-21T00:00:00Z", + "2020-10-22T00:00:00Z", + "2020-10-23T00:00:00Z", + "2020-10-24T00:00:00Z", + "2020-10-25T00:00:00Z", + "2020-10-26T00:00:00Z", + "2020-10-27T00:00:00Z", + "2020-10-28T00:00:00Z", + "2020-10-29T00:00:00Z", + "2020-10-30T00:00:00Z" + ], + "valueList": [ + 646400.8, + 591698.8, + 393672.8, + 461016.4, + 671330.0, + 663083.8, + 652174.0, + 652647.2, + 602663.2, + 405481.2, + 460825.6, + 648188.4, + 639784.2, + 629455.0, + 622654.2, + 575832.6, + 376714.8, + 423373.6, + 595968.4, + 591052.6, + 585573.4, + 591703.2, + 535243.2, + 385288.2, + 391302.2, + 527925.6, + 543222.8, + 545699.2, + 513455.6, + 503106.4 + ] + }, + { + "id": { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Koltaka", + "category": "__SUM__" + } + }, + "timestampList": [], + "valueList": [] + } + ] + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "330650537" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(False).json similarity index 92% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(False).json index 9d13b1d2cc6a..78eb8fad15fe 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(False).json @@ -8,9 +8,10 @@ "Content-Length": "38", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2747575af8a7f249ae9257c30dbd4738-1be86da30baddd4c-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "a822d6b41e443470bf5ce3e469114367", + "x-ms-client-request-id": "134131fe2243cf5ae4f7d6014859473f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -18,14 +19,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07c383f7-d28e-45a6-8846-cce1e755b775", + "apim-request-id": "d9014774-7743-4185-8f1c-33608a9329bd", "Content-Length": "2487", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:48 GMT", + "Date": "Tue, 19 Jan 2021 17:43:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "116", - "x-request-id": "07c383f7-d28e-45a6-8846-cce1e755b775" + "x-envoy-upstream-service-time": "109", + "x-request-id": "d9014774-7743-4185-8f1c-33608a9329bd" }, "ResponseBody": { "value": [ @@ -179,6 +180,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "928829294" + "RandomSeed": "995704610" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetupAsync.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(False)Async.json similarity index 92% rename from sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetupAsync.json rename to sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(False)Async.json index 52101e649444..0b292de8efdb 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetupAsync.json +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(False)Async.json @@ -8,9 +8,10 @@ "Content-Length": "38", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20201214.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7055622aadfc32469873dd0d1b438913-df89db9d480afc49-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-api-key": "Sanitized", - "x-ms-client-request-id": "2b6f9a41aff686ac9902e4d704dc0f65", + "x-ms-client-request-id": "4ee107f599d39353ec0aabc8f2f8b5c4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -18,14 +19,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "905c156d-7ad4-4227-96ef-cd3565cc1a62", + "apim-request-id": "c24294e9-297b-426b-b238-529c3e17e17a", "Content-Length": "2487", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 15 Dec 2020 01:35:50 GMT", + "Date": "Tue, 19 Jan 2021 17:43:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "138", - "x-request-id": "905c156d-7ad4-4227-96ef-cd3565cc1a62" + "x-envoy-upstream-service-time": "119", + "x-request-id": "c24294e9-297b-426b-b238-529c3e17e17a" }, "ResponseBody": { "value": [ @@ -179,6 +180,6 @@ "METRICSADVISOR_ENDPOINT_SUFFIX": null, "METRICSADVISOR_PRIMARY_API_KEY": "Sanitized", "METRICSADVISOR_SUBSCRIPTION_KEY": "Sanitized", - "RandomSeed": "1266187432" + "RandomSeed": "354158380" } } \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(True).json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(True).json new file mode 100644 index 000000000000..fdff83f1488f --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(True).json @@ -0,0 +1,182 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/series/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "38", + "Content-Type": "application/json", + "traceparent": "00-de56e2c5952eac469c9f5d2a86394bbf-1db4aaeb5d7b2b46-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c866a313ffec63fc7fd0d6d4a7a91802", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "activeSince": "2020-10-01T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4febc10b-4423-4f86-a131-50a590bb9954", + "Content-Length": "2487", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55", + "x-request-id": "4febc10b-4423-4f86-a131-50a590bb9954" + }, + "ResponseBody": { + "value": [ + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Belo Horizonte", + "category": "Electronics (Consumer)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kinshasa", + "category": "Beauty" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Lahore", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Hong Kong", + "category": "Electronics (Accessories)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Sao Paulo", + "category": "Beauty" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Delhi", + "category": "Books" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Istanbul", + "category": "Camera \u0026 Photo" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kinshasa", + "category": "Musical Instruments" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Guangzhou", + "category": "Jewelry" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Bengaluru", + "category": "Jewelry" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kinshasa", + "category": "Health \u0026 Personal Care" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Dallas", + "category": "Office Products" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Beijing", + "category": "Electronics (Consumer)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Chicago", + "category": "Electronics (Accessories)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Buenos Aires", + "category": "Outdoors" + } + } + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/series/query?$top=20\u0026$skip=20" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "501505381" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(True)Async.json b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(True)Async.json new file mode 100644 index 000000000000..0b1cb7d9d3ee --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/SessionRecords/TimeSeriesLiveTests/GetMetricSeriesDefinitionsWithMinimumSetup(True)Async.json @@ -0,0 +1,182 @@ +{ + "Entries": [ + { + "RequestUri": "https://js-metrics-advisor.cognitiveservices.azure.com/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/series/query", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "38", + "Content-Type": "application/json", + "traceparent": "00-109272d38e5ea842a3ebaae433f23cbd-170b21d69a062744-00", + "User-Agent": "azsdk-net-AI.MetricsAdvisor/1.0.0-alpha.20210119.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f49e558f16e4f5d43b0db2c9060fd458", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "activeSince": "2020-10-01T00:00:00Z" + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a773c5e6-3c64-48ee-94b4-709772213c54", + "Content-Length": "2487", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 19 Jan 2021 17:43:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45", + "x-request-id": "a773c5e6-3c64-48ee-94b4-709772213c54" + }, + "ResponseBody": { + "value": [ + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Miami", + "category": "Health \u0026 Personal Care" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Rio de Janeiro", + "category": "Historical \u0026 Advertising Collectibles" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Belo Horizonte", + "category": "Electronics (Consumer)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kinshasa", + "category": "Beauty" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Lahore", + "category": "Shoes Handbags \u0026 Sunglasses" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Hong Kong", + "category": "Electronics (Accessories)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Sao Paulo", + "category": "Beauty" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Delhi", + "category": "Books" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Istanbul", + "category": "Camera \u0026 Photo" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kinshasa", + "category": "Musical Instruments" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Guangzhou", + "category": "Jewelry" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Bengaluru", + "category": "Jewelry" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kinshasa", + "category": "Health \u0026 Personal Care" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Dallas", + "category": "Office Products" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Beijing", + "category": "Electronics (Consumer)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Hyderabad", + "category": "Handmade" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Kolkata", + "category": "Electronics (Consumer)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Chicago", + "category": "Electronics (Accessories)" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Madrid", + "category": "Industrial \u0026 Scientific" + } + }, + { + "metricId": "27e3015f-04fd-44ba-a20b-bc529a0aebae", + "dimension": { + "city": "Buenos Aires", + "category": "Outdoors" + } + } + ], + "@nextLink": "https://js-metrics-advisor.cognitiveservices.azure.com:443/metricsadvisor/v1.0/metrics/27e3015f-04fd-44ba-a20b-bc529a0aebae/series/query?$top=20\u0026$skip=20" + } + } + ], + "Variables": { + "METRICSADVISOR_ACCOUNT_NAME": "js-metrics-advisor", + "METRICSADVISOR_ENDPOINT_SUFFIX": null, + "RandomSeed": "1393924074" + } +} \ No newline at end of file diff --git a/sdk/metricsadvisor/test-resources.json b/sdk/metricsadvisor/test-resources.json new file mode 100644 index 000000000000..62f3cf2ff5d5 --- /dev/null +++ b/sdk/metricsadvisor/test-resources.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "testApplicationOid": { + "type": "string", + "metadata": { + "description": "The principal to assign the role to. This is application object id." + } + } + }, + "variables": { + "roleDefinitionId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/cb43c632-a144-4ec5-977c-e80c4affc34a')]" + }, + "resources": [ + { + "type": "Microsoft.Authorization/roleAssignments", + "apiVersion": "2018-09-01-preview", + "name": "[guid(resourceGroup().id)]", + "properties": { + "roleDefinitionId": "[variables('roleDefinitionId')]", + "principalId": "[parameters('testApplicationOid')]" + } + } + ] +}